133 lines
4.0 KiB
Plaintext
133 lines
4.0 KiB
Plaintext
maintenance:
|
|
|
|
title: CSS style sheet for STD_FUNC_DOSAGE_MESSAGES;;
|
|
mlmname: STD_FUNC_DOSAGE_CSS;;
|
|
arden: version 2.5;;
|
|
version: 18.4;;
|
|
institution: Allscripts, Standard MLM;;
|
|
author: Allscripts Healthcare Solutions, Inc.;;
|
|
specialist: ;;
|
|
date: 2018-10-26;;
|
|
validation: testing;;
|
|
|
|
/* P r o p r i e t a r y N o t i c e */
|
|
/* Unpublished (c) 2013 - 2018 Allscripts Healthcare, LLC. and/or its affiliates. All Rights Reserved.
|
|
|
|
P r o p r i e t a r y N o t i c e: This software has been provided pursuant to a License Agreement, with
|
|
Allscripts Healthcare, LLC. and/or its affiliates, containing restrictions on its use. This software contains
|
|
valuable trade secrets and proprietary information of Allscripts Healthcare, LLC. and/or its affiliates and is
|
|
protected by trade secret and copyright law. This software may not be copied or distributed in any form or medium,
|
|
disclosed to any third parties, or used in any manner not provided for in said License Agreement except with prior
|
|
written authorization from Allscripts Healthcare, LLC. and/or its affiliates. Notice to U.S. Government Users:
|
|
This software is {{{SINGLE-QUOTE}}}Commercial Computer Software{{{SINGLE-QUOTE}}}.
|
|
|
|
All product names are the trademarks or registered trademarks of Allscripts Healthcare, LLC. and/or its affiliates.
|
|
*/
|
|
/* P r o p r i e t a r y N o t i c e */
|
|
|
|
library:
|
|
purpose: This MLM contains the CSS style sheet for STD_FUNC_DOSAGE_MESSAGES.
|
|
;;
|
|
explanation: Dose range alert messages are in HTML format. This MLM contains
|
|
the CSS styles used to format the message.
|
|
;;
|
|
keywords: single dose; average daily dose; total daily dose; dosage range; HTML
|
|
;;
|
|
knowledge:
|
|
type: data-driven;;
|
|
data:
|
|
// Define the CSS to be used for the HTML dose range check alerts
|
|
Standard_CSS :=
|
|
"<style type={{{SINGLE-QUOTE}}}text/css{{{SINGLE-QUOTE}}}> " ||
|
|
|
|
// general style applied to entire alert message
|
|
" body " ||
|
|
" { color:black; " ||
|
|
" font-size:12pt; " ||
|
|
" font-family:Segoe UI,sans-serif; " ||
|
|
" margin-top: 0px; }" ||
|
|
|
|
// generic styles
|
|
" #PaddingLeft" ||
|
|
" { padding-left:50px; } " ||
|
|
" #NormalText" ||
|
|
" { font-weight:Normal; " ||
|
|
" color:black; } " ||
|
|
|
|
// header styles
|
|
" #Title" ||
|
|
" { color:Red; " ||
|
|
" font-size:14pt; " ||
|
|
" font-weight:bold; } " ||
|
|
" #MedicationHeader" ||
|
|
" { color:Blue; } " ||
|
|
|
|
// specific message styles
|
|
" #BasedOnMsg" ||
|
|
" { font-size:12pt; } " ||
|
|
" #BasedOnAdditionalInfoMsg" ||
|
|
" { font-size:12pt; } " ||
|
|
|
|
// table styles
|
|
" #ContraindicationTable" ||
|
|
" { font-size:12pt; } " ||
|
|
" #OutsideDoseRangeTable" ||
|
|
" { font-size:12pt; } " ||
|
|
" #AdditionalInfoTable" ||
|
|
" { font-size:12pt; } " ||
|
|
|
|
// table column style
|
|
" #TableColumnHeader" ||
|
|
" { text-align:left;" ||
|
|
" padding-right:50px; } " ||
|
|
" #AdditionalInfoColumnHeader" ||
|
|
" { text-align:left; " ||
|
|
" font-weight:normal} " ||
|
|
|
|
// table cell styles
|
|
" #TableCellPaddingRight" ||
|
|
" { padding-right:50px; } " ||
|
|
|
|
// highlighted data styles
|
|
" #MedicationName" ||
|
|
" { color:Blue; } " ||
|
|
" #OutsideDoseRangeValue" ||
|
|
" { color:Red; } " ||
|
|
" #WithinDoseRangeValue" ||
|
|
" { color:Black; } " ||
|
|
" #ContraindicationPatientInfo" ||
|
|
" { color:Red; } " ||
|
|
" #CreatinineClearanceNote" ||
|
|
" { color:rgb(31,73,125); } " ||
|
|
" #FrequencyIssue" ||
|
|
" { color:Red; } " ||
|
|
|
|
// debug section style
|
|
" #DebugSection" ||
|
|
" { font-size:10pt; " ||
|
|
" font-family:Segoe UI,sans-serif; }" ||
|
|
|
|
// list margin
|
|
" ul" ||
|
|
" {margin-top:0px; " ||
|
|
" margin-bottom:0px; } " ||
|
|
|
|
// breakpoint height
|
|
" br" ||
|
|
" {line-height:85%; }" ||
|
|
"</style> ";
|
|
;;
|
|
priority: 50
|
|
;;
|
|
evoke:
|
|
;;
|
|
logic:
|
|
conclude true;
|
|
;;
|
|
action:
|
|
|
|
return Standard_CSS;
|
|
;;
|
|
Urgency: 50;;
|
|
end:
|