style.css 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751
  1. :root {
  2. --w-70: 70%;
  3. --primary-color: #1c4587;
  4. --bg-grey: #EDEEF1;
  5. }
  6. /* login css */
  7. .login-container {
  8. background-color: var(--bg-grey);
  9. }
  10. .login-header {
  11. font-size: 30px;
  12. font-weight: 100;
  13. }
  14. .login-form {
  15. padding: 50px;
  16. }
  17. .login-form label {
  18. font-size: 14px;
  19. color: #454859;
  20. }
  21. .login-form .form-control {
  22. height: calc(1.5em + 0.75rem + 0.3px);;
  23. }
  24. .bg-holder {
  25. background-image: url(/login-rhs.jpg);
  26. background-size: cover;
  27. }
  28. .login-container .logo {
  29. font-size: 35px;
  30. font-weight: 800;
  31. color: rgb(13, 89, 175);
  32. }
  33. .login-container small {
  34. font-size: 12px;
  35. color: #999;
  36. }
  37. /* end of login */
  38. .w-70 {
  39. width: var(--w-70);
  40. }
  41. .text-warning-mellow {
  42. color: #d8a714!important;
  43. }
  44. .text-link {
  45. color: rgb(13, 89, 175) !important;
  46. }
  47. .stag-primary-bg {
  48. background-color: var(--primary-color) !important;
  49. color: #fff;
  50. }
  51. .stag-primary-border {
  52. border-color: var(--primary-color) !important;
  53. }
  54. .navbar-brand {
  55. font-size: 16px !important;
  56. font-weight: 600;
  57. }
  58. .navbar-brand>img {
  59. max-width: 160px;
  60. }
  61. .sidebar .nav-link {
  62. padding: .25rem 1rem;
  63. }
  64. .sidebar .nav-item {
  65. margin-right: 0;
  66. }
  67. .sidebar .nav-item .nav-child-list {
  68. list-style: none;
  69. }
  70. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  71. padding-left: 2rem;
  72. }
  73. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  74. display: none;
  75. }
  76. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  77. display: block;
  78. }
  79. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  80. display: block;
  81. }
  82. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  83. display: none;
  84. }
  85. .navbar-dark .nav-item .nav-link {
  86. color: #fff;
  87. }
  88. .dropdown-menu {
  89. margin-top: 7px;
  90. border-radius: 0;
  91. min-width: 120px;
  92. }
  93. .dropdown-item:not(:last-child) {
  94. border-bottom:1px solid #ddd;
  95. }
  96. main {
  97. padding:0 1rem;
  98. }
  99. /* ability to toggle the video pane (rhs) */
  100. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  101. position: fixed;
  102. bottom: 0;
  103. right: 0;
  104. padding: 0.25rem 0.75rem;
  105. border-top-left-radius: 6px;
  106. background-color: var(--primary-color);
  107. color: #fff;
  108. z-index: 2;
  109. }
  110. body.stag_rhs_collapsed .v-split,
  111. body.stag_rhs_collapsed .app-right-panel {
  112. display: none !important;
  113. }
  114. .delete-column {
  115. width: 120px;
  116. }
  117. .m-negator {
  118. margin-left: -1.25rem !important;
  119. margin-right: -1.25rem !important;
  120. }
  121. .pl-3-5 {
  122. padding-left: 1.25rem !important;
  123. }
  124. .lh-24px {
  125. height: 24px;
  126. line-height: 24px;
  127. }
  128. .mcp-theme-1 *:not(i) {
  129. font-family: Verdana, sans-serif;
  130. font-size: 12px;
  131. }
  132. .mcp-theme-1 .font-size-11 {
  133. font-size: 11px;
  134. }
  135. .mcp-theme-1 .font-size-13 {
  136. font-size: 13px;
  137. }
  138. .mcp-theme-1 .font-size-14 {
  139. font-size: 14px;
  140. }
  141. .mcp-theme-1 .font-size-16 {
  142. font-size: 16px;
  143. }
  144. .mcp-theme-1 .font-underline {
  145. text-decoration: underline;
  146. }
  147. .mcp-theme-1 .on-hover-opaque {
  148. opacity: 0.6;
  149. }
  150. .mcp-theme-1 .on-hover-opaque:hover {
  151. opacity: 1;
  152. }
  153. .mcp-theme-1 .opacity-60 {
  154. opacity: .6;
  155. }
  156. .mcp-theme-1 .overflow-visible {
  157. overflow: visible;
  158. }
  159. .mcp-theme-1 .text-secondary-light {
  160. color: #c9ddef !important;
  161. }
  162. .mcp-theme-1 a, .mcp-theme-1 a:link {
  163. color: rgb(13, 89, 175);
  164. }
  165. .mcp-theme-1 .btn.btn-primary {
  166. background: rgb(13, 89, 175);
  167. border-color: rgb(13, 89, 175);
  168. box-shadow: none;
  169. }
  170. #sidebarMenu .mcp-theme-1 .nav-item {
  171. margin: 0;
  172. }
  173. #sidebarMenu .mcp-theme-1 .nav-link:hover {
  174. background: #e3e3e394;
  175. }
  176. #sidebarMenu .mcp-theme-1 .nav-link {
  177. border-top: 1px solid transparent;
  178. }
  179. #sidebarMenu .mcp-theme-1 .nav-link.active {
  180. border-top: 1px solid #f8f9fa;
  181. background: #e2e2e2;
  182. }
  183. .mcp-theme-1 .text-sm {
  184. font-size: 85%;
  185. }
  186. .mcp-theme-1 .text-sm-incl-children,
  187. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  188. font-size: 0.8rem;
  189. }
  190. .mcp-theme-1 .minutes-label {
  191. width: 40px;
  192. }
  193. .mcp-theme-1 .memo-textarea {
  194. min-width: 200px;
  195. height: 60px;
  196. }
  197. .main-row {
  198. display: flex;
  199. flex-wrap: nowrap;
  200. margin-right: -15px;
  201. margin-left: -15px;
  202. }
  203. .main-row > .sidebar {
  204. width: 180px;
  205. min-width: 180px;
  206. }
  207. .main-row > main {
  208. flex-grow: 1;
  209. }
  210. html, body {
  211. height: 100%;
  212. }
  213. body>nav.navbar {
  214. height: 55px;
  215. }
  216. .stag-content {
  217. height: calc(100% - 55px);
  218. }
  219. [moe][large] form, [moe][large] [url] {
  220. width: 450px;
  221. }
  222. [moe][bottom] form {
  223. bottom: 100%;
  224. }
  225. .moe-disabled[moe] {
  226. cursor: not-allowed;
  227. }
  228. .moe-disabled[moe] [start][show] {
  229. opacity: 0.5;
  230. pointer-events: none;
  231. }
  232. .mcp-theme-1 .stag-no-wrap-td {
  233. max-width: 260px;
  234. }
  235. .mcp-theme-1 .stag-no-wrap {
  236. max-width: 250px;
  237. overflow: hidden;
  238. text-overflow: ellipsis;
  239. white-space: nowrap;
  240. display: block;
  241. }
  242. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  243. min-width: 200px;
  244. }
  245. .mcp-theme-1 [large] .form-control.form-control-sm {
  246. min-width: unset;
  247. }
  248. [wide] .form-control.form-control-sm {
  249. min-width: 480px;
  250. }
  251. [moe][center] [url]:not([show]) {
  252. position: fixed;
  253. top: 10%;
  254. max-height: 88%;
  255. overflow-y: auto;
  256. overflow-x: hidden;
  257. left: calc(50% - 250px);
  258. width: 500px;
  259. }
  260. [moe][center][wide] [url]:not([show]) {
  261. left: calc(50% - 400px);
  262. width: 800px;
  263. }
  264. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  265. min-width: unset;
  266. max-width: 100%;
  267. }
  268. .mcp-theme-1 .width-200px {
  269. width: 200px !important;
  270. }
  271. .mcp-theme-1 .width-300px {
  272. width: 300px !important;
  273. }
  274. .mcp-theme-1 .width-22px {
  275. width: 22px !important;
  276. }
  277. .mcp-theme-1 .width-30px {
  278. width: 30px !important;
  279. }
  280. .mcp-theme-1 .width-40px {
  281. width: 40px !important;
  282. }
  283. .mcp-theme-1 .width-50px {
  284. width: 50px !important;
  285. }
  286. .mcp-theme-1 .width-70px {
  287. width: 70px !important;
  288. }
  289. .mcp-theme-1 .width-90px {
  290. width: 90px !important;
  291. }
  292. .mcp-theme-1 .min-width-140px {
  293. min-width: 140px !important;
  294. }
  295. .mcp-theme-1 .min-width-200px {
  296. min-width: 200px !important;
  297. }
  298. .mcp-theme-1 .min-width-300px {
  299. min-width: 300px;
  300. }
  301. .mcp-theme-1 .min-width-500px {
  302. min-width: 500px !important;
  303. }
  304. .mcp-theme-1 .max-width-500px {
  305. max-width: 500px !important;
  306. }
  307. .mcp-theme-1 .min-width-700px {
  308. min-width: 700px !important;
  309. }
  310. .mcp-theme-1 .max-width-700px {
  311. max-width: 700px !important;
  312. }
  313. .mcp-theme-1 .width-100px {
  314. width: 100px;
  315. min-width: unset !important;
  316. max-width: unset !important;
  317. }
  318. .mcp-theme-1 .width-100pc {
  319. width: 100% !important;
  320. min-width: unset !important;
  321. }
  322. .mcp-theme-1 .max-width-200px {
  323. max-width: 200px;
  324. }
  325. .mcp-theme-1 .max-width-300px {
  326. max-width: 300px;
  327. }
  328. .mcp-theme-1 .outline-0 {
  329. outline: none !important;
  330. box-shadow: none !important;
  331. }
  332. .cancelled-item {
  333. opacity: 0.5;
  334. }
  335. .cancelled-item:not(.always-clickable) * {
  336. pointer-events: none;
  337. }
  338. .note-content {
  339. max-height: 300px;
  340. overflow-y: auto;
  341. }
  342. .note-content:not([auto-edit]) {
  343. padding: 1rem;
  344. padding-bottom: 0;
  345. cursor: pointer;
  346. position: relative;
  347. }
  348. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  349. content: '(click to change)';
  350. display: block;
  351. color: #535353;
  352. padding-bottom: 0.3rem;
  353. }
  354. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  355. border-left: 0;
  356. border-right: 0;
  357. }
  358. .mcp-theme-1 .ql-editor[contenteditable] {
  359. min-height: 100px;
  360. }
  361. .ql-container p {
  362. margin-top: 1rem;
  363. }
  364. .note-content ul {
  365. list-style: none !important;
  366. }
  367. .ql-editor ul > li::before {
  368. content: '';
  369. }
  370. .m-neg-4 {
  371. margin-left: -1.25rem;
  372. margin-right: -1.25rem;
  373. }
  374. .mcp-theme-1 .ql-toolbar .ql-formats * {
  375. font-size: 12px !important;
  376. }
  377. .mcp-theme-1 .ql-toolbar.ql-snow {
  378. padding: 3px;
  379. background: #f7f7f7;
  380. }
  381. .mcp-theme-1 .ql-snow .ql-picker {
  382. height: 22px;
  383. }
  384. .mcp-theme-1 .ql-snow.ql-toolbar button {
  385. height: 22px;
  386. width: 26px;
  387. }
  388. .rte-holder .ql-container p {
  389. margin-top: 0;
  390. margin-bottom: 0.3rem;
  391. }
  392. .note-section:not(.edit) .if-not-edit {
  393. display: block !important;
  394. }
  395. .note-section:not(.edit) div.if-not-edit {
  396. padding-left: 1rem;
  397. }
  398. .note-section:not(.edit):hover {
  399. background: #f6f9fc;
  400. cursor: pointer;
  401. }
  402. .note-signed-by-hcp .note-section:not(.edit):hover {
  403. background: #f6f9fc;
  404. cursor: auto;
  405. }
  406. .note-section.edit .if-edit {
  407. display: block !important;
  408. }
  409. .c-pointer {
  410. cursor: pointer;
  411. }
  412. .events-none {
  413. pointer-events: none;
  414. }
  415. .blocking-overlay {
  416. opacity: 0 !important;
  417. cursor: default;
  418. }
  419. .inset-comment p {
  420. margin-bottom: 0.3rem;
  421. }
  422. .inset-comment p:last-child {
  423. margin-bottom: 0 !important;
  424. }
  425. .note-section.edit {
  426. background: #f0f8ff7d;
  427. outline: 2px solid #9de3ff;
  428. }
  429. .note-section.edit .ql-editor,
  430. .note-section.edit .btn-default {
  431. background-color: #fff !important;
  432. }
  433. /*.note-section-item-row:not(:first-child) {
  434. padding-top: 10px;
  435. border-top: 1px solid #ccc;
  436. }*/
  437. /* override med ac css */
  438. #searchResults {
  439. z-index: 100001 !important;
  440. }
  441. input.search_field, textarea.search_field {
  442. background-position: right 7px center !important;
  443. padding-right: 23px !important;
  444. }
  445. .ansList:focus, .search_field:focus {
  446. background-color: #fff !important;
  447. }
  448. @media (min-width: 1000px) {
  449. .navbar.navbar-dark {
  450. height: 55px;
  451. position: fixed;
  452. top: 0;
  453. left: 0;
  454. width: 100%;
  455. z-index: 9999;
  456. }
  457. .main-row > .sidebar {
  458. width: 180px;
  459. min-width: 180px;
  460. position: fixed;
  461. left: 0;
  462. top: 55px;
  463. z-index: 8;
  464. height: calc(100% - 55px);
  465. overflow-y: overlay;
  466. }
  467. .main-row {
  468. padding-left: 180px;
  469. }
  470. .navbar.navbar-dark+[role="main"] {
  471. padding-top: 55px;
  472. }
  473. .stag-popup .navbar.navbar-dark+[role="main"] {
  474. padding-top: 0;
  475. }
  476. }
  477. .font-smaller {
  478. font-size: 11px !important;
  479. }
  480. .text-ellipsis {
  481. white-space: nowrap;
  482. overflow: hidden;
  483. text-overflow: ellipsis;
  484. }
  485. .outline-0 {
  486. outline: none !important;
  487. }
  488. .note-widget-item:hover {
  489. background: #eee;
  490. }
  491. .note-widget-title {
  492. background: #ccc !important;
  493. color: #333 !important;
  494. font-size: 12px !important;
  495. font-weight: bold !important;
  496. }
  497. .navbar-collapse.show {
  498. background: #1c4587;
  499. z-index: 999;
  500. padding: 0.5rem 1rem;
  501. margin: 0 -1rem;
  502. }
  503. .navbar-dark .nav-item .nav-link {
  504. font-size: 12px;
  505. white-space: nowrap;
  506. overflow: hidden;
  507. text-overflow: ellipsis;
  508. }
  509. #patient-search {
  510. min-width: 90px !important;
  511. max-width: 140px !important;
  512. }
  513. .suggestions-outer {
  514. top: calc(100% + 2px);
  515. background: #fff;
  516. border-radius: 3px;
  517. border: 1px solid #ccc;
  518. z-index: 9999;
  519. }
  520. .suggestions-outer {
  521. top: calc(100% + 2px);
  522. background: #fff;
  523. border-radius: 3px;
  524. border: 1px solid #ccc;
  525. z-index: 9999;
  526. max-height: 220px;
  527. overflow-y: auto;
  528. min-width: calc(100% - 0.5rem);
  529. right: 0.5rem;
  530. }
  531. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  532. padding: 0.25rem 0.5rem;
  533. text-decoration: none;
  534. font-size: 12px;
  535. }
  536. .suggestions-outer .no-suggest-items {
  537. color: #888;
  538. }
  539. .suggestions-outer .suggest-item.active {
  540. background: #ccc;
  541. }
  542. .suggestions-outer .suggest-item:hover {
  543. background: aliceblue;
  544. }
  545. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  546. .pro-dashboard-inline-calendar table.table-condensed {
  547. width: 100% !important;
  548. }
  549. .pro-dashboard-inline-calendar {
  550. border: 1px solid #ddd;
  551. border-radius: 3px
  552. }
  553. .pro-dashboard-inline-calendar table.table-condensed th {
  554. padding: 0.5rem 0;
  555. border-radius: 0;
  556. }
  557. .pro-dashboard-inline-calendar table.table-condensed td {
  558. padding: 0.25rem 0;
  559. border-radius: 0;
  560. }
  561. .pro-dashboard-inline-calendar table.table-condensed td[has-events],
  562. .pro-dashboard-inline-calendar td.has-events:not(.ui-datepicker-today) a {
  563. background: #c5e4ff !important;
  564. font-weight: bold !important;
  565. color: #000 !important;
  566. }
  567. .ui-state-active,
  568. .ui-widget-content .ui-state-active,
  569. .ui-widget-header .ui-state-active,
  570. a.ui-button:active,
  571. .ui-button:active,
  572. .ui-button.ui-state-active:hover {
  573. border: 1px solid #4396da !important;
  574. }
  575. .pro-dashboard-inline-calendar td.has-events.ui-datepicker-today a {
  576. font-weight: bold !important;
  577. color: #0d59af !important;
  578. }
  579. .pro-dashboard-inline-calendar td a {
  580. text-align: center !important;
  581. }
  582. [v-cloak] {
  583. opacity: 0;
  584. }
  585. .patient-avatar {
  586. width: 50px;
  587. height: 50px;
  588. background: #eee;
  589. display: inline-flex;
  590. align-items: center;
  591. justify-content: center;
  592. border-radius: 100%;
  593. border: 1px solid #ccc;
  594. }
  595. .large {
  596. font-size: 16px !important;
  597. }
  598. /* note templates */
  599. .note-template-container {
  600. position: absolute;
  601. z-index: 10002;
  602. background: #fff;
  603. border: 1px solid #ddd;
  604. border-radius: 3px;
  605. display: none;
  606. min-width: 200px;
  607. }
  608. .note-template-container .note-template-item {
  609. position: relative;
  610. height: 25px;
  611. }
  612. .note-template-container .note-template-item .note-template-text {
  613. border-bottom: 1px solid #eee;
  614. }
  615. .note-template-container .note-template-item .label {
  616. padding: 3px 6px;
  617. padding-right: 25px;
  618. white-space: nowrap;
  619. display: inline-flex;
  620. align-items: center;
  621. min-width: 120px;
  622. cursor: pointer;
  623. flex-grow: 1;
  624. }
  625. .note-template-container .note-template-item:hover,
  626. .note-template-container .note-template-item.selected {
  627. background: aliceblue;
  628. }
  629. .note-template-container .note-template-item .label>input[type="checkbox"] {
  630. pointer-events: none;
  631. margin: 0;
  632. margin-right: 4px;
  633. height: 11px;
  634. }
  635. .note-template-container .note-template-item:last-child label {
  636. border: 0;
  637. }
  638. .note-template-container .note-template-item .note-template-children {
  639. position: absolute;
  640. left: 100%;
  641. top: 0;
  642. background: #fff;
  643. border: 1px solid #ddd;
  644. border-radius: 3px;
  645. display: none;
  646. }
  647. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  648. display: block;
  649. }*/
  650. .note-template-container .note-template-item .has-children {
  651. position: absolute;
  652. right: 6px;
  653. top: 0;
  654. height: 25px;
  655. line-height: 25px;
  656. color: #bbb;
  657. }
  658. .note-template-container .note-template-item:hover>.has-children {
  659. color: #444;
  660. }
  661. .note-templates-underlay {
  662. position: fixed;
  663. top: 0;
  664. left: 0;
  665. height: 100%;
  666. width: 100%;
  667. background: rgba(0,0,0,0.13);
  668. display: none;
  669. z-index: 10001;
  670. }
  671. .note-template-container textarea {
  672. height: 100px;
  673. border-radius: 0;
  674. border-color: #ccc;
  675. padding: 5px 10px;
  676. display: block;
  677. }
  678. .note-template-buttons {
  679. position: absolute;
  680. bottom: 100%;
  681. right: 0;
  682. height: 27px;
  683. padding: 0 3px;
  684. background: #fff;
  685. }
  686. .note-template-buttons button {
  687. font-size: 10px;
  688. padding: 2px 5px;
  689. margin-left: 5px;
  690. border-radius: 2px;
  691. }
  692. .note-template-buttons button:first-child {
  693. margin-left: 0;
  694. }
  695. .note-template-output {
  696. position: absolute;
  697. bottom: calc(100% + 26px);
  698. left: 0;
  699. padding: 3px 6px;
  700. background: #f7f7f7;
  701. min-width: 100%;
  702. border-radius: 3px;
  703. }
  704. .note-template-output-text {
  705. }
  706. .note-template-output .note-template-output-line {
  707. font-size: 11px;
  708. width: max-content;
  709. max-width: 500px;
  710. margin: 0;
  711. }
  712. .note-template-set-chooser {
  713. height: 22px;
  714. line-height: 22px;
  715. padding: 0 0.22rem;
  716. font-size: 12px !important;
  717. }
  718. .ql-editor .note-template-output-line {
  719. white-space: normal;
  720. }
  721. [prefix="(+)"] a.plus-trigger {
  722. color: #23a923 !important;
  723. }
  724. [prefix="(-)"] a.minus-trigger {
  725. color: #a91e1e !important;
  726. }
  727. .rspace {
  728. width: 20px;
  729. display: inline-flex;
  730. text-align: center;
  731. justify-content: center;
  732. }
  733. .embed-mask {
  734. position: fixed;
  735. left: 0;
  736. top: 0;
  737. height: 100%;
  738. width: 100%;
  739. background: rgba(0, 0, 0, 0.1);
  740. z-index: 98;
  741. }
  742. .embed-section {
  743. background: #fff;
  744. z-index: 99;
  745. padding: 0;
  746. border: 1px solid #ccc;
  747. }
  748. .mask-text-addition {
  749. position: fixed;
  750. bottom: calc(50% - 60px);
  751. left: 0;
  752. width: 100%;
  753. text-align: center;
  754. font-size: 12px;
  755. z-index: 9999999;
  756. color: #000;
  757. }
  758. .note-summary p {
  759. margin-bottom: 0.25rem;
  760. }
  761. .aligned-icon {
  762. display: inline-block;
  763. width: 18px;
  764. text-align: center;
  765. }
  766. body #searchCount {
  767. display: none !important;
  768. }
  769. body .break-spaces {
  770. white-space: pre-wrap;
  771. }
  772. .stag-tooltip .stag-tooltip-content {
  773. display: none;
  774. min-width: 200px;
  775. }
  776. .stag-tooltip:hover .stag-tooltip-content {
  777. display: block;
  778. right: -10px;
  779. top: 100%;
  780. z-index: 1;
  781. }
  782. .gem-nodes .node {
  783. border: 1px solid #ddd;
  784. padding: 0.75rem;
  785. border-radius: 5px;
  786. }
  787. .gem-nodes>.node {
  788. border: 0 !important;
  789. padding-left: 0;
  790. padding-right: 0;
  791. }
  792. .gem-nodes>.node:first-child {
  793. margin-top: 0 !important;
  794. }
  795. .gem-nodes>.node>label {
  796. font-weight: bold;
  797. font-size: 14px;
  798. margin: 0;
  799. }
  800. .gem-nodes .subs .node:last-child {
  801. margin-bottom: 0 !important;
  802. }
  803. .gem-nodes>.node>.subs {
  804. padding-left: 0 !important;
  805. }
  806. .gem-nodes>.node>.subs>.node {
  807. background: #f2f2f2;
  808. }
  809. .gem-nodes>.node>.subs>.node>.subs>.node {
  810. background: #fff;
  811. }
  812. .gem-nodes .node span[field] {
  813. font-weight: bold;
  814. }
  815. body .node input[type="number"] {
  816. max-width: 70px;
  817. min-width: unset !important;
  818. }
  819. .section-edit-mask {
  820. top: 0;
  821. left: 0;
  822. width: 100%;
  823. height: 100%;
  824. }
  825. .signed-note {
  826. position: relative;
  827. pointer-events: none !important;
  828. }
  829. .signed-note::after {
  830. content: '';
  831. position: absolute;
  832. z-index: 2;
  833. cursor: not-allowed;
  834. left: 0;
  835. top: 0;
  836. width: 100%;
  837. height: 100%;
  838. background: rgba(0,0,0,0.01);
  839. }
  840. .slot-picker {
  841. padding: 4px;
  842. padding-right: 0;
  843. padding-bottom: 0;
  844. }
  845. .slot-picker.disabled {
  846. opacity: 0.5;
  847. pointer-events: none;
  848. cursor: not-allowed;
  849. }
  850. .slot-picker td {
  851. text-align: center;
  852. border: 1px solid #ddd !important;
  853. padding: 2px 5px;
  854. cursor: pointer;
  855. }
  856. .slot-picker th {
  857. border: 0 !important;
  858. }
  859. .slot-picker td:hover {
  860. background: aliceblue;
  861. }
  862. .slot-picker td.blocked {
  863. background: #ccc !important;
  864. cursor: not-allowed;
  865. }
  866. .slot-picker td.selected {
  867. background-image: linear-gradient(to bottom,#08c,#04c);
  868. background-repeat: repeat-x;
  869. color: #fff;
  870. }
  871. .pro-appointment-calendar.disabled {
  872. opacity: 0.5;
  873. pointer-events: none;
  874. cursor: not-allowed;
  875. }
  876. .pro-appointment-calendar .datepicker-inline {
  877. width: 195px;
  878. padding-left: 0;
  879. }
  880. .pro-appointment-calendar .datepicker td {
  881. height: 25px;
  882. }
  883. .datepicker td, .datepicker th {
  884. border: none !important;
  885. }
  886. .appt-form-col {
  887. width: 220px;
  888. }
  889. .appt-calendar-col {
  890. flex-grow: 1;
  891. }
  892. .appt-form td.fc-day.stag-selected {
  893. outline: 2px solid #007bff;
  894. background: #e5f2fd;
  895. }
  896. .appt-form .stag-current-appt {
  897. background: #89159cc7;
  898. color: #fff;
  899. border-color: #89159cc7;
  900. }
  901. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  902. border-color: #fff;
  903. }
  904. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  905. margin-bottom: 0.5rem;
  906. /*align-items: start;*/
  907. }
  908. .stag-calendar-header-extra {
  909. background: #cde8ff;
  910. padding: 3px 10px;
  911. margin-top: 7px;
  912. border-top-left-radius: 6px;
  913. border-top-right-radius: 6px;
  914. border: 1px solid #44a5f982;
  915. border-bottom: 0;
  916. }
  917. .stag-calendar-header-extra * {
  918. font-size: 14px !important;
  919. }
  920. /* call panel */
  921. #proCallComponent {
  922. padding-bottom: 150px;
  923. }
  924. .patient-queue {
  925. display: flex;
  926. flex-direction: column;
  927. position: fixed;
  928. left: 0;
  929. width: 100%;
  930. bottom: 0;
  931. z-index: 4;
  932. }
  933. .queue-item {
  934. width: 100px;
  935. padding: 0.5rem;
  936. padding-bottom: 0.25rem;
  937. text-align: center;
  938. cursor: pointer;
  939. }
  940. .queue-item:hover {
  941. background: aliceblue;
  942. }
  943. .current-work-indicator {
  944. /*
  945. position: fixed;
  946. top: 55px;
  947. right: 0;
  948. z-index: 9999;
  949. */
  950. background: #305ba0;
  951. color: #fff;
  952. font-size: 12px;
  953. padding: 3px 6px;
  954. border-radius: 3px;
  955. /* border-bottom-left-radius: 5px;*/
  956. white-space: nowrap;
  957. text-overflow: ellipsis;
  958. max-width: 100px;
  959. overflow: hidden;
  960. }
  961. /* stag popups */
  962. .stag-popup {
  963. position: fixed;
  964. left: 0;
  965. top: 55px;
  966. width: 100%;
  967. height: calc(100% - 55px);
  968. overflow-x: auto;
  969. z-index: 97;
  970. justify-content: center;
  971. align-items: center;
  972. display: none;
  973. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  974. padding: 2rem 0;
  975. }
  976. .stag-popup.show {
  977. display: block;
  978. }
  979. .stag-popup>form, .stag-popup>.stag-popup-content {
  980. width: 80%;
  981. background: #fff;
  982. border: 1px solid #aaa;
  983. border-radius: 5px;
  984. overflow: hidden;
  985. box-shadow: 0 0 5px #ddd;
  986. margin: 0 auto;
  987. padding: 0.75rem;
  988. }
  989. .stag-popup.wide>form, .stag-popup.wide>.stag-popup-content {
  990. width: calc(100% - 4rem);
  991. }
  992. .stag-popup.narrow>form, .stag-popup.narrow>.stag-popup-content {
  993. max-width: 500px;
  994. }
  995. .stag-popup.stag-popup-sm>form, .stag-popup.stag-popup-sm>.stag-popup-content {
  996. max-width: 500px;
  997. }
  998. .stag-popup.stag-popup-md>form, .stag-popup.stag-popup-md>.stag-popup-content {
  999. max-width: 632pt;
  1000. }
  1001. .stag-popup.stag-popup-right>form, .stag-popup.stag-popup-right>.stag-popup-content {
  1002. margin-right: 1.5rem;
  1003. margin-left: auto;
  1004. }
  1005. /* slide-in stag-popups */
  1006. .stag-popup.stag-slide {
  1007. display: block;
  1008. background: center center no-repeat scroll rgba(0, 0, 0, 0);
  1009. pointer-events: none;
  1010. overflow: hidden;
  1011. }
  1012. .stag-popup.stag-slide.show {
  1013. pointer-events: all;
  1014. }
  1015. .stag-popup.stag-slide>form {
  1016. position: absolute;
  1017. top: 0;
  1018. height: 100% !important;
  1019. overflow-y: auto;
  1020. border-radius: 0;
  1021. border-top: 0;
  1022. border-bottom: 0;
  1023. border-right: 0;
  1024. transition: right 0.3s ease;
  1025. width: 0;
  1026. }
  1027. .stag-popup.stag-slide.stag-popup-sm>form {
  1028. width: 500px;
  1029. right: -500px;
  1030. }
  1031. .stag-popup.stag-slide.stag-popup-md>form {
  1032. width: 632pt;
  1033. right: -632pt;
  1034. }
  1035. .stag-popup.stag-slide.show>form {
  1036. right: 0;
  1037. }
  1038. /* asana style ticket management */
  1039. .pro-initials {
  1040. border-radius: 100%;
  1041. height: 24px;
  1042. width: 24px;
  1043. min-height: 24px;
  1044. min-width: 24px;
  1045. max-height: 24px;
  1046. max-width: 24px;
  1047. text-align: center;
  1048. font-weight: 400;
  1049. display: inline-flex;
  1050. align-items: center;
  1051. justify-content: center;
  1052. background-color: #6457f9;
  1053. color: #fff;
  1054. font-size: 10px !important;
  1055. opacity: 0.85;
  1056. }
  1057. .pro-initials.pro-initials-sm {
  1058. height: 18px;
  1059. width: 18px;
  1060. min-height: 18px;
  1061. min-width: 18px;
  1062. max-height: 18px;
  1063. max-width: 18px;
  1064. font-size: 9px !important;
  1065. }
  1066. .pro-initials:hover {
  1067. opacity: 1;
  1068. }
  1069. .ticket-section {
  1070. }
  1071. .ticket-section.ticket-section-collapsed {
  1072. max-height: 0;
  1073. overflow: hidden;
  1074. }
  1075. .tickets-table tbody tr {
  1076. transition: background-color 0.2s ease;
  1077. }
  1078. .tickets-table tbody tr:hover {
  1079. background-color: rgba(0,0,0,.04);
  1080. }
  1081. .tickets-table tbody tr.current {
  1082. background-color: aliceblue;
  1083. }
  1084. .stag-slide input.form-control:not(:focus),
  1085. .stag-slide select.form-control:not(:focus) {
  1086. border-color: transparent;
  1087. background-color: transparent;
  1088. cursor: pointer;
  1089. font-weight: bold;
  1090. padding-left: 0;
  1091. }
  1092. .stag-slide select.form-control:not(:focus) {
  1093. appearance: none;
  1094. }
  1095. .stag-slide input.form-control {
  1096. box-shadow: none !important;
  1097. }
  1098. .stag-slide input.form-control:not(:focus):not([readonly]):hover {
  1099. text-decoration: underline;
  1100. }
  1101. .stag-slide input.form-control[readonly] {
  1102. opacity: 0.75;
  1103. }
  1104. .stag-slide ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  1105. color: #bbb !important;
  1106. font-weight: normal !important;
  1107. opacity: 1; /* Firefox */
  1108. }
  1109. .stag-slide :-ms-input-placeholder { /* Internet Explorer 10-11 */
  1110. color: #bbb !important;
  1111. font-weight: normal !important;
  1112. }
  1113. .stag-slide ::-ms-input-placeholder { /* Microsoft Edge */
  1114. color: #bbb !important;
  1115. font-weight: normal !important;
  1116. }
  1117. .stag-slide .text-success {
  1118. color: #00bf9c !important;
  1119. }
  1120. .stag-slide .btn-success,
  1121. .stag-slide .btn-success:hover {
  1122. background: #00bf9c;
  1123. border-color: #00bf9c;
  1124. }
  1125. .stag-slide .comment-input-outer {
  1126. position: sticky;
  1127. bottom: 0;
  1128. }
  1129. .stag-slide .txt-comment {
  1130. padding-bottom: calc(23px + 1rem);
  1131. height: calc(23px + 1rem);
  1132. transition: height 0.3s ease;
  1133. overflow: hidden;
  1134. }
  1135. .stag-slide .txt-comment:focus {
  1136. height: 120px;
  1137. overflow: auto;
  1138. }
  1139. .stag-slide .txt-comment:focus~.btn-save-comment {
  1140. opacity: 1;
  1141. }
  1142. .stag-slide .btn-save-comment {
  1143. position: absolute;
  1144. bottom: 0.5rem;
  1145. right: 0.5rem;
  1146. height: 28px;
  1147. line-height: 28px;
  1148. padding: 0 1rem;
  1149. transition: opacity 0.3s ease;
  1150. opacity: 0.5;
  1151. }
  1152. .stag-slide select.form-control:invalid,
  1153. .stag-slide input[type="text"].form-control:invalid {
  1154. background-color: #f8ecec;
  1155. padding-left: 0.5rem;
  1156. }
  1157. .stag-slide select:focus:invalid,
  1158. .stag-slide input[type="text"]:focus:invalid {
  1159. background: #fff;
  1160. border-color: #e24848;
  1161. box-shadow: 0 0 2px #c10707 !important;
  1162. }
  1163. .erx-line-item:nth-child(2n+1) {
  1164. background: #f0f8ffbb
  1165. }
  1166. .no-scroll {
  1167. overflow: hidden;
  1168. }
  1169. .client-rs-contents p {
  1170. margin-bottom: 0.25rem;
  1171. }
  1172. .pro-option {
  1173. position: relative;
  1174. display: block;
  1175. padding-left: 30px;
  1176. }
  1177. .pro-option.pro-option-selected {
  1178. display: inline-block;
  1179. padding-left: 25px;
  1180. }
  1181. .pro-option .pro-option-initials {
  1182. position: absolute;
  1183. left: 5px;
  1184. top: 2px;
  1185. font-size: 10px;
  1186. border-radius: 100%;
  1187. height: 20px;
  1188. width: 20px;
  1189. line-height: 20px;
  1190. text-align: center;
  1191. font-weight: 400;
  1192. }
  1193. .pro-option.pro-option-selected .pro-option-initials {
  1194. left: 3px;
  1195. top: 0;
  1196. font-size: 10px;
  1197. border-radius: 100%;
  1198. height: 18px;
  1199. width: 18px;
  1200. line-height: 19px;
  1201. text-align: center;
  1202. font-weight: 400;
  1203. }
  1204. span.pro-selection {
  1205. padding: 0 5px;
  1206. height: 18px;
  1207. display: inline-block;
  1208. border-top-right-radius: 3px;
  1209. border-bottom-right-radius: 3px;
  1210. }
  1211. .select2-results__option--selectable {
  1212. font-size: 13px;
  1213. }
  1214. #calendarApp .select2-selection__choice__display,
  1215. #proCalendarApp .select2-selection__choice__display {
  1216. padding: 0 !important;
  1217. overflow: hidden !important;
  1218. }
  1219. span.select2-container.select2-container--default.select2-container--open {
  1220. z-index: 999999;
  1221. }
  1222. .fc .fc-highlight {
  1223. background: rgba(188, 232, 241, 0.6) !important;
  1224. }
  1225. .fc .add-overlay {
  1226. padding: 1px 4px;
  1227. display: inline-block;
  1228. font-weight: bold;
  1229. }
  1230. .fc .add-overlay.add-overlay-day-grid {
  1231. padding: 4px;
  1232. }
  1233. .stag-popup .stag-popup-title {
  1234. border-bottom: 1px solid #eee;
  1235. padding-bottom: 0.75rem;
  1236. margin-bottom: 1rem;
  1237. display: flex;
  1238. align-items: center;
  1239. }
  1240. .stag-popup .stag-popup-title>span {
  1241. font-size: 17px;
  1242. }
  1243. .fc .other-client {
  1244. box-shadow: 1px 1px 2px deeppink !important;
  1245. opacity: 0.5;
  1246. }
  1247. .fc .other-client:hover {
  1248. opacity: 0.8;
  1249. }
  1250. .fc .availability {
  1251. box-shadow: 0 0 3px green !important;
  1252. }
  1253. .fc .inactive-appointment {
  1254. opacity: 0.6;
  1255. box-shadow: 0 0 3px grey !important;
  1256. }
  1257. .fc .fc-button-primary:not(:disabled):active,
  1258. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1259. border-color: #56a767 !important;
  1260. background-color: #56a767 !important;
  1261. }
  1262. .w-150 {
  1263. width: 150px !important;
  1264. min-width: 150px !important;
  1265. }
  1266. .w-180 {
  1267. width: 180px !important;
  1268. min-width: 180px !important;
  1269. }
  1270. .guest-view button.add-shortcut {
  1271. display: none;
  1272. }
  1273. .guest-view .note-section,
  1274. .guest-view .note-section:hover {
  1275. background: #fff !important;
  1276. }
  1277. #stagPdfViewer>form {
  1278. padding: 0;
  1279. background: #eee;
  1280. }
  1281. #stagPdfViewer>form .stag-popup-title {
  1282. background: #fff;
  1283. padding: 1rem;
  1284. }
  1285. canvas.pdf-viewer-page {
  1286. max-width: 100%;
  1287. margin: 1rem auto;
  1288. display: block;
  1289. box-shadow: 0 0 2px #aaa;
  1290. }
  1291. .hidden-link-input {
  1292. /*opacity: 0;
  1293. width: 0 !important;
  1294. border: 0 !important;
  1295. padding: 0 !important;*/
  1296. position: absolute;
  1297. left: -9999px;
  1298. }
  1299. table.table-edit-sheet tbody tr td {
  1300. padding: 0;
  1301. background: #f7f7f7;
  1302. }
  1303. table.table-edit-sheet tbody tr td>input,
  1304. table.table-edit-sheet tbody tr td>select {
  1305. box-shadow: none !important;
  1306. border-radius: 0 !important;
  1307. border: 0;
  1308. background: #fefefe;
  1309. width: 100% !important;
  1310. min-width: unset !important;
  1311. border-bottom: 1px solid #dee2e6;
  1312. }
  1313. table.table-edit-sheet tbody tr td input[type="text"],
  1314. table.table-edit-sheet tbody tr td select,
  1315. table.table-edit-sheet tbody tr td textarea {
  1316. box-shadow: none !important;
  1317. border-radius: 0 !important;
  1318. border: 0;
  1319. background: #fefefe;
  1320. min-width: unset !important;
  1321. border-bottom: 1px solid #dee2e6;
  1322. }
  1323. table.table-edit-sheet tbody tr td>input:focus,
  1324. table.table-edit-sheet tbody tr td>select:focus {
  1325. background: #fff;
  1326. outline: 3px solid #4b88a633;
  1327. }
  1328. table.table-edit-sheet tbody tr [contenteditable] {
  1329. background: #fff;
  1330. }
  1331. table.table-edit-sheet .ql-toolbar {
  1332. border-top: 0 !important;
  1333. }
  1334. table.table-edit-sheet .ql-container {
  1335. border-bottom: 0 !important;
  1336. }
  1337. table.table-edit-sheet .ql-editor[contenteditable] {
  1338. min-height: 90px;
  1339. }
  1340. .w-35 {
  1341. width: 35%;
  1342. }
  1343. .client-single-dashboard .hide-if-dashboard {
  1344. display: none;
  1345. }
  1346. .notes-list .hide-if-note,
  1347. .note-section .hide-if-note {
  1348. display: none;
  1349. }
  1350. .data-option-list {
  1351. position: absolute;
  1352. background: #fff;
  1353. border: 2px solid #ddd;
  1354. margin-top: -1px;
  1355. width: 100%;
  1356. z-index: 1;
  1357. display: none;
  1358. max-width: 250px;
  1359. box-shadow: 0 0 3px #ddd;
  1360. border-top: 0;
  1361. }
  1362. .data-option-list>div {
  1363. cursor: pointer;
  1364. padding: 0.2rem 0.5rem;
  1365. border-bottom: 1px solid #ddd;
  1366. color: #666;
  1367. font-size: 90%;
  1368. }
  1369. .data-option-list>div:last-child {
  1370. border-bottom: 0;
  1371. }
  1372. .data-option-list>div:hover {
  1373. background: aliceblue;
  1374. }
  1375. .measurement-item:not(:last-child) {
  1376. border-bottom: 1px solid #e7e7e7;
  1377. }
  1378. .assessment-detail-template>span {
  1379. margin: 0 !important;
  1380. padding: 0 !important;
  1381. border: 0 !important;
  1382. margin-left: -0.5rem !important;
  1383. position: static !important;
  1384. }
  1385. .assessment-detail-template>span>a {
  1386. display: none;
  1387. }
  1388. button.add-shortcut,
  1389. button.note-templates-trigger-assessment {
  1390. outline: none !important;
  1391. box-shadow: none !important;
  1392. }
  1393. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1394. pointer-events: none !important;
  1395. }
  1396. .claim-line:last-child td {
  1397. padding-bottom: 1.3rem;
  1398. }
  1399. .in-table-markup p:last-of-type {
  1400. margin-bottom: 0;
  1401. }
  1402. .suggestions-outer.pharmacy-suggestions {
  1403. left: 1rem;
  1404. width: calc(100% - 2rem);
  1405. }
  1406. .flowsheets-table td {
  1407. padding: 0 10px;
  1408. height: 38px;
  1409. max-height: 38px;
  1410. min-height: 38px;
  1411. vertical-align: middle !important;
  1412. }
  1413. .flowsheets-table .expand {
  1414. display: none;
  1415. }
  1416. .flowsheets-table .collapse {
  1417. display: block;
  1418. }
  1419. .flowsheets-table .collapsed .expand {
  1420. display: block;
  1421. }
  1422. .flowsheets-table .collapsed .collapse {
  1423. display: none;
  1424. }
  1425. .flowsheets-table tr {
  1426. }
  1427. .flowsheets-table .collapsed tr:not(:first-child) {
  1428. display: none;
  1429. }
  1430. .col-2-button {
  1431. width: 88px;
  1432. text-align: left;
  1433. }
  1434. /* vitals graph */
  1435. .stag-chart {
  1436. min-height: 300px;
  1437. }
  1438. .stag-chart .safe-region>rect {
  1439. fill: green;
  1440. }
  1441. .stag-chart .safe-region>text {
  1442. fill: #888;
  1443. transform: translateY(-18px);
  1444. }
  1445. /* appt. confirmation history */
  1446. .appointment-confirmation-history-trigger .appointment-confirmation-history {
  1447. position: absolute;
  1448. width: 300px;
  1449. right: 0;
  1450. background: #fff;
  1451. opacity: 0;
  1452. padding: 0 0.75rem;
  1453. padding-bottom: 0.5rem;
  1454. box-shadow: 0 0 2px #999;
  1455. pointer-events: none;
  1456. transition: opacity 0.3s ease;
  1457. z-index: 2;
  1458. }
  1459. .appointment-confirmation-history-trigger:hover .appointment-confirmation-history {
  1460. opacity: 1;
  1461. pointer-events: all;
  1462. }
  1463. .on-hover-text-reveal {
  1464. white-space: nowrap;
  1465. overflow: hidden;
  1466. text-overflow: ellipsis;
  1467. }
  1468. /*.on-hover-text-reveal:hover {
  1469. white-space: normal;
  1470. overflow: unset;
  1471. text-overflow: unset;
  1472. }*/
  1473. .collapsible-tbody.collapsed {
  1474. display: none;
  1475. }
  1476. #send-fax-pdf-preview {
  1477. max-height: 350px;
  1478. overflow: auto;
  1479. box-shadow: 0 0 2px #ccc;
  1480. }
  1481. canvas.pdf-viewer-page.pdf-preview-page {
  1482. margin: 0.5rem auto;
  1483. }
  1484. .back-to-admin-button {
  1485. background: transparent;
  1486. border: 0;
  1487. padding: 0;
  1488. color: rgb(13, 89, 175);
  1489. }
  1490. .back-to-admin-button:hover {
  1491. text-decoration: underline;
  1492. }
  1493. .bg-aliceblue {
  1494. background: aliceblue !important;
  1495. }
  1496. .filter-head input[type="date"]::-webkit-calendar-picker-indicator {
  1497. display: none;
  1498. -webkit-appearance: none;
  1499. }
  1500. .filter-head input[type="number"]::-webkit-inner-spin-button {
  1501. display: none;
  1502. -webkit-appearance: none;
  1503. }
  1504. .filter-head input[type="date"] {
  1505. padding: 0;
  1506. min-width: 90px;
  1507. }
  1508. .filter-head input[type="number"],
  1509. .filter-head input[type="date"] {
  1510. min-width: 90px;
  1511. }
  1512. .filter-head select {
  1513. padding: 0 5px;
  1514. }
  1515. tr.sep td {
  1516. padding: 0;
  1517. background: #eee;
  1518. height: 6px;
  1519. }
  1520. #practice-shipments-ready-to-print ::marker {
  1521. color: #0009;
  1522. font-size: 90%;
  1523. }
  1524. .only-print {
  1525. display: none;
  1526. }
  1527. @media print {
  1528. .only-print {
  1529. display: block;
  1530. }
  1531. th.only-print, td.only-print {
  1532. display: table-cell;
  1533. }
  1534. }
  1535. .only-screen {
  1536. display: block;
  1537. }
  1538. th.only-screen, td.only-screen {
  1539. display: table-cell;
  1540. }
  1541. @media print {
  1542. .only-screen {
  1543. display: none !important;
  1544. }
  1545. .only-pick-list, .only-order-slip {
  1546. display: none;
  1547. }
  1548. .pick-list .only-pick-list, .order-slip .only-order-slip {
  1549. display: block;
  1550. }
  1551. }
  1552. .suggest-item.patient-suggest>img {
  1553. width: 10px;
  1554. height: 10px;
  1555. opacity: 0.75;
  1556. }
  1557. .suggest-item.patient-suggest>img.claimed {
  1558. filter: grayscale(100%);
  1559. opacity: 0.5;
  1560. }
  1561. .pdf-viewer-auto {
  1562. max-height: 600px;
  1563. overflow: auto;
  1564. }
  1565. .ticket-popup .stag-popup.stag-slide.show {
  1566. position: static;
  1567. min-width: 100% !important;
  1568. max-width: unset !important;
  1569. padding-bottom: 2rem;
  1570. }
  1571. .ticket-popup .stag-popup.stag-slide.show form {
  1572. min-width: 100% !important;
  1573. max-width: unset !important;
  1574. }
  1575. .ticket-popup .stag-popup.stag-slide>form {
  1576. position: absolute;
  1577. top: 0;
  1578. height: auto !important;
  1579. overflow: hidden;
  1580. border-radius: 5px;
  1581. transition: none;
  1582. border: 1px solid #aaa;
  1583. }
  1584. .ticket-popup .stag-popup.stag-slide .stag-popup-title.sticky-top {
  1585. position: static;
  1586. }
  1587. .ticket-popup.stag-popup.stag-popup-md>.container-fluid {
  1588. max-width: 632pt;
  1589. }
  1590. .ticket-popup.stag-popup.stag-popup-md>.container-fluid>.main-row>main>.card {
  1591. border: 0;
  1592. /*background: transparent;*/
  1593. }
  1594. .ticket-popup .hide-inside-ticket-popup {
  1595. display: none !important;
  1596. }
  1597. .ticket-popup .disable-inside-ticket-popup {
  1598. pointer-events: none !important;
  1599. opacity: 0.5;
  1600. }
  1601. .fill-percent-value {
  1602. width: 60px;
  1603. }
  1604. .fill-percent-content {
  1605. width: 100px;
  1606. }
  1607. .fill-bar {
  1608. height: 20px !important;
  1609. border: 1px solid #ddd;
  1610. }
  1611. .if-in-clinic {
  1612. display: none;
  1613. }
  1614. .stag-table-container {
  1615. max-height: calc(100vh - 230px - 1rem);
  1616. width: 100%;
  1617. overflow: auto !important;
  1618. }
  1619. .stag-table-container-lg>table{
  1620. min-width: 1450px;
  1621. }
  1622. #caremonth-measurements-calendar .fc-event.m-weight {
  1623. background: #38908f;
  1624. color: #fff;
  1625. padding-left: 5px;
  1626. margin-bottom: 2px;
  1627. }
  1628. #caremonth-measurements-calendar .fc-event.m-bp {
  1629. background: #5e96ae;
  1630. color: #fff;
  1631. padding-left: 5px;
  1632. margin-bottom: 2px;
  1633. }
  1634. #caremonth-measurements-calendar .fc-event.m-weight *,
  1635. #caremonth-measurements-calendar .fc-event.m-bp *{
  1636. font-size: 10px !important;
  1637. }
  1638. #caremonth-measurements-calendar .fc-daygrid-event-dot {
  1639. display: none;
  1640. }
  1641. .pro-dashboard-inline-calendar>.ui-datepicker-inline {
  1642. width: 100%;
  1643. border: 0 !important;
  1644. }
  1645. #simpleSMSReminderComponent input[type="time"] {
  1646. max-width: 90px;
  1647. min-width: unset !important;
  1648. }
  1649. form.non-interactive .form-content {
  1650. opacity: 0.5;
  1651. cursor: not-allowed;
  1652. }
  1653. form.non-interactive .form-content * {
  1654. pointer-events: none;
  1655. }
  1656. #eventPros {
  1657. max-height: 28px;
  1658. opacity: 0;
  1659. }
  1660. .training-event {
  1661. position: relative;
  1662. background: #f0feff;
  1663. border-color: #32a2b89e !important;
  1664. }
  1665. .training-event::after {
  1666. position: absolute;
  1667. content: 'Training';
  1668. font-size: 10px;
  1669. font-weight: normal;
  1670. color: #17a2b8;
  1671. left: 1px;
  1672. bottom: -13px;
  1673. transform-origin: left top;
  1674. transform: rotate(
  1675. -90deg
  1676. );
  1677. width: 90px;
  1678. text-align: center;
  1679. letter-spacing: 0.75px;
  1680. }
  1681. .training-event .training-icon {
  1682. font-size: 22px;
  1683. color: #0d59af;
  1684. }
  1685. .training-event .patient-avatar {
  1686. border-color: #0d59af7d !important;
  1687. }
  1688. /* print-note */
  1689. @media print {
  1690. .stag-content #sidebarMenu {
  1691. display: none !important;
  1692. }
  1693. .stag-content .main-row {
  1694. padding-left: 0 !important;
  1695. }
  1696. .stag-content [moe] {
  1697. display: none !important;
  1698. }
  1699. .stag-content .screen-only {
  1700. display: none !important;
  1701. }
  1702. }
  1703. @media screen {
  1704. .stag-content .print-only {
  1705. display: none !important;
  1706. }
  1707. }
  1708. .child-sections>.note-section:not(.edit) {
  1709. position: relative;
  1710. }
  1711. .child-sections>.note-section:not(.edit):before {
  1712. content: '';
  1713. width: 9px;
  1714. border-top: 1px solid #ccc;
  1715. left: 0;
  1716. top: calc(1rem + 8px);
  1717. height: 1px;
  1718. position: absolute;
  1719. }
  1720. .child-sections>.note-section.edit {
  1721. margin-left: 1rem;
  1722. }