Minor renaming of buttons and sections
This commit is contained in:
@@ -175,10 +175,15 @@ const App: React.FC<AppProps> = () => {
|
|||||||
|
|
||||||
<div className={styles.section}>
|
<div className={styles.section}>
|
||||||
<Subtitle1 block className={styles.sectionTitle}>
|
<Subtitle1 block className={styles.sectionTitle}>
|
||||||
Markings & Watermarks
|
Confidential Marking
|
||||||
</Subtitle1>
|
</Subtitle1>
|
||||||
<ConfidentialButtons />
|
<ConfidentialButtons />
|
||||||
<div style={{ marginTop: "8px" }}></div>
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.section}>
|
||||||
|
<Subtitle1 block className={styles.sectionTitle}>
|
||||||
|
Draft Watermark
|
||||||
|
</Subtitle1>
|
||||||
<DraftButtons />
|
<DraftButtons />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ const useStyles = makeStyles({
|
|||||||
width: "100%",
|
width: "100%",
|
||||||
minWidth: 0,
|
minWidth: 0,
|
||||||
padding: "8px 4px",
|
padding: "8px 4px",
|
||||||
fontSize: "10px",
|
|
||||||
"& span": {
|
"& span": {
|
||||||
justifyContent: "center"
|
justifyContent: "center"
|
||||||
}
|
}
|
||||||
@@ -253,7 +252,7 @@ export const ConfidentialButtons: React.FC = () => {
|
|||||||
disabled={isProcessing}
|
disabled={isProcessing}
|
||||||
title="Add Confidential"
|
title="Add Confidential"
|
||||||
>
|
>
|
||||||
Add Confidential
|
Add
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
appearance="primary"
|
appearance="primary"
|
||||||
@@ -263,7 +262,7 @@ export const ConfidentialButtons: React.FC = () => {
|
|||||||
disabled={isProcessing}
|
disabled={isProcessing}
|
||||||
title="Remove Confidential"
|
title="Remove Confidential"
|
||||||
>
|
>
|
||||||
Remove Confidential
|
Remove
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -239,7 +239,7 @@ export const DraftButtons: React.FC = () => {
|
|||||||
disabled={isProcessing}
|
disabled={isProcessing}
|
||||||
title="Add Draft"
|
title="Add Draft"
|
||||||
>
|
>
|
||||||
Add Draft
|
Add
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
appearance="primary"
|
appearance="primary"
|
||||||
@@ -249,7 +249,7 @@ export const DraftButtons: React.FC = () => {
|
|||||||
disabled={isProcessing}
|
disabled={isProcessing}
|
||||||
title="Remove Draft"
|
title="Remove Draft"
|
||||||
>
|
>
|
||||||
Remove Draft
|
Remove
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user