mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-04 16:58:05 +02:00
feat: create duplicate template functionality feat: add support of csv and xlsx for bulk contacts import feat: add info text for forms and dashboard button feat: implement functionality to delete a PDF page while editing the document feat: show completed documents in which signers included but not owner in completed reports feat: add delete folder button in opensign drive feat: introduce Bcc email support for sending completed documents feat: allow merging multiple pdf while drafting document and template feat: add 'My Initials' tab for auto-signing in request-sign flow feat: add support for redirect URL to navigate after document completion feat: introduce privacy policy and digital signature terms before signing documents. feat: add feature to allow adding new pages to existing document feat: add save signature, initials, stamp functionality in sign pad for logged in user feat: add preferences menu feat: add save custom email template, notifyonsignature, set timezone, allow signature types in preferences feat: secure local url feat: implement Italian language translation feat: implement German language translation feat: update menu name from report to documents and shift contactbook in main menu feat: provide edit contact functionality fix: unable to delete folder when all its documents are deleted fix: fields.push is not function fix: document loading issue in opensign drive fix: adjust the guest signature flow to display the document in full screen, eliminating any blank space which is displayed below the place holder in mobile view fix: resolve issue of instance of pdfdict or pdfstream but got undefined build(deps): update dependencies refactor: change note text from add contact form
98 lines
1.4 KiB
CSS
98 lines
1.4 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
background-color: white;
|
|
}
|
|
|
|
/* Custom CSS to hide scrollbar */
|
|
.hide-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.hide-scrollbar {
|
|
-ms-overflow-style: none;
|
|
/* IE and Edge */
|
|
scrollbar-width: none;
|
|
/* Firefox */
|
|
}
|
|
|
|
@media screen and (max-width: 766px) {
|
|
.reactour__close {
|
|
width: 17px !important;
|
|
padding-left: 3px !important;
|
|
}
|
|
}
|
|
|
|
/* below css class replace bootstrap background color with daisy */
|
|
.op-bg-primary {
|
|
@apply bg-primary;
|
|
}
|
|
|
|
.op-bg-secondary {
|
|
@apply bg-secondary;
|
|
}
|
|
|
|
.op-bg-info {
|
|
@apply bg-info;
|
|
}
|
|
|
|
.op-bg-success {
|
|
@apply bg-success;
|
|
}
|
|
|
|
.op-bg-warning {
|
|
@apply bg-warning;
|
|
}
|
|
|
|
/* below css class replace bootstrap text color with daisy */
|
|
.op-text-primary {
|
|
@apply text-primary;
|
|
}
|
|
|
|
.op-text-secondary {
|
|
@apply text-secondary;
|
|
}
|
|
|
|
.op-text-info {
|
|
@apply text-info;
|
|
}
|
|
|
|
.op-text-accent {
|
|
@apply text-accent;
|
|
}
|
|
|
|
.op-text-success {
|
|
@apply text-success;
|
|
}
|
|
|
|
.op-text-warning {
|
|
@apply text-warning;
|
|
}
|
|
|
|
.op-border-primary {
|
|
@apply border-primary;
|
|
}
|
|
|
|
/* CSS for scrollbar customization */
|
|
* {
|
|
scrollbar-width: thin;
|
|
/* For Firefox */
|
|
scrollbar-color: gray;
|
|
/* For Firefox */
|
|
}
|
|
|
|
/* For webkit-based browsers like Chrome, Safari */
|
|
*::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: gray;
|
|
border-radius: 10px;
|
|
} |