style.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. .border-lighter {
  7. border: 1px solid #f3f3f3;
  8. }
  9. /* login css */
  10. .login-container {
  11. background-color: var(--bg-grey);
  12. }
  13. .login-header {
  14. font-size: 30px;
  15. font-weight: 100;
  16. }
  17. .login-form {
  18. padding: 50px;
  19. }
  20. .login-form label {
  21. font-size: 14px;
  22. color: #454859;
  23. }
  24. .login-form .form-control {
  25. height: calc(1.5em + 0.75rem + 0.3px);;
  26. }
  27. .bg-holder {
  28. background-image: url(/login-rhs.jpg);
  29. background-size: cover;
  30. }
  31. .login-container .logo {
  32. font-size: 35px;
  33. font-weight: 800;
  34. color: rgb(13, 89, 175);
  35. }
  36. .login-container small {
  37. font-size: 12px;
  38. color: #999;
  39. }
  40. /* end of login */
  41. .w-70 {
  42. width: var(--w-70);
  43. }
  44. .text-warning-mellow {
  45. color: #d8a714!important;
  46. }
  47. .bg-warning-mellow {
  48. background-color: #ffc10755 !important;
  49. }
  50. .text-link {
  51. color: rgb(13, 89, 175) !important;
  52. }
  53. .stag-primary-bg {
  54. background-color: var(--primary-color) !important;
  55. color: #fff;
  56. }
  57. .stag-primary-border {
  58. border-color: var(--primary-color) !important;
  59. }
  60. .navbar-brand {
  61. font-size: 16px !important;
  62. font-weight: 600;
  63. }
  64. .navbar-brand>img {
  65. max-width: 160px;
  66. }
  67. .sidebar .nav-link {
  68. padding: .25rem 1rem;
  69. }
  70. .sidebar .nav-item {
  71. margin-right: 0;
  72. }
  73. .sidebar .nav-item .nav-child-list {
  74. list-style: none;
  75. }
  76. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  77. padding-left: 2rem;
  78. }
  79. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  80. display: none;
  81. }
  82. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  83. display: block;
  84. }
  85. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  86. display: block;
  87. }
  88. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  89. display: none;
  90. }
  91. .navbar-dark .nav-item .nav-link {
  92. color: #fff;
  93. }
  94. .dropdown-menu {
  95. margin-top: 7px;
  96. border-radius: 0;
  97. min-width: 120px;
  98. }
  99. .dropdown-item:not(:last-child) {
  100. border-bottom:1px solid #ddd;
  101. }
  102. body>.navbar .dropdown-menu {
  103. margin-top: -3px;
  104. }
  105. main {
  106. padding:0 1rem;
  107. }
  108. /* ability to toggle the video pane (rhs) */
  109. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  110. position: fixed;
  111. bottom: 0;
  112. right: 0;
  113. padding: 0.25rem 0.75rem;
  114. border-top-left-radius: 6px;
  115. background-color: var(--primary-color);
  116. color: #fff;
  117. z-index: 2;
  118. }
  119. body.stag_rhs_collapsed .v-split,
  120. body.stag_rhs_collapsed .app-right-panel {
  121. display: none !important;
  122. }
  123. .delete-column {
  124. width: 120px;
  125. }
  126. .m-negator {
  127. margin-left: -1.25rem !important;
  128. margin-right: -1.25rem !important;
  129. }
  130. .pl-3-5 {
  131. padding-left: 1.25rem !important;
  132. }
  133. .lh-24px {
  134. height: 24px;
  135. line-height: 24px;
  136. }
  137. .mcp-theme-1 input[type="file"] {
  138. position: relative;
  139. cursor: pointer;
  140. box-shadow: none;
  141. }
  142. .mcp-theme-1 input[type="file"]::after {
  143. content: attr(selected-file);
  144. position: absolute;
  145. left: 0;
  146. top: 0;
  147. width: 100%;
  148. height: 100%;
  149. background: #fff;
  150. display: flex;
  151. align-items: center;
  152. padding: 0 0.5rem;
  153. color: #0d59af;
  154. overflow: hidden;
  155. white-space: nowrap;
  156. text-overflow: ellipsis;
  157. }
  158. .mcp-theme-1 *:not(i) {
  159. font-family: Verdana, sans-serif;
  160. font-size: 12px;
  161. }
  162. .mcp-theme-1 .font-size-11 {
  163. font-size: 11px;
  164. }
  165. .mcp-theme-1 .font-size-13 {
  166. font-size: 13px;
  167. }
  168. .mcp-theme-1 .font-size-14 {
  169. font-size: 14px;
  170. }
  171. .mcp-theme-1 .font-size-16 {
  172. font-size: 16px;
  173. }
  174. .mcp-theme-1 .font-underline {
  175. text-decoration: underline;
  176. }
  177. .mcp-theme-1 .on-hover-opaque {
  178. opacity: 0.6;
  179. }
  180. .mcp-theme-1 .on-hover-opaque:hover {
  181. opacity: 1;
  182. }
  183. .mcp-theme-1 .on-hover-aliceblue:hover {
  184. background: aliceblue;
  185. }
  186. .mcp-theme-1 .opacity-0 {
  187. opacity: 0 !important;
  188. }
  189. .mcp-theme-1 .opacity-60 {
  190. opacity: .6;
  191. }
  192. .mcp-theme-1 .opacity-35 {
  193. opacity: .35;
  194. }
  195. .mcp-theme-1 .overflow-visible {
  196. overflow: visible;
  197. }
  198. .mcp-theme-1 .overflow-overlay-on-hover {
  199. overflow: hidden;
  200. }
  201. .mcp-theme-1 .overflow-overlay-on-hover:hover {
  202. overflow: overlay;
  203. }
  204. .mcp-theme-1 .overflow-x-scroll {
  205. overflow-x: scroll !important;
  206. }
  207. .mcp-theme-1 .text-secondary-light {
  208. color: #c9ddef !important;
  209. }
  210. .mcp-theme-1 a, .mcp-theme-1 a:link {
  211. color: rgb(13, 89, 175);
  212. }
  213. .mcp-theme-1 .text-primary {
  214. color: rgb(13, 89, 175) !important;
  215. }
  216. .mcp-theme-1 .btn.btn-primary {
  217. background: rgb(13, 89, 175);
  218. border-color: rgb(13, 89, 175);
  219. box-shadow: none;
  220. }
  221. .mcp-theme-1 .btn.btn-success,
  222. .mcp-theme-1 .btn.btn-success:active {
  223. background: #35b7b2;
  224. border-color: #35b7b2;
  225. }
  226. .mcp-theme-1 .btn.btn-success:focus {
  227. box-shadow: 0 0 0 0.2rem #35b7b277;
  228. }
  229. #sidebarMenu .mcp-theme-1 .nav-item {
  230. margin: 0;
  231. }
  232. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  233. background: #e3e3e394;
  234. }
  235. #sidebarMenu .mcp-theme-1 .nav-link {
  236. border-top: 1px solid transparent;
  237. }
  238. #sidebarMenu .mcp-theme-1 .nav-link.active {
  239. border-top: 1px solid #f8f9fa;
  240. background: #e2e2e2;
  241. }
  242. .mcp-theme-1 .text-sm {
  243. font-size: 85%;
  244. }
  245. .mcp-theme-1 .text-sm-incl-children,
  246. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  247. font-size: 0.8rem;
  248. }
  249. .mcp-theme-1 .minutes-label {
  250. width: 40px;
  251. }
  252. .mcp-theme-1 .memo-textarea {
  253. min-width: 200px;
  254. height: 60px;
  255. }
  256. .main-row {
  257. display: flex;
  258. flex-wrap: nowrap;
  259. margin-right: -15px;
  260. margin-left: -15px;
  261. }
  262. .main-row > .sidebar {
  263. width: 180px;
  264. min-width: 180px;
  265. }
  266. .main-row > main {
  267. flex-grow: 1;
  268. }
  269. html, body {
  270. height: 100%;
  271. }
  272. body>nav.navbar {
  273. height: 55px;
  274. }
  275. .body-height {
  276. height: calc(100vh - 55px);
  277. }
  278. .stag-content {
  279. height: calc(100% - 55px);
  280. }
  281. [moe][large] form, [moe][large] [url] {
  282. width: 450px;
  283. }
  284. [moe][wide] form, [moe][wide] [url] {
  285. width: 550px;
  286. }
  287. [moe][huge] form, [moe][huge] [url] {
  288. width: 750px;
  289. }
  290. [moe][extra-huge] form, [moe][extra-huge] [url] {
  291. width: 900px;
  292. }
  293. [moe][bottom] form,
  294. [moe][bottom] div[url]{
  295. bottom: 100%;
  296. }
  297. .moe-disabled[moe] {
  298. cursor: not-allowed;
  299. }
  300. .moe-disabled[moe] [start][show] {
  301. opacity: 0.5;
  302. pointer-events: none;
  303. }
  304. .mcp-theme-1 .stag-no-wrap-td {
  305. max-width: 260px;
  306. }
  307. .mcp-theme-1 .stag-no-wrap {
  308. max-width: 250px;
  309. overflow: hidden;
  310. text-overflow: ellipsis;
  311. white-space: nowrap;
  312. display: block;
  313. }
  314. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  315. min-width: 200px;
  316. }
  317. .mcp-theme-1 .min-width-unset>.form-control.form-control-sm {
  318. min-width: unset !important;
  319. }
  320. .mcp-theme-1 .width-auto {
  321. width: auto !important;
  322. }
  323. .mcp-theme-1 [large] .form-control.form-control-sm {
  324. min-width: unset;
  325. }
  326. [wide] .form-control.form-control-sm:not(.min-width-unset) {
  327. min-width: 480px;
  328. }
  329. [moe][center] [url]:not([show]) {
  330. position: fixed;
  331. top: 10%;
  332. max-height: 88%;
  333. overflow-y: auto;
  334. overflow-x: hidden;
  335. left: calc(50% - 250px);
  336. width: 500px;
  337. }
  338. [moe][center][wide] [url]:not([show]) {
  339. left: calc(50% - 400px);
  340. width: 800px;
  341. }
  342. [moe][center][extra-wide] [url]:not([show]) {
  343. left: calc(50% - 500px);
  344. width: 1000px;
  345. }
  346. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  347. min-width: unset;
  348. max-width: 100%;
  349. }
  350. .form-check-label {
  351. padding-top: 2px;
  352. }
  353. .mcp-theme-1 .rotateh {
  354. transform: rotateY(180deg);
  355. }
  356. .mcp-theme-1 .icon-16 {
  357. width: 16px !important;
  358. height: 16px !important;
  359. }
  360. .mcp-theme-1 .width-200px {
  361. width: 200px !important;
  362. }
  363. .mcp-theme-1 .width-300px {
  364. width: 300px !important;
  365. }
  366. .mcp-theme-1 .width-22px {
  367. width: 22px !important;
  368. }
  369. .mcp-theme-1 .width-30px {
  370. width: 30px !important;
  371. }
  372. .mcp-theme-1 .width-40px {
  373. width: 40px !important;
  374. }
  375. .mcp-theme-1 .width-50px {
  376. width: 50px !important;
  377. }
  378. .mcp-theme-1 .width-60px {
  379. width: 60px !important;
  380. }
  381. .mcp-theme-1 .width-70px {
  382. width: 70px !important;
  383. }
  384. .mcp-theme-1 .min-width-30px {
  385. min-width: 30px !important;
  386. }
  387. .mcp-theme-1 .min-width-50 {
  388. min-width: 50% !important;
  389. }
  390. .mcp-theme-1 .max-width-50 {
  391. max-width: 50% !important;
  392. }
  393. .mcp-theme-1 .min-width-70px {
  394. min-width: 70px !important;
  395. }
  396. .mcp-theme-1 .min-width-80px {
  397. min-width: 80px !important;
  398. }
  399. .mcp-theme-1 .width-90px {
  400. width: 90px !important;
  401. }
  402. .mcp-theme-1 .min-width-110px {
  403. min-width: 110px !important;
  404. }
  405. .mcp-theme-1 .min-width-140px {
  406. min-width: 140px !important;
  407. }
  408. .mcp-theme-1 .min-width-200px {
  409. min-width: 200px !important;
  410. }
  411. .mcp-theme-1 .min-width-300px {
  412. min-width: 300px;
  413. }
  414. .mcp-theme-1 .min-width-500px {
  415. min-width: 500px !important;
  416. }
  417. .mcp-theme-1 .max-width-500px {
  418. max-width: 500px !important;
  419. }
  420. .mcp-theme-1 .min-width-700px {
  421. min-width: 700px !important;
  422. }
  423. .mcp-theme-1 .max-width-700px {
  424. max-width: 700px !important;
  425. }
  426. .mcp-theme-1 .width-100px {
  427. width: 100px;
  428. min-width: unset !important;
  429. max-width: unset !important;
  430. }
  431. .mcp-theme-1 .width-150px {
  432. width: 150px;
  433. min-width: unset !important;
  434. max-width: unset !important;
  435. }
  436. .mcp-theme-1 .width-500px {
  437. width: 500px;
  438. min-width: unset !important;
  439. max-width: unset !important;
  440. }
  441. .mcp-theme-1 .width-100pc {
  442. width: 100% !important;
  443. min-width: unset !important;
  444. }
  445. .mcp-theme-1 .max-width-200px {
  446. max-width: 200px;
  447. }
  448. .mcp-theme-1 .max-width-300px {
  449. max-width: 300px;
  450. }
  451. .mcp-theme-1 .height-35px {
  452. min-height: 35px !important;
  453. max-height: 35px !important;
  454. }
  455. .mcp-theme-1 .outline-0 {
  456. outline: none !important;
  457. box-shadow: none !important;
  458. }
  459. .cancelled-item {
  460. opacity: 0.5;
  461. }
  462. .cancelled-item:not(.always-clickable) * {
  463. pointer-events: none;
  464. }
  465. .note-content {
  466. max-height: 300px;
  467. overflow-y: auto;
  468. }
  469. .note-content:not([auto-edit]) {
  470. padding: 1rem;
  471. padding-bottom: 0;
  472. cursor: pointer;
  473. position: relative;
  474. }
  475. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  476. content: '(click to change)';
  477. display: block;
  478. color: #535353;
  479. padding-bottom: 0.3rem;
  480. }
  481. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  482. border-left: 0;
  483. border-right: 0;
  484. }
  485. .mcp-theme-1 .ql-editor[contenteditable] {
  486. min-height: 100px;
  487. }
  488. body [note-rte][slim-rte]:not(.border-0),
  489. body [note-rte][data-field-name="reviewValue"],
  490. body [note-rte][data-field-name="planValue"] {
  491. border: 1px solid #ced4da !important;
  492. }
  493. body [note-rte][slim-rte] .ql-editor[contenteditable],
  494. body [note-rte][data-field-name="reviewValue"] .ql-editor[contenteditable],
  495. body [note-rte][data-field-name="planValue"] .ql-editor[contenteditable] {
  496. min-height: 56px !important;
  497. padding: .25rem .5rem !important;
  498. }
  499. .ql-container p {
  500. margin-top: 1rem;
  501. }
  502. .note-content ul {
  503. list-style: none !important;
  504. }
  505. .ql-editor ul > li::before {
  506. content: '';
  507. }
  508. .m-neg-3 {
  509. margin-left: -1rem;
  510. margin-right: -1rem;
  511. }
  512. .m-neg-4 {
  513. margin-left: -1.25rem;
  514. margin-right: -1.25rem;
  515. }
  516. .mcp-theme-1 .ql-toolbar .ql-formats * {
  517. font-size: 12px !important;
  518. }
  519. .mcp-theme-1 .ql-toolbar.ql-snow {
  520. padding: 3px;
  521. background: #f7f7f7;
  522. }
  523. .mcp-theme-1 .ql-snow .ql-picker {
  524. height: 22px;
  525. }
  526. .mcp-theme-1 .ql-snow.ql-toolbar button {
  527. height: 22px;
  528. width: 26px;
  529. }
  530. .rte-holder .ql-container p {
  531. margin-top: 0;
  532. }
  533. .note-section:not(.edit) .if-not-edit {
  534. display: block !important;
  535. }
  536. .note-section:not(.edit) div.if-not-edit {
  537. /* padding-left: 1rem; */
  538. padding-left: 0;
  539. }
  540. .note-section:not(.edit):hover {
  541. background: #f6f9fc;
  542. cursor: pointer;
  543. }
  544. [data-non-segment-section]:hover {
  545. background: #f6f9fc;
  546. }
  547. .note-signed-by-hcp .note-section:not(.edit):hover {
  548. background: #f6f9fc;
  549. cursor: auto;
  550. }
  551. .note-section.edit .if-edit {
  552. display: block !important;
  553. }
  554. .c-pointer {
  555. cursor: pointer;
  556. }
  557. .events-none {
  558. pointer-events: none;
  559. }
  560. .blocking-overlay {
  561. opacity: 0 !important;
  562. cursor: default;
  563. }
  564. .inset-comment p {
  565. margin-bottom: 0.3rem;
  566. }
  567. .inset-comment p:last-child {
  568. margin-bottom: 0 !important;
  569. }
  570. .note-section.edit {
  571. background: #f0f8ff7d;
  572. outline: 2px solid #9de3ff;
  573. }
  574. .note-section.edit .ql-editor,
  575. .note-section.edit .btn-default {
  576. background-color: #fff !important;
  577. }
  578. /*.note-section-item-row:not(:first-child) {
  579. padding-top: 10px;
  580. border-top: 1px solid #ccc;
  581. }*/
  582. /* override med ac css */
  583. #searchResults {
  584. z-index: 100001 !important;
  585. }
  586. input.search_field, textarea.search_field {
  587. background-position: right 7px center !important;
  588. padding-right: 23px !important;
  589. }
  590. .ansList:focus, .search_field:focus {
  591. background-color: #fff !important;
  592. }
  593. .navbar.navbar-dark {
  594. height: 55px;
  595. position: fixed;
  596. top: 0;
  597. left: 0;
  598. width: 100%;
  599. z-index: 9999;
  600. }
  601. .main-row {
  602. padding-left: 180px;
  603. }
  604. .main-row.autohide-leftnav {
  605. padding-left: 30px;
  606. }
  607. .main-row > .sidebar {
  608. width: 180px;
  609. min-width: 180px;
  610. position: fixed;
  611. left: 0;
  612. top: 55px;
  613. z-index: 8;
  614. height: calc(100% - 55px);
  615. padding-bottom: 4rem;
  616. border-right: 1px solid #ddd;
  617. overflow: hidden;
  618. }
  619. .main-row > .sidebar:hover {
  620. overflow-y: overlay
  621. }
  622. @media screen {
  623. .navbar.navbar-dark + [role="main"] {
  624. padding-top: 55px;
  625. }
  626. }
  627. @media screen and (max-width: 1400px) {
  628. .flex-container > div:first-child {
  629. margin-bottom: 20px;
  630. }
  631. }
  632. @media screen and (min-width: 1400px) {
  633. .flex-container{
  634. display: flex;
  635. align-items: flex-start;
  636. justify-content: space-between;
  637. }
  638. .flex-container > div {
  639. flex-basis: 50%;
  640. }
  641. .flex-container > div:first-child {
  642. border-right: 1px solid #eee;
  643. margin-right: 20px;
  644. padding-right: 20px;
  645. }
  646. }
  647. .main-row > .sidebar .nav .nav-item a {
  648. white-space: nowrap;
  649. }
  650. .main-row.autohide-leftnav > .sidebar {
  651. width: 30px;
  652. min-width: 30px;
  653. transition: width 0.2s ease;
  654. }
  655. .main-row.autohide-leftnav > .sidebar:not(:hover):after {
  656. content: '(hover for menu)';
  657. position: fixed;
  658. top: 200px;
  659. left: 5px;
  660. transform-origin: top left;
  661. transform: rotate(-90deg);
  662. white-space: nowrap;
  663. font-size: 12px;
  664. font-family: verdana;
  665. color: #666;
  666. }
  667. .main-row.autohide-leftnav > .sidebar ul {
  668. opacity: 0;
  669. }
  670. .main-row.autohide-leftnav > .sidebar:hover {
  671. width: 180px;
  672. }
  673. .main-row.autohide-leftnav > .sidebar:hover ul {
  674. opacity: 1;
  675. }
  676. .stag-popup .navbar.navbar-dark + [role="main"] {
  677. padding-top: 0;
  678. }
  679. .font-smaller {
  680. font-size: 11px !important;
  681. }
  682. .text-ellipsis {
  683. white-space: nowrap;
  684. overflow: hidden;
  685. text-overflow: ellipsis;
  686. }
  687. .outline-0 {
  688. outline: none !important;
  689. }
  690. .note-widget-item:hover {
  691. background: #eee;
  692. }
  693. .note-widget-title {
  694. background: #ccc !important;
  695. color: #333 !important;
  696. font-size: 12px !important;
  697. font-weight: bold !important;
  698. }
  699. .navbar-collapse.show {
  700. background: #1c4587;
  701. z-index: 999;
  702. padding: 0.5rem 1rem;
  703. margin: 0 -1rem;
  704. }
  705. .navbar-dark .nav-item .nav-link {
  706. font-size: 12px;
  707. white-space: nowrap;
  708. overflow: hidden;
  709. text-overflow: ellipsis;
  710. }
  711. #patient-search {
  712. min-width: 90px !important;
  713. max-width: 140px !important;
  714. }
  715. .suggestions-outer {
  716. top: calc(100% + 2px);
  717. background: #fff;
  718. border-radius: 3px;
  719. border: 1px solid #ccc;
  720. z-index: 9999;
  721. }
  722. .suggestions-outer {
  723. top: calc(100% + 1px);
  724. background: #fff;
  725. border-radius: 3px;
  726. border: 1px solid #ccc;
  727. z-index: 9999;
  728. max-height: 220px;
  729. overflow-y: overlay;
  730. min-width: 100%;
  731. right: 0;
  732. }
  733. [stag-suggest-bottom-left]~.stag-suggestions-container .suggestions-outer {
  734. bottom: 30px;
  735. left: 0;
  736. top: auto;
  737. right: auto;
  738. }
  739. [stag-suggest-left]~.stag-suggestions-container .suggestions-outer {
  740. left: 0;
  741. right: auto;
  742. min-width: 100%;
  743. }
  744. [stag-suggest]:not(:focus)+.stag-suggestions-container {
  745. display: none !important
  746. }
  747. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  748. padding: 0.25rem 0.5rem;
  749. text-decoration: none;
  750. font-size: 12px;
  751. }
  752. .suggestions-outer .no-suggest-items {
  753. color: #888;
  754. }
  755. .suggestions-outer .suggest-item.active {
  756. background: #ccc;
  757. }
  758. .suggestions-outer .suggest-item:hover {
  759. background: aliceblue;
  760. }
  761. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  762. .pro-dashboard-inline-calendar table.table-condensed {
  763. width: 100% !important;
  764. }
  765. .pro-dashboard-inline-calendar {
  766. border: 1px solid #ddd;
  767. border-radius: 3px
  768. }
  769. .pro-dashboard-inline-calendar table.table-condensed th {
  770. padding: 0.5rem 0;
  771. border-radius: 0;
  772. }
  773. .pro-dashboard-inline-calendar table.table-condensed td {
  774. padding: 0.25rem 0;
  775. border-radius: 0;
  776. }
  777. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  778. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  779. background: #c5e4ff !important;
  780. font-weight: bold !important;
  781. color: #000 !important;
  782. }
  783. .caremonth-measurements-calendar table.table-condensed td[has-events],
  784. .caremonth-measurements-calendar td.has-events a {
  785. background: #c5e4ff !important;
  786. font-weight: bold !important;
  787. color: #000 !important;
  788. }
  789. .ui-state-active,
  790. .ui-widget-content .ui-state-active,
  791. .ui-widget-header .ui-state-active,
  792. a.ui-button:active,
  793. .ui-button:active,
  794. .ui-button.ui-state-active:hover {
  795. border: 1px solid #4396da !important;
  796. }
  797. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  798. font-weight: bold !important;
  799. color: #0d59af !important;
  800. }
  801. .pro-dashboard-inline-calendar td a {
  802. text-align: center !important;
  803. }
  804. [v-cloak] {
  805. opacity: 0;
  806. }
  807. .patient-avatar {
  808. width: 50px;
  809. height: 50px;
  810. background: #eee;
  811. display: inline-flex;
  812. align-items: center;
  813. justify-content: center;
  814. border-radius: 100%;
  815. border: 1px solid #ccc;
  816. }
  817. .large {
  818. font-size: 16px !important;
  819. }
  820. /* note templates */
  821. .note-template-container {
  822. position: absolute;
  823. z-index: 10002;
  824. background: #fff;
  825. border: 1px solid #ddd;
  826. border-radius: 3px;
  827. display: none;
  828. min-width: 200px;
  829. }
  830. .note-template-container .note-template-item {
  831. position: relative;
  832. height: 25px;
  833. }
  834. .note-template-container .note-template-item .note-template-text {
  835. border-bottom: 1px solid #eee;
  836. }
  837. .note-template-container .note-template-item .label {
  838. padding: 3px 6px;
  839. padding-right: 25px;
  840. white-space: nowrap;
  841. display: inline-flex;
  842. align-items: center;
  843. min-width: 120px;
  844. cursor: pointer;
  845. flex-grow: 1;
  846. }
  847. .note-template-container .note-template-item:hover,
  848. .note-template-container .note-template-item.selected {
  849. background: aliceblue;
  850. }
  851. .note-template-container .note-template-item .label>input[type="checkbox"] {
  852. pointer-events: none;
  853. margin: 0;
  854. margin-right: 4px;
  855. height: 11px;
  856. }
  857. .note-template-container .note-template-item:last-child label {
  858. border: 0;
  859. }
  860. .note-template-container .note-template-item .note-template-children {
  861. position: absolute;
  862. left: 100%;
  863. top: 0;
  864. background: #fff;
  865. border: 1px solid #ddd;
  866. border-radius: 3px;
  867. display: none;
  868. }
  869. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  870. display: block;
  871. }*/
  872. .note-template-container .note-template-item .has-children {
  873. position: absolute;
  874. right: 6px;
  875. top: 0;
  876. height: 25px;
  877. line-height: 25px;
  878. color: #bbb;
  879. }
  880. .note-template-container .note-template-item:hover>.has-children {
  881. color: #444;
  882. }
  883. .note-templates-underlay {
  884. position: fixed;
  885. top: 0;
  886. left: 0;
  887. height: 100%;
  888. width: 100%;
  889. background: rgba(0,0,0,0.13);
  890. display: none;
  891. z-index: 10001;
  892. }
  893. .note-template-container textarea {
  894. height: 100px;
  895. border-radius: 0;
  896. border-color: #ccc;
  897. padding: 5px 10px;
  898. display: block;
  899. }
  900. .note-template-buttons {
  901. position: absolute;
  902. bottom: 100%;
  903. right: 0;
  904. height: 27px;
  905. padding: 0 3px;
  906. background: #fff;
  907. }
  908. .note-template-buttons button {
  909. font-size: 10px;
  910. padding: 2px 5px;
  911. margin-left: 5px;
  912. border-radius: 2px;
  913. }
  914. .note-template-buttons button:first-child {
  915. margin-left: 0;
  916. }
  917. .note-template-output {
  918. position: absolute;
  919. bottom: calc(100% + 26px);
  920. left: 0;
  921. padding: 3px 6px;
  922. background: #f7f7f7;
  923. min-width: 100%;
  924. border-radius: 3px;
  925. }
  926. .note-template-output-text {
  927. }
  928. .note-template-output .note-template-output-line {
  929. font-size: 11px;
  930. width: max-content;
  931. max-width: 500px;
  932. margin: 0;
  933. }
  934. .note-template-set-chooser {
  935. height: 22px;
  936. line-height: 22px;
  937. padding: 0 0.22rem;
  938. font-size: 12px !important;
  939. }
  940. .ql-editor .note-template-output-line {
  941. white-space: normal;
  942. }
  943. [prefix="(+)"] a.plus-trigger {
  944. color: #23a923 !important;
  945. }
  946. [prefix="(-)"] a.minus-trigger {
  947. color: #a91e1e !important;
  948. }
  949. .rspace {
  950. width: 16px;
  951. display: inline-flex;
  952. text-align: center;
  953. justify-content: center;
  954. }
  955. .embed-mask {
  956. position: fixed;
  957. left: 0;
  958. top: 0;
  959. height: 100%;
  960. width: 100%;
  961. background: rgba(0, 0, 0, 0.1);
  962. z-index: 98;
  963. }
  964. .embed-section {
  965. background: #fff;
  966. z-index: 99;
  967. padding: 0;
  968. border: 1px solid #ccc;
  969. }
  970. .mask-text-addition {
  971. position: fixed;
  972. bottom: calc(50% - 60px);
  973. left: 0;
  974. width: 100%;
  975. text-align: center;
  976. font-size: 12px;
  977. z-index: 9999999;
  978. color: #000;
  979. }
  980. .note-summary p {
  981. margin-bottom: 0.25rem;
  982. }
  983. .aligned-icon {
  984. display: inline-block;
  985. width: 18px;
  986. text-align: center;
  987. }
  988. body #searchCount {
  989. display: none !important;
  990. }
  991. body .break-spaces {
  992. white-space: pre-wrap;
  993. }
  994. .stag-tooltip .stag-tooltip-content {
  995. display: none;
  996. min-width: 200px;
  997. }
  998. .stag-tooltip:hover .stag-tooltip-content {
  999. display: block;
  1000. right: -10px;
  1001. top: 100%;
  1002. z-index: 1;
  1003. }
  1004. .gem-nodes .node {
  1005. border: 1px solid #ddd;
  1006. padding: 0.75rem;
  1007. border-radius: 5px;
  1008. }
  1009. .gem-nodes>.node {
  1010. border: 0 !important;
  1011. padding-left: 0;
  1012. padding-right: 0;
  1013. }
  1014. .gem-nodes>.node:first-child {
  1015. margin-top: 0 !important;
  1016. }
  1017. .gem-nodes>.node>label {
  1018. font-weight: bold;
  1019. font-size: 14px;
  1020. margin: 0;
  1021. }
  1022. .gem-nodes .subs .node:last-child {
  1023. margin-bottom: 0 !important;
  1024. }
  1025. .gem-nodes>.node>.subs {
  1026. padding-left: 0 !important;
  1027. }
  1028. .gem-nodes>.node>.subs>.node {
  1029. background: #f2f2f2;
  1030. }
  1031. .gem-nodes>.node>.subs>.node>.subs>.node {
  1032. background: #fff;
  1033. }
  1034. .gem-nodes .node span[field] {
  1035. font-weight: bold;
  1036. }
  1037. body .node input[type="number"] {
  1038. max-width: 70px;
  1039. min-width: unset !important;
  1040. }
  1041. .section-edit-mask {
  1042. top: 0;
  1043. left: 0;
  1044. width: 100%;
  1045. height: 100%;
  1046. }
  1047. .signed-note {
  1048. position: relative;
  1049. pointer-events: none !important;
  1050. }
  1051. .signed-note::after {
  1052. content: '';
  1053. position: absolute;
  1054. z-index: 2;
  1055. cursor: not-allowed;
  1056. left: 0;
  1057. top: 0;
  1058. width: 100%;
  1059. height: 100%;
  1060. background: rgba(0,0,0,0.01);
  1061. }
  1062. .slot-picker {
  1063. padding: 4px;
  1064. padding-right: 0;
  1065. padding-bottom: 0;
  1066. }
  1067. .slot-picker.disabled {
  1068. opacity: 0.5;
  1069. pointer-events: none;
  1070. cursor: not-allowed;
  1071. }
  1072. .slot-picker td {
  1073. text-align: center;
  1074. border: 1px solid #ddd !important;
  1075. padding: 2px 5px;
  1076. cursor: pointer;
  1077. }
  1078. .slot-picker th {
  1079. border: 0 !important;
  1080. }
  1081. .slot-picker td:hover {
  1082. background: aliceblue;
  1083. }
  1084. .slot-picker td.blocked {
  1085. background: #ccc !important;
  1086. cursor: not-allowed;
  1087. }
  1088. .slot-picker td.selected {
  1089. background-image: linear-gradient(to bottom,#08c,#04c);
  1090. background-repeat: repeat-x;
  1091. color: #fff;
  1092. }
  1093. .pro-appointment-calendar.disabled {
  1094. opacity: 0.5;
  1095. pointer-events: none;
  1096. cursor: not-allowed;
  1097. }
  1098. .pro-appointment-calendar .datepicker-inline {
  1099. width: 195px;
  1100. padding-left: 0;
  1101. }
  1102. .pro-appointment-calendar .datepicker td {
  1103. height: 25px;
  1104. }
  1105. .datepicker td, .datepicker th {
  1106. border: none !important;
  1107. }
  1108. .appt-form-col {
  1109. width: 220px;
  1110. }
  1111. .appt-calendar-col {
  1112. flex-grow: 1;
  1113. }
  1114. .appt-form td.fc-day.stag-selected {
  1115. outline: 2px solid #007bff;
  1116. background: #e5f2fd;
  1117. }
  1118. .appt-form .stag-current-appt {
  1119. background: #89159cc7;
  1120. color: #fff;
  1121. border-color: #89159cc7;
  1122. }
  1123. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  1124. border-color: #fff;
  1125. }
  1126. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  1127. margin-bottom: 0.5rem;
  1128. /*align-items: start;*/
  1129. }
  1130. .stag-calendar-header-extra {
  1131. background: #cde8ff;
  1132. padding: 3px 10px;
  1133. margin-top: 7px;
  1134. border-top-left-radius: 6px;
  1135. border-top-right-radius: 6px;
  1136. border: 1px solid #44a5f982;
  1137. border-bottom: 0;
  1138. }
  1139. .stag-calendar-header-extra * {
  1140. font-size: 14px !important;
  1141. }
  1142. /* call panel */
  1143. #proCallComponent {
  1144. padding-bottom: 150px;
  1145. }
  1146. .patient-queue {
  1147. display: flex;
  1148. flex-direction: column;
  1149. position: fixed;
  1150. left: 0;
  1151. width: 100%;
  1152. bottom: 0;
  1153. z-index: 4;
  1154. }
  1155. .queue-item {
  1156. width: 100px;
  1157. padding: 0.5rem;
  1158. padding-bottom: 0.25rem;
  1159. text-align: center;
  1160. cursor: pointer;
  1161. }
  1162. .queue-item:hover {
  1163. background: aliceblue;
  1164. }
  1165. .current-work-indicator {
  1166. /*
  1167. position: fixed;
  1168. top: 55px;
  1169. right: 0;
  1170. z-index: 9999;
  1171. */
  1172. background: #305ba0;
  1173. color: #fff;
  1174. font-size: 12px;
  1175. padding: 3px 6px;
  1176. border-radius: 3px;
  1177. /* border-bottom-left-radius: 5px;*/
  1178. white-space: nowrap;
  1179. text-overflow: ellipsis;
  1180. max-width: 100px;
  1181. overflow: hidden;
  1182. }
  1183. /* stag popups */
  1184. .stag-popup {
  1185. position: fixed;
  1186. left: 0;
  1187. top: 55px;
  1188. width: 100%;
  1189. height: calc(100% - 55px);
  1190. overflow-x: auto;
  1191. z-index: 97;
  1192. justify-content: center;
  1193. align-items: center;
  1194. display: none;
  1195. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  1196. padding: 2rem 0;
  1197. }
  1198. .stag-popup.show {
  1199. display: block;
  1200. }
  1201. .stag-popup>form, .stag-popup>.stag-popup-content {
  1202. width: 80%;
  1203. background: #fff;
  1204. border: 1px solid #aaa;
  1205. border-radius: 5px;
  1206. overflow: hidden;
  1207. box-shadow: 0 0 5px #ddd;
  1208. margin: 0 auto;
  1209. padding: 0.75rem;
  1210. min-height: 220px;
  1211. }
  1212. .stag-popup.overflow-visible>.stag-popup-content {
  1213. overflow: visible;
  1214. }
  1215. .stag-popup.min-height-unset>form {
  1216. min-height: unset !important;
  1217. }
  1218. .stag-popup.medium>form, .stag-popup.medium>.stag-popup-content {
  1219. width: calc(80vw - 4rem);
  1220. }
  1221. .stag-popup.medium-large>form, .stag-popup.medium-large>.stag-popup-content {
  1222. width: 90vw;
  1223. }
  1224. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  1225. width: calc(100vw - 4rem);
  1226. }
  1227. .stag-popup.tall>form, .stag-popup.tall>.stag-popup-content {
  1228. min-height: 500px;
  1229. }
  1230. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  1231. max-width: 500px;
  1232. }
  1233. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  1234. max-width: 500px;
  1235. }
  1236. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  1237. max-width: 632pt;
  1238. }
  1239. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1240. margin-right: 1.5rem;
  1241. margin-left: auto;
  1242. }
  1243. .stag-popup .popup-content-container {
  1244. margin-top: 1rem;
  1245. padding-top: 1rem;
  1246. border-top: 1px solid #e1e1e1;
  1247. }
  1248. /* slide-in stag-popups */
  1249. .stag-popup.stag-slide {
  1250. display: block;
  1251. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1252. pointer-events: none;
  1253. overflow: hidden;
  1254. }
  1255. .stag-popup.stag-slide.show {
  1256. pointer-events: all;
  1257. }
  1258. .stag-popup.stag-slide>form {
  1259. position: absolute;
  1260. top: 0;
  1261. height: 100% !important;
  1262. overflow-y: auto;
  1263. border-radius: 0;
  1264. border-top: 0;
  1265. border-bottom: 0;
  1266. border-right: 0;
  1267. transition: right 0.3s ease;
  1268. width: 0;
  1269. }
  1270. .stag-popup.stag-slide.stag-popup-sm>form {
  1271. width: 500px;
  1272. right: -500px;
  1273. }
  1274. .stag-popup.stag-slide.stag-popup-md>form {
  1275. width: 632pt;
  1276. right: -632pt;
  1277. }
  1278. .stag-popup.stag-slide.show>form {
  1279. right: 0;
  1280. }
  1281. /* asana style ticket management */
  1282. .pro-initials {
  1283. border-radius: 100%;
  1284. height: 24px;
  1285. width: 24px;
  1286. min-height: 24px;
  1287. min-width: 24px;
  1288. max-height: 24px;
  1289. max-width: 24px;
  1290. text-align: center;
  1291. font-weight: 400;
  1292. display: inline-flex;
  1293. align-items: center;
  1294. justify-content: center;
  1295. background-color: #6457f9;
  1296. color: #fff;
  1297. font-size: 10px !important;
  1298. opacity: 0.85;
  1299. }
  1300. .pro-initials.pro-initials-sm {
  1301. height: 18px;
  1302. width: 18px;
  1303. min-height: 18px;
  1304. min-width: 18px;
  1305. max-height: 18px;
  1306. max-width: 18px;
  1307. font-size: 9px !important;
  1308. }
  1309. .pro-initials:hover {
  1310. opacity: 1;
  1311. }
  1312. .ticket-section {
  1313. }
  1314. .ticket-section.ticket-section-collapsed {
  1315. max-height: 0;
  1316. overflow: hidden;
  1317. }
  1318. .tickets-table tbody tr {
  1319. transition: background-color 0.2s ease;
  1320. }
  1321. .tickets-table tbody tr:hover {
  1322. background-color: rgba(0,0,0,.04);
  1323. }
  1324. .tickets-table tbody tr.current {
  1325. background-color: aliceblue;
  1326. }
  1327. .stag-slide input.form-control:not(:focus),
  1328. .stag-slide select.form-control:not(:focus) {
  1329. border-color: transparent;
  1330. background-color: transparent;
  1331. cursor: pointer;
  1332. font-weight: bold;
  1333. padding-left: 0;
  1334. }
  1335. .stag-slide select.form-control:not(:focus) {
  1336. appearance: none;
  1337. }
  1338. .stag-slide input.form-control {
  1339. box-shadow: none !important;
  1340. }
  1341. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1342. text-decoration: underline;
  1343. }
  1344. .stag-slide input.form-control[readonly] {
  1345. opacity: 0.75;
  1346. }
  1347. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1348. color: #bbb !important;
  1349. font-weight: normal !important;
  1350. opacity: 1; /* Firefox */
  1351. }
  1352. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1353. color: #bbb !important;
  1354. font-weight: normal !important;
  1355. }
  1356. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1357. color: #bbb !important;
  1358. font-weight: normal !important;
  1359. }
  1360. .stag-slide .text-success {
  1361. color: #00bf9c !important;
  1362. }
  1363. .stag-slide .btn-success,
  1364. .stag-slide .btn-success:hover {
  1365. background: #00bf9c;
  1366. border-color: #00bf9c;
  1367. }
  1368. .stag-slide .comment-input-outer {
  1369. position: sticky;
  1370. bottom: 0;
  1371. }
  1372. .stag-slide .txt-comment {
  1373. padding-bottom: calc(23px + 1rem);
  1374. height: calc(23px + 1rem);
  1375. transition: height 0.3s ease;
  1376. overflow: hidden;
  1377. }
  1378. .stag-slide .txt-comment:focus {
  1379. height: 120px;
  1380. overflow: auto;
  1381. }
  1382. .stag-slide .txt-comment:focus~.btn-save-comment {
  1383. opacity: 1;
  1384. }
  1385. .stag-slide .btn-save-comment {
  1386. position: absolute;
  1387. bottom: 0.5rem;
  1388. right: 0.5rem;
  1389. height: 28px;
  1390. line-height: 28px;
  1391. padding: 0 1rem;
  1392. transition: opacity 0.3s ease;
  1393. opacity: 0.5;
  1394. }
  1395. .stag-slide select.form-control:invalid,
  1396. .stag-slide input[type="text"].form-control:invalid {
  1397. background-color: #f8ecec;
  1398. padding-left: 0.5rem;
  1399. }
  1400. .stag-slide select:focus:invalid,
  1401. .stag-slide input[type="text"]:focus:invalid {
  1402. background: #fff;
  1403. border-color: #e24848;
  1404. box-shadow: 0 0 2px #c10707 !important;
  1405. }
  1406. .erx-line-item:nth-child(2n+1) {
  1407. background: #f0f8ffbb
  1408. }
  1409. .no-scroll {
  1410. overflow: hidden;
  1411. }
  1412. .client-rs-contents p {
  1413. margin-bottom: 0.25rem;
  1414. }
  1415. .pro-option {
  1416. position: relative;
  1417. display: block;
  1418. padding-left: 30px;
  1419. }
  1420. .pro-option.pro-option-selected {
  1421. display: inline-block;
  1422. padding-left: 25px;
  1423. }
  1424. .pro-option .pro-option-initials {
  1425. position: absolute;
  1426. left: 5px;
  1427. top: 2px;
  1428. font-size: 10px;
  1429. border-radius: 100%;
  1430. height: 20px;
  1431. width: 20px;
  1432. line-height: 20px;
  1433. text-align: center;
  1434. font-weight: 400;
  1435. }
  1436. .pro-option.pro-option-selected .pro-option-initials {
  1437. left: 3px;
  1438. top: 0;
  1439. font-size: 10px;
  1440. border-radius: 100%;
  1441. height: 18px;
  1442. width: 18px;
  1443. line-height: 19px;
  1444. text-align: center;
  1445. font-weight: 400;
  1446. }
  1447. span.pro-selection {
  1448. padding: 0 5px;
  1449. height: 18px;
  1450. display: inline-block;
  1451. border-top-right-radius: 3px;
  1452. border-bottom-right-radius: 3px;
  1453. }
  1454. .select2-results__option--selectable {
  1455. font-size: 13px;
  1456. }
  1457. #calendarApp .select2-selection__choice__display,
  1458. #proCalendarApp .select2-selection__choice__display {
  1459. padding: 0 !important;
  1460. overflow: hidden !important;
  1461. }
  1462. span.select2-container.select2-container--default.select2-container--open {
  1463. z-index: 999999;
  1464. }
  1465. .fc .fc-highlight {
  1466. background: rgba(188, 232, 241, 0.6) !important;
  1467. }
  1468. .fc .fc-day-past {
  1469. background: #e7e7e7 !important;
  1470. }
  1471. .fc .add-overlay {
  1472. padding: 1px 4px;
  1473. display: inline-block;
  1474. font-weight: bold;
  1475. }
  1476. .fc .add-overlay.add-overlay-day-grid {
  1477. padding: 4px;
  1478. }
  1479. .stag-popup .stag-popup-title {
  1480. border-bottom: 1px solid #eee;
  1481. padding-bottom: 0.75rem;
  1482. margin-bottom: 1rem;
  1483. display: flex;
  1484. align-items: center;
  1485. }
  1486. .stag-popup .stag-popup-title>span {
  1487. font-size: 17px;
  1488. display: inline-flex;
  1489. align-items: center;
  1490. }
  1491. .stag-popup .stag-popup-title>span>img {
  1492. max-height: 26px;
  1493. margin-right: 8px;
  1494. }
  1495. .fc .other-client {
  1496. box-shadow: 1px 1px 2px deeppink !important;
  1497. opacity: 0.5;
  1498. }
  1499. .fc .other-client:hover {
  1500. opacity: 0.8;
  1501. }
  1502. .fc .availability {
  1503. box-shadow: 0 0 3px green !important;
  1504. }
  1505. .fc .inactive-appointment {
  1506. opacity: 0.6;
  1507. box-shadow: 0 0 3px grey !important;
  1508. }
  1509. .fc .fc-button-primary:not(:disabled):active,
  1510. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1511. border-color: #56a767 !important;
  1512. background-color: #56a767 !important;
  1513. }
  1514. .w-150 {
  1515. width: 150px !important;
  1516. min-width: 150px !important;
  1517. }
  1518. .w-180 {
  1519. width: 180px !important;
  1520. min-width: 180px !important;
  1521. }
  1522. .guest-view button.add-shortcut {
  1523. display: none;
  1524. }
  1525. .guest-view .note-section,
  1526. .guest-view .note-section:hover {
  1527. background: #fff !important;
  1528. }
  1529. .form-check-label {
  1530. display: flex;
  1531. align-items: center;
  1532. }
  1533. #stagPdfViewer>form {
  1534. padding: 0;
  1535. background: #eee;
  1536. }
  1537. #stagPdfViewer>form .stag-popup-title {
  1538. background: #fff;
  1539. padding: 1rem;
  1540. }
  1541. canvas.pdf-viewer-page {
  1542. max-width: 100%;
  1543. margin: 1rem auto;
  1544. display: block;
  1545. box-shadow: 0 0 2px #aaa;
  1546. }
  1547. .hidden-link-input {
  1548. /*opacity: 0;
  1549. width: 0 !important;
  1550. border: 0 !important;
  1551. padding: 0 !important;*/
  1552. position: absolute;
  1553. left: -9999px;
  1554. }
  1555. table.table-edit-sheet tbody tr td {
  1556. padding: 0;
  1557. background: #f7f7f7;
  1558. }
  1559. table.table-edit-sheet tbody tr td>input,
  1560. table.table-edit-sheet tbody tr td>select {
  1561. box-shadow: none !important;
  1562. border-radius: 0 !important;
  1563. border: 0;
  1564. background: #fefefe;
  1565. width: 100% !important;
  1566. min-width: unset !important;
  1567. border-bottom: 1px solid #dee2e6;
  1568. }
  1569. table.table-edit-sheet tbody tr td input[type="text"],
  1570. table.table-edit-sheet tbody tr td select,
  1571. table.table-edit-sheet tbody tr td textarea {
  1572. box-shadow: none !important;
  1573. border-radius: 0 !important;
  1574. border: 0;
  1575. background: #fefefe;
  1576. min-width: unset !important;
  1577. border-bottom: 1px solid #dee2e6;
  1578. }
  1579. table.table-edit-sheet tbody tr td>input.w-auto-input {
  1580. width: auto !important;
  1581. }
  1582. table.table-edit-sheet tbody tr td>input:focus,
  1583. table.table-edit-sheet tbody tr td>select:focus,
  1584. table.table-edit-sheet tbody tr td input.edit:focus {
  1585. /*outline: 3px solid #4b88a633;*/
  1586. /*border: 1px inset #4b88a633 !important;*/
  1587. background: aliceblue !important;
  1588. }
  1589. table.table-edit-sheet tbody tr [contenteditable] {
  1590. background: #fff;
  1591. }
  1592. table.table-edit-sheet .ql-toolbar {
  1593. border-top: 0 !important;
  1594. }
  1595. table.table-edit-sheet .ql-container {
  1596. border-bottom: 0 !important;
  1597. }
  1598. table.table-edit-sheet .ql-editor[contenteditable] {
  1599. min-height: 90px;
  1600. }
  1601. .w-30 {
  1602. width: 30%;
  1603. }
  1604. .w-33 {
  1605. width: 33%;
  1606. }
  1607. .w-35 {
  1608. width: 35%;
  1609. }
  1610. .w-40 {
  1611. width: 40%;
  1612. }
  1613. .client-single-dashboard .hide-if-dashboard {
  1614. display: none;
  1615. }
  1616. .notes-list .hide-if-note,
  1617. .note-section .hide-if-note {
  1618. display: none;
  1619. }
  1620. .data-option-list {
  1621. position: absolute;
  1622. background: #fff;
  1623. border: 2px solid #ddd;
  1624. margin-top: -1px;
  1625. width: 100%;
  1626. z-index: 1;
  1627. display: none;
  1628. max-width: 250px;
  1629. box-shadow: 0 0 3px #ddd;
  1630. border-top: 0;
  1631. max-height: 200px;
  1632. overflow-y: auto;
  1633. }
  1634. .data-option-list>div {
  1635. cursor: pointer;
  1636. padding: 0.2rem 0.5rem;
  1637. border-bottom: 1px solid #ddd;
  1638. color: #222;
  1639. font-size: 90%;
  1640. }
  1641. .data-option-list>div[desc]::after {
  1642. content: attr(desc);
  1643. opacity: 0.75;
  1644. padding-left: 0.5rem;
  1645. font-size: 90%;
  1646. font-family: Verdana, sans-serif;
  1647. }
  1648. .data-option-list>div:last-child {
  1649. border-bottom: 0;
  1650. }
  1651. .data-option-list>div:hover {
  1652. background: aliceblue;
  1653. }
  1654. .measurement-item:not(:last-child) {
  1655. border-bottom: 1px solid #e7e7e7;
  1656. }
  1657. .assessment-detail-template>span {
  1658. margin: 0 !important;
  1659. padding: 0 !important;
  1660. border: 0 !important;
  1661. margin-left: -0.5rem !important;
  1662. position: static !important;
  1663. }
  1664. .assessment-detail-template>span>a {
  1665. display: none;
  1666. }
  1667. button.add-shortcut,
  1668. button.note-templates-trigger-assessment {
  1669. outline: none !important;
  1670. box-shadow: none !important;
  1671. }
  1672. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1673. pointer-events: none !important;
  1674. }
  1675. .claim-line:last-child td {
  1676. padding-bottom: 1.3rem;
  1677. }
  1678. .in-table-markup p:last-of-type {
  1679. margin-bottom: 0;
  1680. }
  1681. .suggestions-outer.pharmacy-suggestions {
  1682. left: 1rem;
  1683. width: calc(100% - 2rem);
  1684. }
  1685. .flowsheets-table td {
  1686. padding: 0 10px;
  1687. height: 38px;
  1688. max-height: 38px;
  1689. min-height: 38px;
  1690. vertical-align: middle !important;
  1691. }
  1692. .flowsheets-table .expand {
  1693. display: none;
  1694. }
  1695. .flowsheets-table .collapse {
  1696. display: block;
  1697. }
  1698. .flowsheets-table .collapsed .expand {
  1699. display: block;
  1700. }
  1701. .flowsheets-table .collapsed .collapse {
  1702. display: none;
  1703. }
  1704. .flowsheets-table tr {
  1705. }
  1706. .flowsheets-table .collapsed tr:not(:first-child) {
  1707. display: none;
  1708. }
  1709. .col-2-button {
  1710. width: 88px;
  1711. text-align: left;
  1712. }
  1713. /* vitals graph */
  1714. .stag-chart {
  1715. min-height: 300px;
  1716. }
  1717. .stag-chart .safe-region>rect {
  1718. fill: green;
  1719. }
  1720. .stag-chart .safe-region>text {
  1721. fill: #888;
  1722. transform: translateY(-18px);
  1723. }
  1724. .on-hover-text-reveal {
  1725. white-space: nowrap;
  1726. overflow: hidden;
  1727. text-overflow: ellipsis;
  1728. }
  1729. .on-hover-text-reveal:hover {
  1730. white-space: normal;
  1731. overflow: unset;
  1732. text-overflow: unset;
  1733. }
  1734. .on-hover-show {
  1735. position: relative;
  1736. }
  1737. .on-hover-show:hover .on-hover-content {
  1738. opacity: 1;
  1739. pointer-events: all;
  1740. }
  1741. .on-hover-show .on-hover-content {
  1742. position: absolute;
  1743. max-width: 300px;
  1744. right: 0;
  1745. top: 100%;
  1746. background: #fff;
  1747. opacity: 0;
  1748. padding: 0 0.75rem;
  1749. padding-bottom: 0.5rem;
  1750. box-shadow: 0 0 2px #999;
  1751. pointer-events: none;
  1752. transition: opacity 0.3s ease;
  1753. z-index: 2;
  1754. }
  1755. .on-hover-show.left .on-hover-content {
  1756. right: auto;
  1757. left: 0;
  1758. }
  1759. .collapsible-tbody.collapsed {
  1760. display: none;
  1761. }
  1762. #send-fax-pdf-preview, #transmit-pdf-preview {
  1763. max-height: 350px;
  1764. overflow: auto;
  1765. box-shadow: 0 0 2px #ccc;
  1766. }
  1767. canvas.pdf-viewer-page.pdf-preview-page {
  1768. margin: 0.5rem auto;
  1769. }
  1770. .back-to-admin-button {
  1771. background: transparent;
  1772. border: 0;
  1773. padding: 0;
  1774. color: rgb(13, 89, 175);
  1775. }
  1776. .back-to-admin-button:hover {
  1777. text-decoration: underline;
  1778. }
  1779. .bg-aliceblue {
  1780. background: aliceblue !important;
  1781. }
  1782. .bg-treeblue {
  1783. background: linear-gradient(to bottom, #beebff 0, #a8e4ff 100%);
  1784. }
  1785. .text-danger-dark {
  1786. color: #8b1621 !important;
  1787. }
  1788. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1789. display: none;
  1790. -webkit-appearance: none;
  1791. }
  1792. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1793. display: none;
  1794. -webkit-appearance: none;
  1795. }
  1796. .filter-head input[type="date"] {
  1797. padding: 0;
  1798. min-width: 90px;
  1799. }
  1800. .filter-head input[type="number"],
  1801. .filter-head input[type="date"] {
  1802. min-width: 90px;
  1803. }
  1804. .filter-head select {
  1805. padding: 0 5px;
  1806. }
  1807. tr.sep td {
  1808. padding: 0;
  1809. background: #eee;
  1810. height: 6px;
  1811. }
  1812. #practice-shipments-ready-to-print ::marker {
  1813. color: #0009;
  1814. font-size: 90%;
  1815. }
  1816. .only-print {
  1817. display: none;
  1818. }
  1819. @media print {
  1820. .only-print {
  1821. display: block;
  1822. }
  1823. th.only-print, td.only-print {
  1824. display: table-cell;
  1825. }
  1826. }
  1827. .only-screen {
  1828. display: block;
  1829. }
  1830. th.only-screen, td.only-screen {
  1831. display: table-cell;
  1832. }
  1833. @media print {
  1834. .only-screen {
  1835. display: none !important;
  1836. }
  1837. .only-pick-list, .only-order-slip {
  1838. display: none;
  1839. }
  1840. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1841. display: block;
  1842. }
  1843. }
  1844. .suggest-item.patient-suggest>img {
  1845. width: 10px;
  1846. height: 10px;
  1847. opacity: 0.75;
  1848. }
  1849. .suggest-item.patient-suggest>img.claimed {
  1850. filter: grayscale(100%);
  1851. opacity: 0.5;
  1852. }
  1853. .pdf-viewer-auto {
  1854. max-height: 600px;
  1855. overflow: auto;
  1856. }
  1857. .ticket-popup .stag-popup.stag-slide.show {
  1858. position: static;
  1859. min-width: 100% !important;
  1860. max-width: unset !important;
  1861. padding-bottom: 2rem;
  1862. }
  1863. .ticket-popup .stag-popup.stag-slide.show form {
  1864. min-width: 100% !important;
  1865. max-width: unset !important;
  1866. }
  1867. .ticket-popup .stag-popup.stag-slide>form {
  1868. position: absolute;
  1869. top: 0;
  1870. height: auto !important;
  1871. overflow: hidden;
  1872. border-radius: 5px;
  1873. transition: none;
  1874. border: 1px solid #aaa;
  1875. }
  1876. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1877. position: static;
  1878. }
  1879. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1880. max-width: 632pt;
  1881. }
  1882. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1883. border: 0;
  1884. /*background: transparent;*/
  1885. }
  1886. .ticket-popup .hide-inside-ticket-popup {
  1887. display: none !important;
  1888. }
  1889. .ticket-popup .disable-inside-ticket-popup {
  1890. pointer-events: none !important;
  1891. opacity: 0.5;
  1892. }
  1893. .fill-percent-value {
  1894. width: 60px;
  1895. }
  1896. .fill-percent-content {
  1897. width: 100px;
  1898. }
  1899. .fill-bar {
  1900. height: 20px !important;
  1901. border: 1px solid #ddd;
  1902. }
  1903. .if-in-clinic {
  1904. display: none;
  1905. }
  1906. .stag-table-container {
  1907. max-height: calc(100vh - 230px - 1rem);
  1908. width: 100%;
  1909. overflow: auto !important;
  1910. }
  1911. .stag-table-container-lg>table{
  1912. min-width: 1450px;
  1913. }
  1914. .stag-table-container.stag-table-container-no-x-scroll {
  1915. overflow-x: hidden !important;
  1916. }
  1917. .stag-fc-container .fc-toolbar-title .tz-display {
  1918. font-size: inherit;
  1919. font-family: inherit;
  1920. }
  1921. .caremonth-measurements-calendar .fc-event.m-weight {
  1922. background: #38908f;
  1923. color: #fff;
  1924. padding-left: 5px;
  1925. margin-bottom: 2px;
  1926. }
  1927. .caremonth-measurements-calendar .fc-event.m-bp {
  1928. background: #5e96ae;
  1929. color: #fff;
  1930. padding-left: 5px;
  1931. margin-bottom: 2px;
  1932. }
  1933. .caremonth-measurements-calendar .fc-event.m-weight *,
  1934. .caremonth-measurements-calendar .fc-event.m-bp *{
  1935. font-size: 10px !important;
  1936. }
  1937. .caremonth-measurements-calendar .fc-daygrid-event-dot {
  1938. display: none;
  1939. }
  1940. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1941. width: 100%;
  1942. border: 0 !important;
  1943. }
  1944. .caremonth-measurements-calendar>.ui-datepicker-inline {
  1945. width: 100%;
  1946. }
  1947. .caremonth-measurements-calendar .ui-datepicker-prev,
  1948. .caremonth-measurements-calendar .ui-datepicker-next {
  1949. display: none;
  1950. }
  1951. #simpleSMSReminderComponent input[type="time"] {
  1952. /* max-width: 90px; */
  1953. min-width: unset !important;
  1954. margin-top: 5px;
  1955. }
  1956. form.non-interactive .form-content {
  1957. opacity: 0.5;
  1958. cursor: not-allowed;
  1959. }
  1960. form.non-interactive .form-content * {
  1961. pointer-events: none;
  1962. }
  1963. #eventPros {
  1964. max-height: 28px;
  1965. opacity: 0;
  1966. }
  1967. .training-event {
  1968. position: relative;
  1969. background: #f0feff;
  1970. border-color: #32a2b89e !important;
  1971. }
  1972. .training-event::after {
  1973. position: absolute;
  1974. content: 'Training';
  1975. font-size: 10px;
  1976. font-weight: normal;
  1977. color: #17a2b8;
  1978. left: 1px;
  1979. bottom: -13px;
  1980. transform-origin: left top;
  1981. transform: rotate(
  1982. -90deg
  1983. );
  1984. width: 90px;
  1985. text-align: center;
  1986. letter-spacing: 0.75px;
  1987. }
  1988. .training-event .training-icon {
  1989. font-size: 22px;
  1990. color: #0d59af;
  1991. }
  1992. .training-event .patient-avatar {
  1993. border-color: #0d59af7d !important;
  1994. }
  1995. /* print-note */
  1996. @media print {
  1997. .stag-content #sidebarMenu {
  1998. display: none !important;
  1999. }
  2000. .stag-content .main-row {
  2001. padding-left: 0 !important;
  2002. }
  2003. .stag-content [moe] {
  2004. display: none !important;
  2005. }
  2006. .stag-content .screen-only {
  2007. display: none !important;
  2008. }
  2009. }
  2010. @media screen {
  2011. .stag-content .print-only {
  2012. display: none !important;
  2013. }
  2014. }
  2015. .child-sections>.note-section:not(.edit) {
  2016. position: relative;
  2017. }
  2018. .child-sections>.note-section:not(.edit):before {
  2019. content: '';
  2020. width: 9px;
  2021. border-top: 1px solid #ccc;
  2022. left: 0;
  2023. top: calc(1rem + 8px);
  2024. height: 1px;
  2025. position: absolute;
  2026. }
  2027. .child-sections>.note-section.edit {
  2028. margin-left: 1rem;
  2029. }
  2030. .rhs-absolute-fh-link {
  2031. position: absolute;
  2032. right: 0;
  2033. padding: 0 0.5rem;
  2034. background-color: inherit;
  2035. }
  2036. .mcp-theme-1 .click-to-copy {
  2037. background-color: #e4f7ed36;
  2038. cursor: copy;
  2039. border-bottom: 1px dotted #c0f7e86e;
  2040. }
  2041. .mcp-theme-1 .click-to-copy:hover {
  2042. border-bottom: 1px dotted #c0f7e8;
  2043. }
  2044. [data-type="removed"] {
  2045. color: gray;
  2046. font-style: italic;
  2047. }
  2048. [data-type="existing"] {
  2049. }
  2050. [data-type="updated"] {
  2051. font-weight: bold;
  2052. color: #d8a714;
  2053. }
  2054. [data-type="prescribed today"] {
  2055. font-weight: bold;
  2056. color: #2ea745
  2057. }
  2058. .process-notes-badge {
  2059. border: 1px solid #ddd;
  2060. cursor: pointer;
  2061. padding: 0.35rem 0.6rem;
  2062. border-radius: 4px;
  2063. text-decoration: none !important;
  2064. }
  2065. .process-notes-badge:hover {
  2066. color: #000 !important;
  2067. border-color: #349caf;
  2068. }
  2069. .process-notes-badge.active {
  2070. /*font-weight: bold;*/
  2071. color: #fff !important;
  2072. background: #349caf;
  2073. border-color: #349caf;
  2074. }
  2075. .process-notes-badge.success {
  2076. font-weight: bold;
  2077. color: #fff !important;
  2078. background: #31b574;
  2079. border-color: #31b574;
  2080. cursor: auto;
  2081. }
  2082. .process-notes-badge.error {
  2083. font-weight: bold;
  2084. color: #fff !important;
  2085. background: #a72132;
  2086. border-color: #a72132;
  2087. cursor: auto;
  2088. }
  2089. /*
  2090. .process-notes-badge {
  2091. position: relative;
  2092. }
  2093. .process-notes-badge:after {
  2094. position: absolute;
  2095. content: attr(data-index);
  2096. top: -14px;
  2097. left: 10px;
  2098. background: #fff;
  2099. border: 1px solid;
  2100. width: 20px;
  2101. text-align: center;
  2102. border-radius: 100%;
  2103. }*/
  2104. .no-overflow-menu {
  2105. overflow-y: auto;
  2106. max-height: calc(100vh - 44px);
  2107. }
  2108. .zero-height-field {
  2109. height: 1px !important;
  2110. opacity: 0 !important;
  2111. pointer-events: none;
  2112. position: absolute;
  2113. }
  2114. table.dashboard-stats-table th {
  2115. padding: 0.5rem 0.75rem
  2116. }
  2117. .max-height-200px {
  2118. max-height: 200px;
  2119. }
  2120. .min-height-300px {
  2121. min-height: 300px;
  2122. }
  2123. .max-height-400px {
  2124. max-height: 400px;
  2125. }
  2126. .min-height-500px {
  2127. min-height: 500px;
  2128. }
  2129. .inline-html-container p {
  2130. margin-bottom: 0;
  2131. }
  2132. body.in-iframe>.navbar {
  2133. display: none !important;
  2134. }
  2135. body.in-iframe .stag-content {
  2136. padding-top: 0 !important;
  2137. }
  2138. body.in-iframe .main-row > .sidebar {
  2139. top: 0;
  2140. height: 100%;
  2141. }
  2142. .hide-outside-popup {
  2143. display: none !important;
  2144. }
  2145. .stag-popup .hide-outside-popup {
  2146. display: block !important;
  2147. }
  2148. .stag-popup .hide-inside-popup {
  2149. display: none !important;
  2150. }
  2151. .strike-through {
  2152. text-decoration: line-through;
  2153. }
  2154. .visit-segment .strike-through {
  2155. color: #8b1621 !important;
  2156. text-decoration: none !important;
  2157. opacity: 0.9;
  2158. }
  2159. /* visit-moe */
  2160. [visit-moe] [url]:not([show]){
  2161. display: none;
  2162. }
  2163. [visit-moe] {
  2164. display: inline-block;
  2165. }
  2166. [visit-moe][relative] {
  2167. position: relative;
  2168. }
  2169. [visit-moe] [url]:not([show]) {
  2170. z-index: 99999;
  2171. position: absolute;
  2172. background-color: white;
  2173. padding: 10px;
  2174. border: 1px solid gray;
  2175. }
  2176. [visit-moe][fixed-center] [url]:not([show]) {
  2177. position: fixed !important;
  2178. top: 200px !important;
  2179. left: calc(50% - 360px) !important;
  2180. width: 720px;
  2181. }
  2182. [visit-moe] [url][right] {
  2183. right: 0;
  2184. min-width: 200px;
  2185. }
  2186. [visit-moe] [url][left] {
  2187. left: 0;
  2188. }
  2189. [visit-moe][large] form, [visit-moe][large] [url] {
  2190. width: 450px;
  2191. }
  2192. [visit-moe][larger] form, [visit-moe][large] [url] {
  2193. width: 600px;
  2194. }
  2195. [visit-moe][largest] form, [visit-moe][largest] [url] {
  2196. width: 750px;
  2197. }
  2198. [visit-moe][bottom] form {
  2199. bottom: 100%;
  2200. }
  2201. .note-container {
  2202. display: flex;
  2203. align-items: start;
  2204. }
  2205. .note-container .note-lhs-tree {
  2206. min-width: 220px;
  2207. max-width: 220px;
  2208. align-self: stretch;
  2209. border-right: 1px solid #ddd;
  2210. padding-top: 0.85rem;
  2211. height: 300px;
  2212. overflow: hidden;
  2213. max-height: calc(100vh - 55px);
  2214. background-color: #fff;
  2215. }
  2216. .note-container .note-lhs-tree:hover {
  2217. overflow: overlay;
  2218. }
  2219. .note-container .note-lhs-tree.fixed, .note-container .note-lhs-tree.fixed-left {
  2220. position: fixed;
  2221. top: 55px;
  2222. max-height: calc(100vh - 55px) !important;
  2223. height: calc(100vh - 55px) !important;
  2224. z-index: 1;
  2225. }
  2226. .note-container .note-lhs-tree.fixed ~ .note-rhs-content {
  2227. margin-left: 220px;
  2228. margin-right: 220px;
  2229. }
  2230. .note-container .note-lhs-tree.fixed-left ~ .note-rhs-content {
  2231. margin-left: 220px;
  2232. }
  2233. .note-container .note-lhs-tree .note-tree-node.note-tree-heading>a {
  2234. }
  2235. .note-container .note-lhs-tree .note-tree-node>a {
  2236. display: block;
  2237. padding: 0.15rem 0;
  2238. padding-left: 0.75rem;
  2239. white-space: nowrap;
  2240. text-overflow: ellipsis;
  2241. overflow: hidden;
  2242. text-decoration: none;
  2243. color: #333;
  2244. }
  2245. .note-container .note-lhs-tree>.note-tree-node>a:not([data-non-segment-target]) {
  2246. color: #333;
  2247. }
  2248. .note-container .note-lhs-tree .note-tree-node>a:hover {
  2249. background-color: aliceblue;
  2250. color: #0d59af !important;
  2251. }
  2252. .note-container .note-lhs-tree .note-tree-node:hover>a,
  2253. .note-container .note-lhs-tree .note-tree-node.hovered>a {
  2254. background-color: aliceblue;
  2255. }
  2256. .note-container .note-lhs-tree .note-tree-node.active>a {
  2257. font-weight: bold !important;
  2258. color: #0d59af !important;
  2259. }
  2260. .note-container .note-lhs-tree .note-tree-children>.note-tree-node>a {
  2261. padding-left: 2rem;
  2262. }
  2263. .note-container .note-lhs-tree .note-tree-children .note-tree-children>.note-tree-node>a {
  2264. padding-left: 4rem;
  2265. }
  2266. .note-container .note-rhs-content {
  2267. flex-grow: 1;
  2268. }
  2269. .note-container .segments-list .note-content-node>a {
  2270. display: block;
  2271. padding: 0.15rem 0;
  2272. padding-left: 0.75rem;
  2273. white-space: nowrap;
  2274. text-overflow: ellipsis;
  2275. overflow: hidden;
  2276. text-decoration: none;
  2277. color: #333;
  2278. }
  2279. .note-container .segments-list>.note-content-node>a:not([data-non-segment-target]) {
  2280. font-weight: bold;
  2281. color: #333;
  2282. }
  2283. .note-container .segments-list .note-content-node>a:hover {
  2284. background-color: aliceblue;
  2285. color: #0d59af !important;
  2286. }
  2287. .note-container .segments-list .note-content-node:hover>a,
  2288. .note-container .segments-list .note-content-node.hovered>a {
  2289. background-color: aliceblue;
  2290. }
  2291. .note-container .segments-list .note-content-node.active>a {
  2292. font-weight: bold !important;
  2293. color: #0d59af !important;
  2294. }
  2295. .note-container .segments-list .note-content-children>.note-content-node>a {
  2296. padding-left: 2rem;
  2297. }
  2298. .note-container .segments-list .note-content-children .note-content-children>.note-tree-node>a {
  2299. padding-left: 4rem;
  2300. }
  2301. .note-container .note-rhs-sidebar {
  2302. min-width: 220px;
  2303. max-width: 220px;
  2304. align-self: stretch;
  2305. border-right: 1px solid #ddd;
  2306. border-left: 1px solid #ddd;
  2307. height: 300px;
  2308. overflow: hidden;
  2309. max-height: calc(100vh - 55px);
  2310. background-color: #fff;
  2311. }
  2312. .note-container .note-rhs-sidebar:hover {
  2313. overflow: overlay;
  2314. }
  2315. .note-container .note-rhs-sidebar.fixed {
  2316. position: fixed;
  2317. top: 55px;
  2318. right: 0;
  2319. max-height: calc(100vh - 55px) !important;
  2320. height: calc(100vh - 55px) !important;
  2321. z-index: 1;
  2322. }
  2323. .note-container .note-rhs-sidebar.fixed ~ .note-rhs-content {
  2324. margin-right: 220px;
  2325. }
  2326. .spot-highlight {
  2327. background: aliceblue !important;
  2328. }
  2329. .on-click-menu [menu] {
  2330. position: absolute;
  2331. display: none;
  2332. top: 100%;
  2333. right: 0;
  2334. z-index: 1;
  2335. box-shadow: 0 0 4px #ccc;
  2336. }
  2337. .on-click-menu [menu][right] {
  2338. right: auto;
  2339. left: 0;
  2340. }
  2341. .on-click-menu [menu][bottom] {
  2342. bottom: 100%;
  2343. top: auto;
  2344. left: 0;
  2345. right: auto;
  2346. }
  2347. .zero-height {
  2348. height: 0 !important;
  2349. padding: 0 !important;
  2350. border: 0 !important;
  2351. overflow: hidden;
  2352. }
  2353. /*.note-section[data-segment-template-name="medrisk_vigilence"] {
  2354. position: fixed;
  2355. right: 0;
  2356. top: 55px;
  2357. width: 40px;
  2358. height: calc(100vh - 54px);
  2359. background: aliceblue;
  2360. padding: 0 !important;
  2361. border-left: 1px solid #ddd;
  2362. transition: width 0.1s ease;
  2363. }*/
  2364. .on-trigger-only,
  2365. .on-content-only {
  2366. display: none !important;
  2367. }
  2368. .mrv-trigger .on-trigger-only,
  2369. .mrv-content .on-content-only {
  2370. display: inherit !important;
  2371. }
  2372. .mrv-badge {
  2373. border-radius: 100%;
  2374. height: 24px;
  2375. width: 24px;
  2376. min-height: 24px;
  2377. min-width: 24px;
  2378. max-height: 24px;
  2379. max-width: 24px;
  2380. text-align: center;
  2381. font-weight: 400;
  2382. display: flex;
  2383. align-items: center;
  2384. justify-content: center;
  2385. background-color: #6457f9;
  2386. color: #fff;
  2387. opacity: 0.85;
  2388. }
  2389. .mrv-badge>span {
  2390. font-size: 10px !important;
  2391. }
  2392. .note-bottom-toolbar {
  2393. bottom: 0;
  2394. z-index: 3;
  2395. }
  2396. .note-bottom-toolbar .nbt-container:hover {
  2397. cursor: pointer;
  2398. background: #fff !important;
  2399. }
  2400. [open-in-stag-popup] * {
  2401. pointer-events: none;
  2402. }
  2403. .stag-menu {
  2404. position: absolute;
  2405. z-index: 4;
  2406. }
  2407. .visit-segment .mcp-theme-1 .ql-editor[contenteditable] {
  2408. min-height: 200px;
  2409. }
  2410. .visit-segment .mcp-theme-1 [short] .ql-editor[contenteditable] {
  2411. min-height: 100px !important;
  2412. }
  2413. .visit-segment tr .vitals-copy-trigger {
  2414. position: absolute;
  2415. top: 0;
  2416. left: -10px;
  2417. width: 20px;
  2418. height: 100%;
  2419. align-items: center;
  2420. justify-content: center;
  2421. display: none;
  2422. cursor: pointer;
  2423. text-decoration: none !important;
  2424. }
  2425. .visit-segment tr:hover .vitals-copy-trigger {
  2426. display: flex;
  2427. }
  2428. [tab-links] {
  2429. }
  2430. [tab-links] [tab-link] {
  2431. padding: 0.5rem 0.75rem;
  2432. border: 1px solid #ccc;
  2433. color: #222;
  2434. background: #eee;
  2435. text-decoration: none;
  2436. }
  2437. [tab-links] [tab-link]:not(:last-child) {
  2438. border-right: 0;
  2439. }
  2440. [tab-links] [tab-link]:not(.tab-link-active):hover {
  2441. background: #f7f7f7;
  2442. }
  2443. [tab-links] [tab-link].tab-link-active {
  2444. font-weight: bold;
  2445. background: #fff;
  2446. }
  2447. tr.relevant-to-visit td:nth-child(1) {
  2448. color: #17a2b8;
  2449. }
  2450. .autosave-indicator {
  2451. display: none;
  2452. }
  2453. .autosave-indicator.show {
  2454. display: block;
  2455. }
  2456. table .stag-filter-hide {
  2457. display: none !important;
  2458. }
  2459. table .stag-filter-highlight {
  2460. background: rgb(255 215 215);
  2461. }
  2462. .event-bg-green {
  2463. background-color: #f6ffeb;
  2464. }
  2465. .event-bg-gray {
  2466. background-color: #ececec;
  2467. }
  2468. .popover-header {
  2469. padding: 3px 10px;
  2470. font-size: 13px;
  2471. font-weight: bold;
  2472. }
  2473. .popover-body {
  2474. font-size: 13px;
  2475. }
  2476. td.row-selection-highlight {
  2477. position: relative;
  2478. }
  2479. td.row-selection-highlight:after {
  2480. content: '';
  2481. position: absolute;
  2482. top: 0;
  2483. left: -4px;
  2484. width: 4px;
  2485. height: 100%;
  2486. background-color: #0d59af;
  2487. border-top-left-radius: 2px;
  2488. border-bottom-left-radius: 2px;
  2489. }
  2490. /* stag-collapsible-card */
  2491. [stag-collapsible-card] .stag-collapse-trigger {
  2492. padding: 0;
  2493. width: 22px;
  2494. align-self: stretch;
  2495. margin-right: -11px;
  2496. align-items: center;
  2497. justify-content: center;
  2498. display: inline-flex;
  2499. border-radius: 2px;
  2500. }
  2501. [stag-collapsible-card] .stag-collapse-trigger:hover {
  2502. text-decoration: none !important;
  2503. background: #4441;
  2504. }
  2505. [stag-collapsible-card] .stag-collapse-trigger i {
  2506. display: none;
  2507. }
  2508. [stag-collapsible-card][collapsed] .stag-collapse-trigger i.if-collapsed {
  2509. display: block;
  2510. }
  2511. [stag-collapsible-card]:not([collapsed]) .stag-collapse-trigger i.if-not-collapsed {
  2512. display: block;
  2513. }
  2514. [stag-collapsible-card][collapsed] .card-body {
  2515. display: none;
  2516. }
  2517. /* lifestyle rx specific */
  2518. .border-top-nutrition-rx {
  2519. border-top: 3px solid #a4d067;
  2520. }
  2521. .border-top-exercise-rx {
  2522. border-top: 3px solid #43c2cb;
  2523. }
  2524. .border-top-behavior-rx {
  2525. border-top: 3px solid #ffa82e;
  2526. }
  2527. .icon-nutrition-rx-md {
  2528. max-height: 22px;
  2529. }
  2530. .icon-nutrition-rx-row {
  2531. max-height: 18px;
  2532. }
  2533. .icon-nutrition-rx-row-sm {
  2534. max-height: 14px;
  2535. }
  2536. .table td.fit,
  2537. .table th.fit {
  2538. white-space: nowrap;
  2539. width: 1%;
  2540. }
  2541. table.table-cage {
  2542. border: 0px;
  2543. color: #2b4259;
  2544. }
  2545. table.table-cage tr:first-child td {
  2546. border-top: 0;
  2547. }
  2548. table.table-cage tr:last-child td {
  2549. border-bottom: 0;
  2550. }
  2551. table.table-cage tr td:first-child {
  2552. border-left: 0;
  2553. }
  2554. table.table-cage tr td:last-child {
  2555. border-right: 0;
  2556. border-left: 0 !important;
  2557. }
  2558. table.table-cage tr td:nth-last-child(2) {
  2559. border-right: 0 !important;
  2560. }
  2561. table.table-xs tr td {
  2562. padding: 0.15rem;
  2563. }
  2564. [if-edit-mode], [if-read-mode] {
  2565. display: none;
  2566. }
  2567. .edit [if-edit-mode] {
  2568. display: block;
  2569. }
  2570. .read [if-read-mode] {
  2571. display: block;
  2572. }
  2573. /* colored radios */
  2574. .rspace input[type="radio"][value="-"]:checked,
  2575. .rspace input[type="radio"][value="+"]:checked{
  2576. position: relative;
  2577. }
  2578. .rspace input[type="radio"][value="-"]:checked:before,
  2579. .rspace input[type="radio"][value="+"]:checked:before,
  2580. .rspace input[type="radio"][value="-"]:checked:after,
  2581. .rspace input[type="radio"][value="+"]:checked:after{
  2582. content: '';
  2583. position: absolute;
  2584. border-radius: 100%;
  2585. background:#fff;
  2586. }
  2587. .rspace input[type="radio"][value="-"]:checked:before,
  2588. .rspace input[type="radio"][value="+"]:checked:before{
  2589. top: 0;
  2590. left: 0;
  2591. width: 100%;
  2592. height: 100%;
  2593. }
  2594. .rspace input[type="radio"][value="-"]:checked:after,
  2595. .rspace input[type="radio"][value="+"]:checked:after{
  2596. top: 3px;
  2597. left: 3px;
  2598. width: calc(100% - 6px);
  2599. height: calc(100% - 6px);
  2600. }
  2601. .rspace input[type="radio"][value="-"]:checked:before {
  2602. border: 1px solid #e7848f;
  2603. }
  2604. .rspace input[type="radio"][value="+"]:checked:before {
  2605. border: 1px solid #2d9f2d91;
  2606. }
  2607. .rspace input[type="radio"][value="-"]:checked:after {
  2608. background-color: #e7848f;
  2609. }
  2610. .rspace input[type="radio"][value="+"]:checked:after {
  2611. background-color: #2d9f2d91;
  2612. }
  2613. @page
  2614. {
  2615. margin: 10mm 10mm 10mm 10mm;
  2616. }
  2617. .note-left-panel ~ .v-split {
  2618. height: 100%;
  2619. background: #DDD;
  2620. opacity: 1;
  2621. z-index: 2;
  2622. margin-left: -3px;
  2623. border-radius: 0;
  2624. margin-top: 0;
  2625. width: 6px;
  2626. }
  2627. .stag-scrollbar {
  2628. overflow: overlay;
  2629. }
  2630. .stag-scrollbar .stag-scrollbar-horiz-container {
  2631. position: fixed;
  2632. left: 849px;
  2633. bottom: 35px;
  2634. width: 633px;
  2635. height: 7px;
  2636. /*background: #aaa3;*/
  2637. transition: opacity 0.2s ease;
  2638. opacity: 0;
  2639. }
  2640. .stag-scrollbar[stag-h-scrollbar]:hover .stag-scrollbar-horiz-container,
  2641. body.stag-scrollbar-scrolling .stag-scrollbar[stag-h-scrollbar] .stag-scrollbar-horiz-container {
  2642. opacity: 1;
  2643. }
  2644. .stag-scrollbar .stag-scrollbar-horiz-tracker {
  2645. height: 7px;
  2646. background: #ddd;
  2647. border-radius: 10px;
  2648. }
  2649. .stag-scrollbar .stag-scrollbar-horiz-tracker:hover {
  2650. background: #ccc;
  2651. cursor: ew-resize;
  2652. }
  2653. .form-read-mode textarea, .form-read-mode input[type="text"] {
  2654. background: transparent;
  2655. border: 0;
  2656. padding: 0;
  2657. }
  2658. .conditions-tree {
  2659. /*padding: 0.5rem;*/
  2660. }
  2661. .conditions-tree .condition>a {
  2662. display: block;
  2663. padding: 3px 5px;
  2664. }
  2665. .conditions-tree .condition-children {
  2666. padding-left: 22px;
  2667. margin-left: -4px;
  2668. margin-top: -10px;
  2669. padding-top: 10px;
  2670. }
  2671. /* tree lines CSS */
  2672. .conditions-tree {
  2673. margin-left: 10px;
  2674. }
  2675. .conditions-tree .condition {
  2676. position: relative;
  2677. }
  2678. .conditions-tree .condition>a {
  2679. position: relative;
  2680. display: block;
  2681. padding-left: 9px;
  2682. white-space: nowrap;
  2683. text-overflow: ellipsis;
  2684. }
  2685. .conditions-tree .condition>a:before {
  2686. position: absolute;
  2687. content: '';
  2688. left: -7px;
  2689. background: url(/img/node.png);
  2690. width: 8px;
  2691. height: 7px;
  2692. background-size: 100% 100%;
  2693. top: calc(50% - 4px);
  2694. }
  2695. .conditions-tree .condition-children .condition>a:after {
  2696. position: absolute;
  2697. content: '';
  2698. left: -92px;
  2699. border-top: 1px solid #aaa;
  2700. width: 90px;
  2701. top: calc(50% - 1px);
  2702. }
  2703. .conditions-tree .condition-children .condition>a>.rm-count:after {
  2704. position: absolute;
  2705. content: '';
  2706. left: -22px;
  2707. border-left: 1px solid #aaa;
  2708. height: 200px;
  2709. bottom: 50%;
  2710. }
  2711. .conditions-tree .condition-children {
  2712. overflow: hidden;
  2713. }
  2714. table.stag-compact-grid>tbody>tr>td {
  2715. white-space: nowrap;
  2716. max-height: 1rem !important;
  2717. }
  2718. table.stag-compact-grid>tbody>tr>td>ul>li {
  2719. display: none;
  2720. }
  2721. table.stag-compact-grid>tbody>tr>td ul>li:nth-child(1) {
  2722. display: block;
  2723. margin-left: 0 !important;
  2724. }
  2725. table.stag-compact-grid>tbody>tr>td .alert {
  2726. padding: 0;
  2727. margin: 0;
  2728. }
  2729. table.stag-compact-grid>tbody>tr>td table>thead,
  2730. table.stag-compact-grid>tbody>tr>td table>tbody tr{
  2731. display: none;
  2732. }
  2733. table.stag-compact-grid>tbody>tr>td table>tbody tr:nth-child(1) {
  2734. display: table-row;
  2735. }
  2736. table.stag-compact-grid>tbody>tr>td {
  2737. border-left: 1px solid #ddd;
  2738. }
  2739. table.stag-compact-grid>tbody>tr>td:first-child {
  2740. border-left: 0;
  2741. }
  2742. table tr td [if-details-view] {
  2743. display: block;
  2744. }
  2745. table tr td [if-grid-view] {
  2746. display: none;
  2747. }
  2748. table.stag-compact-grid>tbody>tr>td [if-details-view] {
  2749. display: none;
  2750. }
  2751. table.stag-compact-grid>tbody>tr>td [if-grid-view] {
  2752. display: block;
  2753. }
  2754. .segment-template-summary-value {
  2755. font-weight: bold;
  2756. text-decoration: underline;
  2757. margin-left: 10px;
  2758. }
  2759. .stat-tree .v-split {
  2760. width: 6px;
  2761. margin-left: -3px;
  2762. margin-top: 0;
  2763. height: 100%;
  2764. border-radius: 0;
  2765. }
  2766. .tree-column-header.has-changes {
  2767. background: #ffeeee !important;
  2768. }
  2769. .stat-tree-view .stat-tree-node {
  2770. padding: 0.1rem 0.3rem;
  2771. }
  2772. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2773. padding-left: 1.5rem
  2774. }
  2775. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2776. padding-left: 2.6rem;
  2777. }
  2778. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2779. padding-left: 3.7rem;
  2780. }
  2781. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2782. padding-left: 4.8rem;
  2783. }
  2784. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2785. padding-left: 5.9rem;
  2786. }
  2787. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2788. padding-left: 7rem;
  2789. }
  2790. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2791. padding-left: 8.1rem;
  2792. }
  2793. .stat-tree-view>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node+.stat-tree-children>.stat-tree-node {
  2794. padding-left: 9.2rem;
  2795. }
  2796. .stat-tree-user-view .stat-tree-anchor {
  2797. color: rgb(13, 89, 175) !important;
  2798. text-decoration: none;
  2799. }
  2800. /* jstree overrides */
  2801. .stat-tree-view .jstree-wholerow {
  2802. border-bottom: 1px solid #f1f1f1;
  2803. }
  2804. .stat-tree-view .jstree-anchor.has-drop-visualization::after {
  2805. content: attr(data-drop-percent);
  2806. margin-left: 1rem;
  2807. font-size: 70%;
  2808. }
  2809. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-0-25::after {
  2810. color: grey;
  2811. }
  2812. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-26-50::after {
  2813. color: saddlebrown;
  2814. }
  2815. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-51-75::after {
  2816. color: #dc7024;
  2817. }
  2818. .stat-tree-view .jstree-anchor.has-drop-visualization.drop-76-100::after {
  2819. color: red;
  2820. }
  2821. .stat-tree-view .jstree-anchor.has-goal-label::before {
  2822. content: attr(data-goal-label);
  2823. margin-left: auto;
  2824. font-size: 80%;
  2825. color: orangered;
  2826. position: absolute;
  2827. left: calc(100% + 0.75rem);
  2828. font-weight: bold;
  2829. }
  2830. .mv-drop-0-25 {
  2831. color: grey;
  2832. }
  2833. .mv-drop-26-50 {
  2834. color: saddlebrown;
  2835. }
  2836. .mv-drop-51-75 {
  2837. color: #dc7024;
  2838. }
  2839. .mv-drop-76-100 {
  2840. color: red;
  2841. }
  2842. .multi-pro-view .line-count-label {
  2843. display: none;
  2844. }
  2845. .multi-pro-view .multi-pro-stats-table {
  2846. border: 0;
  2847. }
  2848. .multi-pro-view .multi-pro-stats-table tr th {
  2849. height: 22px;
  2850. background: #eee;
  2851. line-height: 22px;
  2852. padding: 0 5px;
  2853. padding-right: 0;
  2854. font-weight: normal;
  2855. color: #777;
  2856. border: 0;
  2857. border-left: 1px solid #e1e1e1;
  2858. width: 120px;
  2859. }
  2860. .multi-pro-view .multi-pro-stats-table tr th .pro-label {
  2861. min-width: 120px;
  2862. max-width: 120px;
  2863. overflow: hidden;
  2864. white-space: nowrap;
  2865. text-overflow: ellipsis;
  2866. }
  2867. .multi-pro-view .multi-pro-stats-table tr td {
  2868. border-top: 0;
  2869. padding: 0 5px;
  2870. border-left: 1px solid #f1f1f1;
  2871. width: 120px;
  2872. }
  2873. .multi-pro-view .multi-pro-stats-table tr th:last-child,
  2874. .multi-pro-view .multi-pro-stats-table tr td:last-child {
  2875. width: auto;
  2876. }
  2877. .multi-pro-view .count-label {
  2878. height: 24px;
  2879. line-height: 24px;
  2880. border-bottom: 1px solid #f1f1f1;
  2881. color: #666;
  2882. display: flex;
  2883. align-items: baseline;
  2884. padding-left: 4px;
  2885. }
  2886. .multi-pro-view .count-label .count {
  2887. white-space: nowrap;
  2888. width: 50%;
  2889. border-right: 1px solid #e7e7e7;
  2890. text-align: right;
  2891. padding-right: 5px;
  2892. }
  2893. .multi-pro-view .count-label .drop-percent {
  2894. font-size: 78%;
  2895. opacity: 0.8;
  2896. margin-left: 5px;
  2897. }
  2898. .multi-pro-view .multi-pro-view-stat-label {
  2899. height: 22px;
  2900. background: #eee;
  2901. line-height: 22px;
  2902. padding: 0 5px;
  2903. font-weight: bold;
  2904. color: #777;
  2905. }
  2906. .multi-pro-view th .mv-delete-pro-trigger {
  2907. position: absolute;
  2908. right: 2px;
  2909. top: 2px;
  2910. width: 16px;
  2911. height: 16px;
  2912. line-height: 16px;
  2913. font-size: 10px;
  2914. text-align: center;
  2915. display: none;
  2916. }
  2917. .multi-pro-view th:hover .mv-delete-pro-trigger {
  2918. display: block;
  2919. }
  2920. body .vakata-context li>a {
  2921. padding: 1px 5px;
  2922. padding-right: 10px;
  2923. line-height: unset;
  2924. font-size: 13px
  2925. }
  2926. body .vakata-context li>a>i {
  2927. display: none;
  2928. }
  2929. body .vakata-context li>a .vakata-contextmenu-sep {
  2930. display: none;
  2931. }
  2932. /*body .clauses-view li>i.jstree-icon {
  2933. display: none;
  2934. }*/
  2935. body #vakata-dnd {
  2936. font-family: Verdana, sans-serif;
  2937. font-size: 12px;
  2938. background: rgba(240, 248, 255, 0.76);
  2939. }
  2940. body .vakata-context .vakata-context-separator>a {
  2941. margin: 0;
  2942. }
  2943. .clause-label-part:not(:last-child)::after {
  2944. content: 'and';
  2945. position: absolute;
  2946. color: #299ab3;
  2947. font-size: 90%;
  2948. left: 100%;
  2949. width: 35px;
  2950. text-align: center;
  2951. }
  2952. .clause-label-part:not(:last-child) {
  2953. position: relative;
  2954. margin-right: 35px !important;
  2955. }
  2956. .phq .btn-select {
  2957. padding: 5px 13px;
  2958. }
  2959. .phq .btn-blank {
  2960. opacity: .5;
  2961. }
  2962. .phq .btn-select:focus,
  2963. .phq .btn-blank:focus {
  2964. box-shadow: none;
  2965. }
  2966. .phq .btn-select.active {
  2967. background-color: #28b4d9;
  2968. color: #fff;
  2969. }
  2970. .phq .plus {
  2971. position: relative;
  2972. }
  2973. .phq .plus::before {
  2974. content: '+';
  2975. position: absolute;
  2976. left: 0
  2977. }
  2978. .phq .table td,
  2979. .phq .table th {
  2980. border-top-color: #000;
  2981. }
  2982. .phq .table thead th {
  2983. border-bottom: 0;
  2984. }
  2985. .page-tabs {
  2986. width: 100%;
  2987. }
  2988. .page-tabs .links {
  2989. width: 100%;
  2990. display: flex;
  2991. align-items: center;
  2992. }
  2993. .page-tabs .links a {
  2994. padding: 5px 10px;
  2995. border: 1px solid #224587;
  2996. border-right: none;
  2997. border-bottom: none;
  2998. font-weight: bold;
  2999. }
  3000. .page-tabs .links a:last-child {
  3001. border-right: 1px solid #224587;
  3002. }
  3003. .page-tabs .links a.active {
  3004. background-color: #224587;
  3005. color: #fff;
  3006. }
  3007. .page-tabs .page-tab {
  3008. border: 1px solid #ddd;
  3009. padding: 10px;
  3010. }
  3011. .table-columns tr:first-child .move-up {
  3012. display: none;
  3013. }
  3014. .table-columns tr:last-child .move-down {
  3015. display: none;
  3016. }
  3017. .table-dnd-on-drag {
  3018. background-color: #fff7de !important;
  3019. box-shadow: 6px 3px 5px #e9e9e9, 0 1px 0 #ccc inset, 0 -1px 0 #ccc inset;
  3020. transition: 0.3s;
  3021. }
  3022. .table-dnd-on-drag td {
  3023. font-weight: bold;
  3024. border-top: none;
  3025. }
  3026. .table-dnd-no-change {
  3027. opacity: 0.5;
  3028. transition: 0.3s;
  3029. }
  3030. .droppable-section-active {
  3031. border: 2px dashed #00bcd4;
  3032. }
  3033. [draggable] {
  3034. cursor:all-scroll;
  3035. }
  3036. body.forced-masking {
  3037. opacity: 0.6 !important;
  3038. }
  3039. body.forced-masking #mask {
  3040. display: block !important;
  3041. }
  3042. [stag-title] {
  3043. position: relative;
  3044. }
  3045. [stag-title]:hover:after {
  3046. content: attr(stag-title);
  3047. position: absolute;
  3048. bottom: 100%;
  3049. left: 0;
  3050. background: #f7f7f7;
  3051. border: 1px solid #d7d7d7;
  3052. border-left: 0;
  3053. color: #888;
  3054. text-align: center;
  3055. font-size: 80%;
  3056. font-weight: normal;
  3057. padding: 1px 3px;
  3058. z-index: 1;
  3059. }
  3060. .post-refresh-highlight {
  3061. background: #cbf4f0 !important;
  3062. }
  3063. .wrapping-pre-container pre {
  3064. white-space: normal !important;
  3065. }
  3066. [data-segment-template-name="plan_free_text_v2"] pre {
  3067. white-space: normal !important;
  3068. }
  3069. .note-container.note_template_omega_soap_visit .mcp-theme-1 .ql-editor[contenteditable] {
  3070. min-height: 100px;
  3071. }
  3072. .note-container.note_template_omega_soap_visit .spot-highlight>.bg-light {
  3073. background: aliceblue !important;
  3074. }
  3075. .note-section.visit-segment.refreshing {
  3076. opacity: 0.6;
  3077. position: relative;
  3078. }
  3079. .note-section.visit-segment.refreshing::after {
  3080. position: absolute;
  3081. content: '';
  3082. top: 0;
  3083. left: 0;
  3084. width: 100%;
  3085. height: 100%;
  3086. background-image: url(/vanillaspin.gif);
  3087. background-repeat: no-repeat;
  3088. background-position: center center;
  3089. background-size: 20px;
  3090. z-index: 9999;
  3091. }
  3092. /* toggle checkboxes */
  3093. .mcp-theme-1 input[type="checkbox"][toggle] {
  3094. position: relative;
  3095. appearance: none;
  3096. width: 28px;
  3097. height: 16px;
  3098. background: #666;
  3099. border-radius: 16px;
  3100. cursor: pointer;
  3101. }
  3102. .mcp-theme-1 input[type="checkbox"][toggle]:checked {
  3103. background: var(--primary-color);
  3104. }
  3105. .mcp-theme-1 input[type="checkbox"][toggle]:after {
  3106. content: '';
  3107. position: absolute;
  3108. background: #fff;
  3109. border-radius: 100%;
  3110. height: 12px;
  3111. width: 12px;
  3112. left: 2px;
  3113. top: 2px;
  3114. transition: left 0.1s ease;
  3115. }
  3116. .mcp-theme-1 input[type="checkbox"][toggle]:checked:after {
  3117. background: #fff;
  3118. left: 14px;
  3119. }
  3120. .mcp-theme-1 input[type="checkbox"][toggle][disabled] {
  3121. opacity: 0.5;
  3122. cursor: not-allowed;
  3123. }
  3124. .inline-input-underlined {
  3125. border: none;
  3126. border-bottom: 1px solid #ced4da;
  3127. padding: 0;
  3128. text-align: center;
  3129. font-weight: bold;
  3130. }
  3131. .inline-input-underlined:focus {
  3132. outline: none;
  3133. box-shadow: none;
  3134. }
  3135. .inline-input-underlined.width-50 {
  3136. width: 50px;
  3137. }
  3138. .note_template_omega_soap_visit .system_segment .d-flex.border-bottom:last-of-type {
  3139. border-bottom: 0 !important;
  3140. }
  3141. .note-signed-by-hcp .hide-if-note-signed {
  3142. display: none !important;
  3143. }
  3144. .show-if-note-signed {
  3145. display: none !important;
  3146. }
  3147. .note-signed-by-hcp .show-if-note-signed {
  3148. display: block !important;
  3149. }
  3150. .customized-form {
  3151. width: 100%;
  3152. padding: 15px 0;
  3153. font-size: 0.9rem;
  3154. }
  3155. .customized-form .container {}
  3156. .customized-form .form-control {
  3157. border: none;
  3158. border-bottom: 1px solid #333;
  3159. border-radius: 0;
  3160. height: 25px;
  3161. padding: 0;
  3162. background-color: transparent;
  3163. }
  3164. .customized-form .form-control:focus {
  3165. outline: none;
  3166. box-shadow: none;
  3167. }
  3168. .customized-form .form-control.inline {
  3169. width: auto;
  3170. padding: 0 10px;
  3171. }
  3172. .customized-form textarea.form-control {
  3173. width: 100% !important;
  3174. }
  3175. .customized-form form .row .section.bg-light {
  3176. padding-top: 1rem;
  3177. margin-bottom: 1rem;
  3178. }
  3179. .customized-form .unified-checks {
  3180. display: flex;
  3181. flex-wrap: wrap;
  3182. }
  3183. .customized-form .unified-checks.flex-basis-20 > div {
  3184. flex-basis: 20%;
  3185. }
  3186. .customized-form .unified-checks.flex-basis-23>div.form-check {
  3187. flex-basis: 23%;
  3188. }
  3189. .customized-form .unified-checks.flex-basis-25>div.form-check {
  3190. flex-basis: 25%;
  3191. }
  3192. .customized-form .unified-checks.flex-basis-31>div.form-check {
  3193. flex-basis: 31%;
  3194. }
  3195. .customized-form .unified-checks.flex-basis-30 > div {
  3196. flex-basis: 30%;
  3197. }
  3198. .customized-form .form-check-inline .form-check-input[type="radio"] {
  3199. margin-top: -3px;
  3200. }