diff --git a/Header.php b/Header.php index 258dd84..63ad2ce 100644 --- a/Header.php +++ b/Header.php @@ -24,7 +24,7 @@ if (mysqli_connect_errno()) { diff --git a/Submissions.php b/Submissions.php index cabcaf0..3df7614 100644 --- a/Submissions.php +++ b/Submissions.php @@ -262,8 +262,8 @@ where Lab_Report_ID=$id and lab_report_submissions.Status='Marked' Order by lab if ($att4 != "") { $full_link = $full_link . "| $att4"; } - // you will notic why i used span here to wrap the submitted by name - // because if we wrap with span , the css class text-selectable can be used only the submittedBy name + // you will notice why i used span here to wrap the $submitted_by variable + // because if we wrap with span , the css class text-selectable can be used only by the submittedBy variable // if you want to use text-selectable class on whole div, just call the css class diff --git a/css/main.css b/css/main.css index 9d9a636..5182a91 100644 --- a/css/main.css +++ b/css/main.css @@ -1,10 +1,11 @@ -/* this css class is used to enable copying in texts with the mouse. */ +/* this css class is used to enable copying in text with the mouse. */ .text-selectable { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; + cursor:auto } \ No newline at end of file