+
+
diff --git a/apps/OpenSign/src/components/pdf/SignPad.js b/apps/OpenSign/src/components/pdf/SignPad.js
index 28db8e815..5e9ca1039 100644
--- a/apps/OpenSign/src/components/pdf/SignPad.js
+++ b/apps/OpenSign/src/components/pdf/SignPad.js
@@ -1,6 +1,5 @@
import React, { useRef, useState, useEffect } from "react";
import SignatureCanvas from "react-signature-canvas";
-import { themeColor } from "../../constant/const";
function SignPad({
isSignPad,
@@ -291,7 +290,7 @@ function SignPad({
{isStamp ? (
-
+
{widgetType === "image"
? "Upload image"
: "Upload stamp image"}
@@ -306,22 +305,14 @@ function SignPad({
setIsTab("draw");
setImage();
}}
- style={{
- color: isTab === "draw" ? themeColor : "#515252",
- marginLeft: "2px"
- }}
- className="signTab"
+ className={`${
+ isTab === "draw"
+ ? "op-link-primary"
+ : "no-underline"
+ } op-link underline-offset-8 ml-[2px]`}
>
Draw
-
-
{!isInitial && defaultSign ? (
@@ -383,23 +359,14 @@ function SignPad({
setSignatureType("");
setImage();
}}
- style={{
- color:
- isTab === "mysignature"
- ? themeColor
- : "#515252"
- }}
- className="signTab"
+ className={`${
+ isTab === "mysignature"
+ ? "op-link-primary"
+ : "no-underline"
+ } op-link underline-offset-8 ml-[2px]`}
>
My Signature
-
) : (
isInitial &&
@@ -413,23 +380,14 @@ function SignPad({
setSignatureType("");
setImage();
}}
- style={{
- color:
- isTab === "mysignature"
- ? themeColor
- : "#515252"
- }}
- className="signTab"
+ className={`${
+ isTab === "mysignature"
+ ? "op-link-primary"
+ : "no-underline"
+ } op-link underline-offset-8 ml-[2px]`}
>
My Initials
-
)
)}
diff --git a/apps/OpenSign/src/components/shared/fields/SelectSigners.js b/apps/OpenSign/src/components/shared/fields/SelectSigners.js
index 1ea271c4b..52525870a 100644
--- a/apps/OpenSign/src/components/shared/fields/SelectSigners.js
+++ b/apps/OpenSign/src/components/shared/fields/SelectSigners.js
@@ -101,7 +101,7 @@ const SelectSigners = (props) => {
Please select signer
diff --git a/apps/OpenSign/src/pages/PlaceHolderSign.js b/apps/OpenSign/src/pages/PlaceHolderSign.js
index 14f0264fd..9ccbebd33 100644
--- a/apps/OpenSign/src/pages/PlaceHolderSign.js
+++ b/apps/OpenSign/src/pages/PlaceHolderSign.js
@@ -49,7 +49,7 @@ import { EmailBody } from "../components/pdf/EmailBody";
import Upgrade from "../primitives/Upgrade";
import Alert from "../primitives/Alert";
import Loader from "../primitives/Loader";
-
+import mail_sent_gif from "../assets/gif/mail_sent.gif";
function PlaceHolderSign() {
const editorRef = useRef();
const navigate = useNavigate();
@@ -1789,19 +1789,27 @@ function PlaceHolderSign() {
>
{mailStatus === "success" ? (
-
You have successfully sent mails to all recipients!
+
+

+
You have successfully sent mails to all recipients!
+ {isCurrUser && (
+
Do you want to sign documents right now ?
+ )}
+
) : (
Please setup mail adapter to send mail!
)}
- {isCurrUser && (
-
Do you want to sign documents right now ?
+ {!mailStatus && (
+
)}
-
{isCurrUser && (
@@ -1812,7 +1820,7 @@ function PlaceHolderSign() {
setSignerPos([]);
}}
type="button"
- className="finishBtn cancelBtn"
+ className="op-btn op-btn-ghost"
>
{isCurrUser ? "No" : "Close"}
@@ -1833,7 +1841,7 @@ function PlaceHolderSign() {
setIsShowEmail(false);
}}
type="button"
- className="finishBtn cancelBtn"
+ className="op-btn op-btn-primary"
>
Ok
@@ -1992,9 +2000,7 @@ function PlaceHolderSign() {
aria-disabled
>
-
{
/>
-
+
diff --git a/apps/OpenSign/tailwind.config.js b/apps/OpenSign/tailwind.config.js
index 6270181a0..f3a4f7697 100644
--- a/apps/OpenSign/tailwind.config.js
+++ b/apps/OpenSign/tailwind.config.js
@@ -61,7 +61,10 @@ module.exports = {
warning: "#ffbe00",
"warning-content": "#ccd9e8",
error: "#ff0000",
- "error-content": "#f3f4f6"
+ "error-content": "#f3f4f6",
+ "--rounded-btn": "1.9rem",
+ "--tab-border": "2px",
+ "--tab-radius": "0.7rem"
}
}
],