style.css 58 KB

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