diff options
author | kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com> | 2022-11-16 11:42:50 +0530 |
---|---|---|
committer | kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com> | 2022-11-22 15:56:09 +0530 |
commit | e4de88386a01cb343b9b737e63c899a77f6490ba (patch) | |
tree | ef8c42ff453a67904cee957356cd86c4af73f08e | |
parent | 23f968400cdabc0e4c2ba5bc268d9b32ecca0036 (diff) | |
download | nextcloud-server-e4de88386a01cb343b9b737e63c899a77f6490ba.tar.gz nextcloud-server-e4de88386a01cb343b9b737e63c899a77f6490ba.zip |
Deactivates the possiblility to checkmark or click on the encrypted folder
Signed-off-by: kavita.sonawane@t-systems.com <kavita.sonawane@t-systems.com>
-rw-r--r-- | apps/files/css/files.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 1950d740bd7..612ac975aeb 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -91,6 +91,11 @@ color: var(--color-text-maxcontrast); } } + + // Deactivates the possiblility to checkmark or click on the encrypted folder + tr[data-e2eencrypted="true"] { + pointer-events: none; + } } } |