diff --git a/src/pageElements/Cards.js b/src/pageElements/Cards.js
index 8cba675..8528689 100644
--- a/src/pageElements/Cards.js
+++ b/src/pageElements/Cards.js
@@ -2,6 +2,8 @@ import React from "react";
import Button from "../pageElements/Button.js";
import { FileEarmarkText } from "react-bootstrap-icons";
import TextInput from "../pageElements/TextInput";
+import Tooltip from "../pageElements/Tooltip";
+import { InfoCircle } from "react-bootstrap-icons";
export const InfoCard = (props) => {
const { data, onEdit, onCancel, onSave, onChangeInput, isEditing, isBusy } =
@@ -277,6 +279,8 @@ export const DocCard = (props) => {
responseGenerations,
confirmDelete,
} = props;
+ const tooltipText =
+ "The documet is taking longer htan usual to parse. There may be a number of reasons: unusually high traffic, a bad or corrupted conversion file, or others. Do not worry! Check back in 15 minutes. In most cases, it will be resolved. If it is not, click the 'report buton to notify support.";
const disabled = docType ? false : true;
return (
@@ -284,7 +288,9 @@ export const DocCard = (props) => {
-
{title}
+
+ {title} {disabled ? : <>>}
+
{dateServed ? (
Served: {dateServed}
) : (
diff --git a/src/pageElements/Tooltip.js b/src/pageElements/Tooltip.js
new file mode 100644
index 0000000..c1ae249
--- /dev/null
+++ b/src/pageElements/Tooltip.js
@@ -0,0 +1,18 @@
+import "../styles/tooltip.scss";
+import { InfoCircle } from "react-bootstrap-icons";
+
+function Tooltip(props) {
+ const { text } = props;
+ return (
+
+
+ {text}
+
+ );
+}
+
+export default Tooltip;
diff --git a/src/styles/tooltip.scss b/src/styles/tooltip.scss
new file mode 100644
index 0000000..cc785a7
--- /dev/null
+++ b/src/styles/tooltip.scss
@@ -0,0 +1,24 @@
+.tooltip-container {
+ display: inline;
+ justify-content: center;
+ align-items: center;
+ margin: auto;
+ height: 30px;
+ width: 30px;
+ margin: 0px 6px;
+ padding: 0px 2px;
+ background-color: yellow;
+}
+
+.tooltip-text {
+ font-size: 12px;
+ visibility: hidden;
+ opacity: 0;
+}
+
+.tooltip-container:hover .tooltip-text:hover {
+ font-size: 12px;
+ visibility: visible;
+ opacity: 1;
+ z-index: 9;
+}