From: Agnibho Mondal Patient Information
-
-
-
Drug | Dose | Route | Frequency | Duration | Note | |
---|---|---|---|---|---|---|
".$drug["drug"]." | ".$drug["dose"]." | ".$drug["route"]." | ".$drug["frequency"]." | ".$drug["duration"]." | ".$drug["addl"]." |
Your account does not have access to this page
- - diff --git a/forms/admission.schema.json b/forms/admission.schema.json deleted file mode 100644 index 8b32425..0000000 --- a/forms/admission.schema.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "admission", - "description": "Admission Form", - "type": "object", - - "properties": { - "pid": { - "description": "Admission ID", - "type": "string" - }, - "srfid": { - "description": "SRF ID", - "type": "string" - }, - "name": { - "description": "Name", - "type": "string" - }, - "age": { - "description": "Age", - "type": "integer" - }, - "sex": { - "description": "Sex", - "type": "string", - "enum": ["male", "female", "others"] - }, - "bw": { - "description": "Weight", - "type": "integer" - }, - "date": { - "description": "Date of Admission", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time of Admission", - "type": "string", - "format": "time" - }, - "vp": { - "description": "Visiting Physician", - "type": "string" - }, - "ward": { - "description": "Ward", - "type": "string" - }, - "bed": { - "description": "Bed Number", - "type": "string" - } - }, - "required": ["pid", "name", "age", "sex", "date"] -} diff --git a/forms/death.schema.json b/forms/death.schema.json deleted file mode 100644 index dbdb9bb..0000000 --- a/forms/death.schema.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "death", - "description": "Death Note", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "diagnosis": { - "description": "Diagnosis", - "type": "string" - }, - "cause1": { - "description": "Cause of Death 1", - "type": "string" - }, - "cause2": { - "description": "Cause of Death 2", - "type": "string" - }, - "cause3": { - "description": "Cause of Death 3", - "type": "string" - } - }, - "required": ["date","time","diagnosis"] -} diff --git a/forms/drugs.schema.json b/forms/drugs.schema.json deleted file mode 100644 index f3be494..0000000 --- a/forms/drugs.schema.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "drugs", - "description": "Treatment", - "type": "object", - - "properties": { - "drug": { - "description": "Name", - "type": "string" - }, - "dose": { - "description": "Dose", - "type": "string" - }, - "route": { - "description": "Route", - "type": "string" - }, - "frequency": { - "description": "Frequency", - "type": "string" - }, - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "duration": { - "description": "Duration", - "type": "integer" - } - }, - "required": ["date","name"] -} diff --git a/forms/history.schema.json b/forms/history.schema.json deleted file mode 100644 index 5985145..0000000 --- a/forms/history.schema.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "history", - "description": "History", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "cc": { - "description": "Chief complaint", - "type": "string", - "format": "textarea" - }, - "history": { - "description": "History", - "type": "string", - "format": "textarea" - }, - "comorb": { - "description": "Comorbidities", - "type": "string" - }, - "oe": { - "description": "General Examination", - "type": "string", - "format": "textarea" - }, - "bp": { - "description": "Blood Pressure", - "type": "string" - }, - "pr": { - "description": "Pulse", - "type": "integer" - }, - "rr": { - "description": "Respiratory Rate", - "type": "integer" - }, - "spo2": { - "description": "SpO2", - "type": "integer" - }, - "chest": { - "description": "Chest Examination", - "type": "string" - }, - "abdomen": { - "description": "Abdominal Examination", - "type": "string" - } - }, - "required": ["date","time", "cc"] -} diff --git a/forms/nursing.schema.json b/forms/nursing.schema.json deleted file mode 100644 index 83ea585..0000000 --- a/forms/nursing.schema.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "nursing", - "description": "Nursing Notes", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "status": { - "description": "Status", - "type": "string" - }, - "intake": { - "description": "Intake", - "type": "integer" - }, - "output": { - "description": "Output", - "type": "integer" - }, - "bw": { - "description": "Body Weight", - "type": "string" - }, - "bp": { - "description": "Blood Pressure", - "type": "string" - }, - "pr": { - "description": "Pulse", - "type": "integer" - }, - "rr": { - "description": "Respiratory Rate", - "type": "integer" - }, - "spo2": { - "description": "SpO2", - "type": "integer" - } - }, - "required": ["date","time"] -} diff --git a/forms/physician.schema.json b/forms/physician.schema.json deleted file mode 100644 index c4c1056..0000000 --- a/forms/physician.schema.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "physician", - "description": "Physician Notes", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "status": { - "description": "Status", - "type": "string" - }, - "bp": { - "description": "Blood Pressure", - "type": "string" - }, - "pr": { - "description": "Pulse", - "type": "integer" - }, - "rr": { - "description": "Respiratory Rate", - "type": "integer" - }, - "spo2": { - "description": "SpO2", - "type": "integer" - }, - "chest": { - "description": "Chest Findings", - "type": "string" - } - }, - "required": ["date","time"] -} diff --git a/forms/report-abg.schema.json b/forms/report-abg.schema.json deleted file mode 100644 index 1c01577..0000000 --- a/forms/report-abg.schema.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "abg", - "description": "ABG", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "ph": { - "description": "pH", - "type": "number" - }, - "pao2": { - "description": "PaO2", - "type": "number" - }, - "paco2": { - "description": "PaCO2", - "type": "number" - }, - "hco3": { - "description": "HCO3", - "type": "number" - }, - "na": { - "description": "Na", - "type": "number" - }, - "k": { - "description": "K", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-blood-cs.schema.json b/forms/report-blood-cs.schema.json deleted file mode 100644 index ed9fe1f..0000000 --- a/forms/report-blood-cs.schema.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "blood_cs", - "description": "Blood CS", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "organism": { - "description": "Organism", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-ch.schema.json b/forms/report-ch.schema.json deleted file mode 100644 index 7fcec71..0000000 --- a/forms/report-ch.schema.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "ch", - "description": "Complete Hemogram", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "hb": { - "description": "Hemoglobin", - "type": "number" - }, - "mcv": { - "description": "MCV", - "type": "number" - }, - "mch": { - "description": "MCH", - "type": "number" - }, - "mchc": { - "description": "MCHC", - "type": "number" - }, - "rbc": { - "description": "RBC", - "type": "number" - }, - "wbc": { - "description": "WBC", - "type": "number" - }, - "n": { - "description": "Neutrophil", - "type": "number" - }, - "l": { - "description": "Lymphocyte", - "type": "number" - }, - "e": { - "description": "Eosinophil", - "type": "number" - }, - "m": { - "description": "Monocyte", - "type": "number" - }, - "b": { - "description": "Basophil", - "type": "number" - }, - "plt": { - "description": "Platelet", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-crp.schema.json b/forms/report-crp.schema.json deleted file mode 100644 index c996b50..0000000 --- a/forms/report-crp.schema.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "crp", - "description": "CRP", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "ldh": { - "description": "CRP", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-ddimer.schema.json b/forms/report-ddimer.schema.json deleted file mode 100644 index 8e26f79..0000000 --- a/forms/report-ddimer.schema.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "d_dimer", - "description": "D-Dimer", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "ddimer": { - "description": "D-Dimer", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-fluid.schema.json b/forms/report-fluid.schema.json deleted file mode 100644 index 8b3f02d..0000000 --- a/forms/report-fluid.schema.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "fluid_study", - "description": "Fluid Study", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "fluid": { - "description": "Fluid", - "type": "string", - "enum": ["pleural fluid", "ascitic fluid", "csf", "other"] - }, - "cellCount": { - "description": "Cell Count", - "type": "integer" - }, - "cellType": { - "description": "Cell Type", - "type": "string" - }, - "protein": { - "description": "Protein", - "type": "integer" - }, - "sugar": { - "description": "Sugar", - "type": "integer" - }, - "ldh": { - "description": "LDH", - "type": "integer" - }, - "gram": { - "description": "Gram Stain", - "type": "string" - }, - "afb": { - "description": "AFB Stain", - "type": "string" - }, - "fungal": { - "description": "Fungal Stain", - "type": "string" - }, - "cs": { - "description": "Culture/Sensitivity", - "type": "string" - }, - "cbnaat": { - "description": "CBNAAT", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-glycemic.schema.json b/forms/report-glycemic.schema.json deleted file mode 100644 index 6109d78..0000000 --- a/forms/report-glycemic.schema.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "glycemic", - "description": "Glycemic Status", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "fbs": { - "description": "FBS", - "type": "number" - }, - "ppbs": { - "description": "PPBS", - "type": "number" - }, - "hba1c": { - "description": "HbA1C", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-ldh.schema.json b/forms/report-ldh.schema.json deleted file mode 100644 index e22f810..0000000 --- a/forms/report-ldh.schema.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "ldh", - "description": "LDH", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "ldh": { - "description": "LDH", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-lft.schema.json b/forms/report-lft.schema.json deleted file mode 100644 index 6401cad..0000000 --- a/forms/report-lft.schema.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "lft", - "description": "Liver Function Test", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "tbr": { - "description": "Total Bilirubin", - "type": "number" - }, - "cbr": { - "description": "Conjugated Bilirubin", - "type": "number" - }, - "alb": { - "description": "Albumin", - "type": "number" - }, - "glob": { - "description": "Globulin", - "type": "number" - }, - "sgot": { - "description": "SGOT", - "type": "number" - }, - "sgpt": { - "description": "SGPT", - "type": "number" - }, - "alp": { - "description": "Alkaline Phosphatase", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-lipid.schema.json b/forms/report-lipid.schema.json deleted file mode 100644 index d9052c4..0000000 --- a/forms/report-lipid.schema.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "lipid", - "description": "Lipid Profile", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "ldl": { - "description": "LDL", - "type": "number" - }, - "hdl": { - "description": "HDL", - "type": "number" - }, - "tgl": { - "description": "Triglyceride", - "type": "number" - }, - "chol": { - "description": "Cholesterol", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-other.schema.json b/forms/report-other.schema.json deleted file mode 100644 index c790698..0000000 --- a/forms/report-other.schema.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "other", - "description": "Other Report", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "report": { - "description": "Report", - "type": "string", - "format": "textarea" - } - }, - "required": ["date"] -} diff --git a/forms/report-rft.schema.json b/forms/report-rft.schema.json deleted file mode 100644 index 874f8f2..0000000 --- a/forms/report-rft.schema.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "rft", - "description": "Renal Function Test", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - - "urea": { - "description": "Urea", - "type": "number" - }, - "creat": { - "description": "Creatinine", - "type": "number" - }, - "na": { - "description": "Sodium", - "type": "number" - }, - "k": { - "description": "Potassium", - "type": "number" - } - }, - "required": ["date"] -} diff --git a/forms/report-sputum-cs.schema.json b/forms/report-sputum-cs.schema.json deleted file mode 100644 index 65d115f..0000000 --- a/forms/report-sputum-cs.schema.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "sputum_cs", - "description": "Sputum CS", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "organism": { - "description": "Organism", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-sputum-me.schema.json b/forms/report-sputum-me.schema.json deleted file mode 100644 index 5883911..0000000 --- a/forms/report-sputum-me.schema.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "sputum_me", - "description": "Sputum ME", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "description": { - "description": "Description", - "type": "string" - }, - "organism": { - "description": "Organism", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-stool-ova.schema.json b/forms/report-stool-ova.schema.json deleted file mode 100644 index 8e2cd78..0000000 --- a/forms/report-stool-ova.schema.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "stool_ova", - "description": "Stool for Ova", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "description": { - "description": "Description", - "type": "string" - }, - "ova": { - "description": "Ova", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-stool-re.schema.json b/forms/report-stool-re.schema.json deleted file mode 100644 index 9db09db..0000000 --- a/forms/report-stool-re.schema.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "stool_re", - "description": "Stool RE", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "description": { - "description": "Description", - "type": "string" - }, - "obt": { - "description": "OBT", - "type": "string" - }, - "opc": { - "description": "Ova Parasite Cyst", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-urine-cs.schema.json b/forms/report-urine-cs.schema.json deleted file mode 100644 index 16af87c..0000000 --- a/forms/report-urine-cs.schema.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "urine_cs", - "description": "Urine CS", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "organism": { - "description": "Organism", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/forms/report-urine-re.schema.json b/forms/report-urine-re.schema.json deleted file mode 100644 index 80a2e0a..0000000 --- a/forms/report-urine-re.schema.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft/2020-12/schema", - "title": "urine_re", - "description": "Urine RE", - "type": "object", - - "properties": { - "date": { - "description": "Date", - "type": "string", - "format": "date" - }, - "time": { - "description": "Time", - "type": "string", - "format": "time" - }, - "description": { - "description": "Description", - "type": "string" - }, - "albumin": { - "description": "Albumin", - "type": "string" - }, - "ketone": { - "description": "Ketone Body", - "type": "string" - }, - "rbc": { - "description": "RBC cells", - "type": "string" - }, - "pus": { - "description": "Pus cells", - "type": "string" - } - }, - "required": ["date"] -} diff --git a/history.php b/history.php deleted file mode 100644 index 22c7320..0000000 --- a/history.php +++ /dev/null @@ -1,33 +0,0 @@ -updateHistory($_POST, $pid); - //header("Location: view.php?pid=".$pid); - //exit(); - } -} -if(!empty($_GET["pid"])){ - $form=schema2form("forms/history.schema.json", $_GET["pid"]); -} -else{ - $form=schema2form("forms/history.schema.json"); -} -?> - - - - -Test Needed | Place | Date | Patient ID |
---|
Test Name | Destination | Date |
---|
`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `