style.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200
  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. .stag-primary-bg {
  45. background-color: var(--primary-color) !important;
  46. color: #fff;
  47. }
  48. .stag-primary-border {
  49. border-color: var(--primary-color) !important;
  50. }
  51. .navbar-brand {
  52. font-size: 25px;
  53. font-weight: 900;
  54. }
  55. .sidebar .nav-link {
  56. padding: .25rem 1rem;
  57. }
  58. .sidebar .nav-item {
  59. margin-right: 0;
  60. }
  61. .sidebar .nav-item .nav-child-list {
  62. list-style: none;
  63. }
  64. .sidebar .nav-item .nav-child-list .nav-item .nav-link {
  65. padding-left: 2.75rem;
  66. }
  67. .sidebar .if-not-collapsed, .sidebar .if-collapsed {
  68. display: none;
  69. }
  70. .sidebar .nav-item.nav-child-collapsed .if-collapsed {
  71. display: block;
  72. }
  73. .sidebar .nav-item:not(.nav-child-collapsed) .if-not-collapsed {
  74. display: block;
  75. }
  76. .sidebar .nav-item.nav-child-collapsed .nav-child-list {
  77. display: none;
  78. }
  79. .navbar-dark .nav-item .nav-link {
  80. color: #fff;
  81. }
  82. .dropdown-menu {
  83. margin-top: 7px;
  84. border-radius: 0;
  85. }
  86. .dropdown-item:not(:last-child) {
  87. border-bottom:1px solid #ddd;
  88. }
  89. main {
  90. padding:0 1rem;
  91. }
  92. /* ability to toggle the video pane (rhs) */
  93. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  94. position: fixed;
  95. bottom: 0;
  96. right: 0;
  97. padding: 0.25rem 0.75rem;
  98. border-top-left-radius: 6px;
  99. background-color: var(--primary-color);
  100. color: #fff;
  101. z-index: 2;
  102. }
  103. body.stag_rhs_collapsed .v-split,
  104. body.stag_rhs_collapsed .app-right-panel {
  105. display: none !important;
  106. }
  107. .delete-column {
  108. width: 120px;
  109. }
  110. .m-negator {
  111. margin-left: -1.25rem !important;
  112. margin-right: -1.25rem !important;
  113. }
  114. .pl-3-5 {
  115. padding-left: 1.25rem !important;
  116. }
  117. .lh-24px {
  118. height: 24px;
  119. line-height: 24px;
  120. }
  121. .mcp-theme-1 *:not(i) {
  122. font-family: Verdana, sans-serif;
  123. font-size: 12px;
  124. }
  125. .mcp-theme-1 .font-size-11 {
  126. font-size: 11px;
  127. }
  128. .mcp-theme-1 .font-size-13 {
  129. font-size: 13px;
  130. }
  131. .mcp-theme-1 .font-size-14 {
  132. font-size: 14px;
  133. }
  134. .mcp-theme-1 .font-size-16 {
  135. font-size: 16px;
  136. }
  137. .mcp-theme-1 .font-underline {
  138. text-decoration: underline;
  139. }
  140. .mcp-theme-1 .on-hover-opaque {
  141. opacity: 0.6;
  142. }
  143. .mcp-theme-1 .on-hover-opaque:hover {
  144. opacity: 1;
  145. }
  146. .mcp-theme-1 .opacity-60 {
  147. opacity: .6;
  148. }
  149. .mcp-theme-1 .overflow-visible {
  150. overflow: visible;
  151. }
  152. .mcp-theme-1 .text-secondary-light {
  153. color: #c9ddef !important;
  154. }
  155. .mcp-theme-1 a, .mcp-theme-1 a:link {
  156. color: rgb(13, 89, 175);
  157. }
  158. .mcp-theme-1 .btn.btn-primary {
  159. background: rgb(13, 89, 175);
  160. border-color: rgb(13, 89, 175);
  161. box-shadow: none;
  162. }
  163. .mcp-theme-1 .nav-item {
  164. margin: 0;
  165. }
  166. .mcp-theme-1 .nav-link:hover {
  167. background: #e3e3e394;
  168. }
  169. .mcp-theme-1 .nav-link {
  170. border-top: 1px solid transparent;
  171. }
  172. .mcp-theme-1 .nav-link.active {
  173. border-top: 1px solid #f8f9fa;
  174. background: #e2e2e2;
  175. }
  176. .mcp-theme-1 .text-sm {
  177. font-size: 85%;
  178. }
  179. .mcp-theme-1 .text-sm-incl-children,
  180. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  181. font-size: 0.8rem;
  182. }
  183. .mcp-theme-1 .minutes-label {
  184. width: 40px;
  185. }
  186. .mcp-theme-1 .memo-textarea {
  187. min-width: 200px;
  188. height: 60px;
  189. }
  190. .main-row {
  191. display: flex;
  192. flex-wrap: nowrap;
  193. margin-right: -15px;
  194. margin-left: -15px;
  195. }
  196. .main-row > .sidebar {
  197. width: 180px;
  198. min-width: 180px;
  199. }
  200. .main-row > main {
  201. flex-grow: 1;
  202. }
  203. html, body {
  204. height: 100%;
  205. }
  206. body>nav.navbar {
  207. height: 55px;
  208. }
  209. .stag-content {
  210. height: calc(100% - 55px);
  211. }
  212. [moe][large] form {
  213. width: 450px;
  214. }
  215. [moe][bottom] form {
  216. bottom: 100%;
  217. }
  218. .moe-disabled[moe] {
  219. cursor: not-allowed;
  220. }
  221. .moe-disabled[moe] [start][show] {
  222. opacity: 0.5;
  223. pointer-events: none;
  224. }
  225. .mcp-theme-1 .stag-no-wrap-td {
  226. max-width: 260px;
  227. }
  228. .mcp-theme-1 .stag-no-wrap {
  229. max-width: 250px;
  230. overflow: hidden;
  231. text-overflow: ellipsis;
  232. white-space: nowrap;
  233. display: block;
  234. }
  235. .mcp-theme-1 .form-control.form-control-sm:not(.min-width-unset) {
  236. min-width: 200px;
  237. }
  238. .mcp-theme-1 [large] .form-control.form-control-sm {
  239. min-width: unset;
  240. }
  241. [wide] .form-control.form-control-sm {
  242. min-width: 480px;
  243. }
  244. [moe][center] [url]:not([show]) {
  245. position: fixed;
  246. top: 10%;
  247. max-height: 88%;
  248. overflow-y: auto;
  249. overflow-x: hidden;
  250. left: calc(50% - 250px);
  251. width: 500px;
  252. }
  253. [moe][center][wide] [url]:not([show]) {
  254. left: calc(50% - 400px);
  255. width: 800px;
  256. }
  257. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  258. min-width: unset;
  259. max-width: 100%;
  260. }
  261. .mcp-theme-1 .width-200px {
  262. width: 200px !important;
  263. }
  264. .mcp-theme-1 .width-30px {
  265. width: 30px !important;
  266. }
  267. .mcp-theme-1 .width-50px {
  268. width: 50px !important;
  269. }
  270. .mcp-theme-1 .width-70px {
  271. width: 70px !important;
  272. }
  273. .mcp-theme-1 .min-width-140px {
  274. min-width: 140px !important;
  275. }
  276. .mcp-theme-1 .min-width-200px {
  277. min-width: 200px !important;
  278. }
  279. .mcp-theme-1 .min-width-300px {
  280. min-width: 300px;
  281. }
  282. .mcp-theme-1 .width-100px {
  283. width: 100px;
  284. min-width: unset !important;
  285. max-width: unset !important;
  286. }
  287. .mcp-theme-1 .width-100pc {
  288. width: 100% !important;
  289. min-width: unset !important;
  290. }
  291. .mcp-theme-1 .max-width-200px {
  292. max-width: 200px;
  293. }
  294. .mcp-theme-1 .max-width-300px {
  295. max-width: 300px;
  296. }
  297. .mcp-theme-1 .outline-0 {
  298. outline: none !important;
  299. box-shadow: none !important;
  300. }
  301. .cancelled-item {
  302. opacity: 0.5;
  303. }
  304. .cancelled-item:not(.always-clickable) * {
  305. pointer-events: none;
  306. }
  307. .note-content {
  308. max-height: 300px;
  309. overflow-y: auto;
  310. }
  311. .note-content:not([auto-edit]) {
  312. padding: 1rem;
  313. padding-bottom: 0;
  314. cursor: pointer;
  315. position: relative;
  316. }
  317. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  318. content: '(click to change)';
  319. display: block;
  320. color: #535353;
  321. padding-bottom: 0.3rem;
  322. }
  323. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  324. border-left: 0;
  325. border-right: 0;
  326. }
  327. .mcp-theme-1 .ql-editor[contenteditable] {
  328. min-height: 100px;
  329. }
  330. .ql-container p {
  331. margin-top: 1rem;
  332. }
  333. .note-content ul {
  334. list-style: none !important;
  335. }
  336. .ql-editor ul > li::before {
  337. content: '';
  338. }
  339. .m-neg-4 {
  340. margin-left: -1.25rem;
  341. margin-right: -1.25rem;
  342. }
  343. .mcp-theme-1 .ql-toolbar .ql-formats * {
  344. font-size: 12px !important;
  345. }
  346. .mcp-theme-1 .ql-toolbar.ql-snow {
  347. padding: 3px;
  348. background: #f7f7f7;
  349. }
  350. .mcp-theme-1 .ql-snow .ql-picker {
  351. height: 22px;
  352. }
  353. .mcp-theme-1 .ql-snow.ql-toolbar button {
  354. height: 22px;
  355. width: 26px;
  356. }
  357. .rte-holder .ql-container p {
  358. margin-top: 0;
  359. margin-bottom: 0.3rem;
  360. }
  361. .note-section:not(.edit) .if-not-edit {
  362. display: block !important;
  363. }
  364. .note-section:not(.edit) div.if-not-edit {
  365. padding-left: 1rem;
  366. }
  367. .note-section:not(.edit):hover {
  368. background: #f6f9fc;
  369. cursor: pointer;
  370. }
  371. .note-signed-by-hcp .note-section:not(.edit):hover {
  372. background: #f6f9fc;
  373. cursor: auto;
  374. }
  375. .note-section.edit .if-edit {
  376. display: block !important;
  377. }
  378. .c-pointer {
  379. cursor: pointer;
  380. }
  381. .events-none {
  382. pointer-events: none;
  383. }
  384. .blocking-overlay {
  385. opacity: 0 !important;
  386. cursor: default;
  387. }
  388. .inset-comment p {
  389. margin-bottom: 0.3rem;
  390. }
  391. .inset-comment p:last-child {
  392. margin-bottom: 0 !important;
  393. }
  394. .note-section.edit {
  395. background: #f0f8ff7d;
  396. outline: 2px solid #9de3ff;
  397. }
  398. .note-section.edit .ql-editor,
  399. .note-section.edit .btn-default {
  400. background-color: #fff !important;
  401. }
  402. /*.note-section-item-row:not(:first-child) {
  403. padding-top: 10px;
  404. border-top: 1px solid #ccc;
  405. }*/
  406. /* override med ac css */
  407. #searchResults {
  408. z-index: 100001 !important;
  409. }
  410. input.search_field, textarea.search_field {
  411. background-position: right 7px center !important;
  412. padding-right: 23px !important;
  413. }
  414. .ansList:focus, .search_field:focus {
  415. background-color: #fff !important;
  416. }
  417. @media (min-width: 1000px) {
  418. .navbar.navbar-dark {
  419. height: 55px;
  420. position: fixed;
  421. top: 0;
  422. left: 0;
  423. width: 100%;
  424. z-index: 9999;
  425. }
  426. .main-row > .sidebar {
  427. width: 180px;
  428. min-width: 180px;
  429. position: fixed;
  430. left: 0;
  431. top: 55px;
  432. z-index: 8;
  433. height: calc(100% - 55px);
  434. overflow-y: overlay;
  435. }
  436. .main-row {
  437. padding-left: 180px;
  438. }
  439. .navbar.navbar-dark+[role="main"] {
  440. padding-top: 55px;
  441. }
  442. }
  443. .font-smaller {
  444. font-size: 11px !important;
  445. }
  446. .text-ellipsis {
  447. white-space: nowrap;
  448. overflow: hidden;
  449. text-overflow: ellipsis;
  450. }
  451. .outline-0 {
  452. outline: none !important;
  453. }
  454. .note-widget-item:hover {
  455. background: #eee;
  456. }
  457. .note-widget-title {
  458. background: #ccc !important;
  459. color: #333 !important;
  460. font-size: 12px !important;
  461. font-weight: bold !important;
  462. }
  463. .navbar-collapse.show {
  464. background: #1c4587;
  465. z-index: 999;
  466. padding: 0.5rem 1rem;
  467. margin: 0 -1rem;
  468. }
  469. .navbar-dark .nav-item .nav-link {
  470. font-size: 12px;
  471. white-space: nowrap;
  472. overflow: hidden;
  473. text-overflow: ellipsis;
  474. }
  475. #patient-search {
  476. min-width: 100px !important;
  477. max-width: 140px !important;
  478. }
  479. .suggestions-outer {
  480. top: calc(100% + 2px);
  481. background: #fff;
  482. border-radius: 3px;
  483. border: 1px solid #ccc;
  484. z-index: 9999;
  485. }
  486. .suggestions-outer {
  487. top: calc(100% + 2px);
  488. background: #fff;
  489. border-radius: 3px;
  490. border: 1px solid #ccc;
  491. z-index: 9999;
  492. max-height: 220px;
  493. overflow-y: auto;
  494. min-width: calc(100% - 0.5rem);
  495. right: 0.5rem;
  496. }
  497. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  498. padding: 0.25rem 0.5rem;
  499. text-decoration: none;
  500. font-size: 12px;
  501. }
  502. .suggestions-outer .no-suggest-items {
  503. color: #888;
  504. }
  505. .suggestions-outer .suggest-item.active {
  506. background: #ccc;
  507. }
  508. .suggestions-outer .suggest-item:hover {
  509. background: aliceblue;
  510. }
  511. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  512. .pro-dashboard-inline-calendar table.table-condensed {
  513. width: 100% !important;
  514. }
  515. .pro-dashboard-inline-calendar {
  516. border: 1px solid #ddd;
  517. border-radius: 3px
  518. }
  519. .pro-dashboard-inline-calendar table.table-condensed th {
  520. padding: 0.5rem 0;
  521. }
  522. .pro-dashboard-inline-calendar table.table-condensed td {
  523. padding: 0.25rem 0;
  524. }
  525. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  526. background: #c5e4ff;
  527. }
  528. [v-cloak] {
  529. opacity: 0;
  530. }
  531. .patient-avatar {
  532. width: 50px;
  533. height: 50px;
  534. background: #ddd;
  535. display: inline-flex;
  536. align-items: center;
  537. justify-content: center;
  538. border-radius: 100%;
  539. }
  540. .large {
  541. font-size: 16px !important;
  542. }
  543. /* note templates */
  544. .note-template-container {
  545. position: absolute;
  546. z-index: 10002;
  547. background: #fff;
  548. border: 1px solid #ddd;
  549. border-radius: 3px;
  550. display: none;
  551. min-width: 200px;
  552. }
  553. .note-template-container .note-template-item {
  554. position: relative;
  555. height: 25px;
  556. }
  557. .note-template-container .note-template-item .note-template-text {
  558. border-bottom: 1px solid #eee;
  559. }
  560. .note-template-container .note-template-item .label {
  561. padding: 3px 6px;
  562. padding-right: 25px;
  563. white-space: nowrap;
  564. display: inline-flex;
  565. align-items: center;
  566. min-width: 120px;
  567. cursor: pointer;
  568. flex-grow: 1;
  569. }
  570. .note-template-container .note-template-item:hover,
  571. .note-template-container .note-template-item.selected {
  572. background: aliceblue;
  573. }
  574. .note-template-container .note-template-item .label>input[type="checkbox"] {
  575. pointer-events: none;
  576. margin: 0;
  577. margin-right: 4px;
  578. height: 11px;
  579. }
  580. .note-template-container .note-template-item:last-child label {
  581. border: 0;
  582. }
  583. .note-template-container .note-template-item .note-template-children {
  584. position: absolute;
  585. left: 100%;
  586. top: 0;
  587. background: #fff;
  588. border: 1px solid #ddd;
  589. border-radius: 3px;
  590. display: none;
  591. }
  592. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  593. display: block;
  594. }*/
  595. .note-template-container .note-template-item .has-children {
  596. position: absolute;
  597. right: 6px;
  598. top: 0;
  599. height: 25px;
  600. line-height: 25px;
  601. color: #bbb;
  602. }
  603. .note-template-container .note-template-item:hover>.has-children {
  604. color: #444;
  605. }
  606. .note-templates-underlay {
  607. position: fixed;
  608. top: 0;
  609. left: 0;
  610. height: 100%;
  611. width: 100%;
  612. background: rgba(0,0,0,0.13);
  613. display: none;
  614. z-index: 10001;
  615. }
  616. .note-template-container textarea {
  617. height: 100px;
  618. border-radius: 0;
  619. border-color: #ccc;
  620. padding: 5px 10px;
  621. display: block;
  622. }
  623. .note-template-buttons {
  624. position: absolute;
  625. bottom: 100%;
  626. right: 0;
  627. height: 27px;
  628. padding: 0 3px;
  629. background: #fff;
  630. }
  631. .note-template-buttons button {
  632. font-size: 10px;
  633. padding: 2px 5px;
  634. margin-left: 5px;
  635. border-radius: 2px;
  636. }
  637. .note-template-buttons button:first-child {
  638. margin-left: 0;
  639. }
  640. .note-template-output {
  641. position: absolute;
  642. bottom: calc(100% + 26px);
  643. left: 0;
  644. padding: 3px 6px;
  645. background: #f7f7f7;
  646. min-width: 100%;
  647. border-radius: 3px;
  648. }
  649. .note-template-output-text {
  650. }
  651. .note-template-output .note-template-output-line {
  652. font-size: 11px;
  653. width: max-content;
  654. max-width: 500px;
  655. margin: 0;
  656. }
  657. .note-template-set-chooser {
  658. height: 22px;
  659. line-height: 22px;
  660. padding: 0 0.22rem;
  661. font-size: 12px !important;
  662. }
  663. .ql-editor .note-template-output-line {
  664. white-space: normal;
  665. }
  666. [prefix="(+)"] a.plus-trigger {
  667. color: #23a923 !important;
  668. }
  669. [prefix="(-)"] a.minus-trigger {
  670. color: #a91e1e !important;
  671. }
  672. .rspace {
  673. width: 20px;
  674. display: inline-flex;
  675. text-align: center;
  676. justify-content: center;
  677. }
  678. .embed-mask {
  679. position: fixed;
  680. left: 0;
  681. top: 0;
  682. height: 100%;
  683. width: 100%;
  684. background: rgba(0, 0, 0, 0.1);
  685. z-index: 98;
  686. }
  687. .embed-section {
  688. background: #fff;
  689. z-index: 99;
  690. padding: 0;
  691. border: 1px solid #ccc;
  692. }
  693. .mask-text-addition {
  694. position: fixed;
  695. bottom: calc(50% - 60px);
  696. left: 0;
  697. width: 100%;
  698. text-align: center;
  699. font-size: 12px;
  700. z-index: 9999999;
  701. color: #000;
  702. }
  703. .note-summary p {
  704. margin-bottom: 0.25rem;
  705. }
  706. .aligned-icon {
  707. display: inline-block;
  708. width: 18px;
  709. text-align: center;
  710. }
  711. body #searchCount {
  712. display: none !important;
  713. }
  714. body .break-spaces {
  715. white-space: pre-wrap;
  716. }
  717. .stag-tooltip .stag-tooltip-content {
  718. display: none;
  719. min-width: 200px;
  720. }
  721. .stag-tooltip:hover .stag-tooltip-content {
  722. display: block;
  723. right: -10px;
  724. top: 100%;
  725. z-index: 1;
  726. }
  727. .gem-nodes .node {
  728. border: 1px solid #ddd;
  729. padding: 0.75rem;
  730. border-radius: 5px;
  731. }
  732. .gem-nodes>.node {
  733. border: 0 !important;
  734. padding-left: 0;
  735. padding-right: 0;
  736. }
  737. .gem-nodes>.node:first-child {
  738. margin-top: 0 !important;
  739. }
  740. .gem-nodes>.node>label {
  741. font-weight: bold;
  742. font-size: 14px;
  743. margin: 0;
  744. }
  745. .gem-nodes .subs .node:last-child {
  746. margin-bottom: 0 !important;
  747. }
  748. .gem-nodes>.node>.subs {
  749. padding-left: 0 !important;
  750. }
  751. .gem-nodes>.node>.subs>.node {
  752. background: #f2f2f2;
  753. }
  754. .gem-nodes>.node>.subs>.node>.subs>.node {
  755. background: #fff;
  756. }
  757. .gem-nodes .node span[field] {
  758. font-weight: bold;
  759. }
  760. body .node input[type="number"] {
  761. max-width: 70px;
  762. min-width: unset !important;
  763. }
  764. .section-edit-mask {
  765. top: 0;
  766. left: 0;
  767. width: 100%;
  768. height: 100%;
  769. }
  770. .signed-note {
  771. position: relative;
  772. pointer-events: none !important;
  773. }
  774. .signed-note::after {
  775. content: '';
  776. position: absolute;
  777. z-index: 2;
  778. cursor: not-allowed;
  779. left: 0;
  780. top: 0;
  781. width: 100%;
  782. height: 100%;
  783. background: rgba(0,0,0,0.01);
  784. }
  785. .slot-picker {
  786. padding: 4px;
  787. padding-right: 0;
  788. padding-bottom: 0;
  789. }
  790. .slot-picker.disabled {
  791. opacity: 0.5;
  792. pointer-events: none;
  793. cursor: not-allowed;
  794. }
  795. .slot-picker td {
  796. text-align: center;
  797. border: 1px solid #ddd !important;
  798. padding: 2px 5px;
  799. cursor: pointer;
  800. }
  801. .slot-picker th {
  802. border: 0 !important;
  803. }
  804. .slot-picker td:hover {
  805. background: aliceblue;
  806. }
  807. .slot-picker td.blocked {
  808. background: #ccc !important;
  809. cursor: not-allowed;
  810. }
  811. .slot-picker td.selected {
  812. background-image: linear-gradient(to bottom,#08c,#04c);
  813. background-repeat: repeat-x;
  814. color: #fff;
  815. }
  816. .pro-appointment-calendar.disabled {
  817. opacity: 0.5;
  818. pointer-events: none;
  819. cursor: not-allowed;
  820. }
  821. .pro-appointment-calendar .datepicker-inline {
  822. width: 195px;
  823. padding-left: 0;
  824. }
  825. .pro-appointment-calendar .datepicker td {
  826. height: 25px;
  827. }
  828. .datepicker td, .datepicker th {
  829. border: none !important;
  830. }
  831. .appt-form-col {
  832. width: 220px;
  833. }
  834. .appt-calendar-col {
  835. flex-grow: 1;
  836. }
  837. .appt-form td.fc-day.stag-selected {
  838. outline: 2px solid #007bff;
  839. background: #e5f2fd;
  840. }
  841. .appt-form .stag-current-appt {
  842. background: #89159cc7;
  843. color: #fff;
  844. border-color: #89159cc7;
  845. }
  846. .appt-form .stag-current-appt .fc-daygrid-event-dot {
  847. border-color: #fff;
  848. }
  849. .appt-form .fc .fc-toolbar.fc-header-toolbar {
  850. margin-bottom: 0.5rem;
  851. /*align-items: start;*/
  852. }
  853. .stag-calendar-header-extra {
  854. background: #cde8ff;
  855. padding: 3px 10px;
  856. margin-top: 7px;
  857. border-top-left-radius: 6px;
  858. border-top-right-radius: 6px;
  859. border: 1px solid #44a5f982;
  860. border-bottom: 0;
  861. }
  862. .stag-calendar-header-extra * {
  863. font-size: 14px !important;
  864. }
  865. /* call panel */
  866. #proCallComponent {
  867. padding-bottom: 150px;
  868. }
  869. .patient-queue {
  870. display: flex;
  871. flex-direction: column;
  872. position: fixed;
  873. left: 0;
  874. width: 100%;
  875. bottom: 0;
  876. z-index: 4;
  877. }
  878. .queue-item {
  879. width: 100px;
  880. padding: 0.5rem;
  881. padding-bottom: 0.25rem;
  882. text-align: center;
  883. cursor: pointer;
  884. }
  885. .queue-item:hover {
  886. background: aliceblue;
  887. }
  888. .current-work-indicator {
  889. /*
  890. position: fixed;
  891. top: 55px;
  892. right: 0;
  893. z-index: 9999;
  894. */
  895. background: #305ba0;
  896. color: #fff;
  897. font-size: 12px;
  898. padding: 3px 8px;
  899. border-radius: 3px;
  900. /* border-bottom-left-radius: 5px;*/
  901. }
  902. /* stag popups */
  903. .stag-popup {
  904. position: fixed;
  905. left: 0;
  906. top: 55px;
  907. width: 100%;
  908. height: calc(100% - 55px);
  909. overflow-x: auto;
  910. z-index: 97;
  911. justify-content: center;
  912. align-items: center;
  913. display: none;
  914. background: center center no-repeat scroll rgba(0, 0, 0, 0.1);
  915. padding: 2rem 0;
  916. }
  917. .stag-popup.show {
  918. display: block;
  919. }
  920. .stag-popup>form {
  921. width: 80%;
  922. background: #fff;
  923. border: 1px solid #aaa;
  924. border-radius: 5px;
  925. overflow: hidden;
  926. box-shadow: 0 0 5px #ddd;
  927. margin: 0 auto;
  928. padding: 0.75rem;
  929. }
  930. .stag-popup.wide>form {
  931. width: calc(100% - 4rem);
  932. }
  933. .stag-popup.narrow>form {
  934. max-width: 500px;
  935. }
  936. .stag-popup.stag-popup-sm>form {
  937. max-width: 500px;
  938. }
  939. .stag-popup.stag-popup-md>form {
  940. max-width: 632pt;
  941. }
  942. .stag-popup.stag-popup-right>form {
  943. margin-right: 1.5rem;
  944. margin-left: auto;
  945. }
  946. .no-scroll {
  947. /*overflow: hidden;*/
  948. }
  949. .client-rs-contents p {
  950. margin-bottom: 0.25rem;
  951. }
  952. .pro-option {
  953. position: relative;
  954. display: block;
  955. padding-left: 30px;
  956. }
  957. .pro-option.pro-option-selected {
  958. display: inline-block;
  959. padding-left: 25px;
  960. }
  961. .pro-option .pro-option-initials {
  962. position: absolute;
  963. left: 5px;
  964. top: 2px;
  965. font-size: 10px;
  966. border-radius: 100%;
  967. height: 20px;
  968. width: 20px;
  969. line-height: 20px;
  970. text-align: center;
  971. font-weight: 400;
  972. }
  973. .pro-option.pro-option-selected .pro-option-initials {
  974. left: 3px;
  975. top: 0;
  976. font-size: 10px;
  977. border-radius: 100%;
  978. height: 18px;
  979. width: 18px;
  980. line-height: 19px;
  981. text-align: center;
  982. font-weight: 400;
  983. }
  984. span.pro-selection {
  985. padding: 0 5px;
  986. height: 18px;
  987. display: inline-block;
  988. border-top-right-radius: 3px;
  989. border-bottom-right-radius: 3px;
  990. }
  991. .select2-results__option--selectable {
  992. font-size: 13px;
  993. }
  994. #calendarApp .select2-selection__choice__display,
  995. #proCalendarApp .select2-selection__choice__display {
  996. padding: 0 !important;
  997. overflow: hidden !important;
  998. }
  999. span.select2-container.select2-container--default.select2-container--open {
  1000. z-index: 999999;
  1001. }
  1002. .fc .fc-highlight {
  1003. background: rgba(188, 232, 241, 0.6) !important;
  1004. }
  1005. .fc .add-overlay {
  1006. padding: 1px 4px;
  1007. display: inline-block;
  1008. font-weight: bold;
  1009. }
  1010. .fc .add-overlay.add-overlay-day-grid {
  1011. padding: 4px;
  1012. }
  1013. .stag-popup .stag-popup-title {
  1014. border-bottom: 1px solid #eee;
  1015. padding-bottom: 0.75rem;
  1016. margin-bottom: 1rem;
  1017. display: flex;
  1018. align-items: center;
  1019. }
  1020. .stag-popup .stag-popup-title>span {
  1021. font-size: 17px;
  1022. }
  1023. .fc .other-client {
  1024. box-shadow: 1px 1px 2px deeppink !important;
  1025. opacity: 0.5;
  1026. }
  1027. .fc .other-client:hover {
  1028. opacity: 0.8;
  1029. }
  1030. .fc .availability {
  1031. box-shadow: 0 0 3px green !important;
  1032. }
  1033. .fc .inactive-appointment {
  1034. opacity: 0.6;
  1035. box-shadow: 0 0 3px grey !important;
  1036. }
  1037. .fc .fc-button-primary:not(:disabled):active,
  1038. .fc .fc-button-primary:not(:disabled).fc-button-active {
  1039. border-color: #56a767 !important;
  1040. background-color: #56a767 !important;
  1041. }
  1042. .w-150 {
  1043. width: 150px !important;
  1044. min-width: 150px !important;
  1045. }
  1046. .w-180 {
  1047. width: 180px !important;
  1048. min-width: 180px !important;
  1049. }
  1050. .guest-view button.add-shortcut {
  1051. display: none;
  1052. }
  1053. .guest-view .note-section,
  1054. .guest-view .note-section:hover {
  1055. background: #fff !important;
  1056. }
  1057. #stagPdfViewer>form {
  1058. padding: 0;
  1059. background: #eee;
  1060. }
  1061. #stagPdfViewer>form .stag-popup-title {
  1062. background: #fff;
  1063. padding: 1rem;
  1064. }
  1065. canvas.pdf-viewer-page {
  1066. max-width: 100%;
  1067. margin: 1rem auto;
  1068. display: block;
  1069. box-shadow: 0 0 2px #aaa;
  1070. }
  1071. .hidden-link-input {
  1072. /*opacity: 0;
  1073. width: 0 !important;
  1074. border: 0 !important;
  1075. padding: 0 !important;*/
  1076. position: absolute;
  1077. left: -9999px;
  1078. }
  1079. table.table-edit-sheet tbody tr td {
  1080. padding: 0;
  1081. background: #f7f7f7;
  1082. }
  1083. table.table-edit-sheet tbody tr td>input,
  1084. table.table-edit-sheet tbody tr td>select {
  1085. box-shadow: none !important;
  1086. border-radius: 0 !important;
  1087. border: 0;
  1088. background: #fefefe;
  1089. width: 100% !important;
  1090. min-width: unset !important;
  1091. border-bottom: 1px solid #dee2e6;
  1092. }
  1093. table.table-edit-sheet tbody tr td input[type="text"],
  1094. table.table-edit-sheet tbody tr td select,
  1095. table.table-edit-sheet tbody tr td textarea {
  1096. box-shadow: none !important;
  1097. border-radius: 0 !important;
  1098. border: 0;
  1099. background: #fefefe;
  1100. min-width: unset !important;
  1101. border-bottom: 1px solid #dee2e6;
  1102. }
  1103. table.table-edit-sheet tbody tr td>input:focus,
  1104. table.table-edit-sheet tbody tr td>select:focus {
  1105. background: #fff;
  1106. outline: 3px solid #4b88a633;
  1107. }
  1108. table.table-edit-sheet tbody tr [contenteditable] {
  1109. background: #fff;
  1110. }
  1111. table.table-edit-sheet .ql-toolbar {
  1112. border-top: 0 !important;
  1113. }
  1114. table.table-edit-sheet .ql-container {
  1115. border-bottom: 0 !important;
  1116. }
  1117. table.table-edit-sheet .ql-editor[contenteditable] {
  1118. min-height: 90px;
  1119. }
  1120. .w-35 {
  1121. width: 35%;
  1122. }
  1123. .client-single-dashboard .hide-if-dashboard {
  1124. display: none;
  1125. }
  1126. .notes-list .hide-if-note,
  1127. .note-section .hide-if-note {
  1128. display: none;
  1129. }
  1130. .data-option-list {
  1131. position: absolute;
  1132. background: #fff;
  1133. border: 2px solid #ddd;
  1134. margin-top: -1px;
  1135. width: 100%;
  1136. z-index: 1;
  1137. display: none;
  1138. max-width: 250px;
  1139. box-shadow: 0 0 3px #ddd;
  1140. border-top: 0;
  1141. }
  1142. .data-option-list>div {
  1143. cursor: pointer;
  1144. padding: 0.2rem 0.5rem;
  1145. border-bottom: 1px solid #ddd;
  1146. color: #666;
  1147. font-size: 90%;
  1148. }
  1149. .data-option-list>div:last-child {
  1150. border-bottom: 0;
  1151. }
  1152. .data-option-list>div:hover {
  1153. background: aliceblue;
  1154. }
  1155. .measurement-item:not(:last-child) {
  1156. border-bottom: 1px solid #e7e7e7;
  1157. }
  1158. .assessment-detail-template>span {
  1159. margin: 0 !important;
  1160. padding: 0 !important;
  1161. border: 0 !important;
  1162. margin-left: -0.5rem !important;
  1163. position: static !important;
  1164. }
  1165. .assessment-detail-template>span>a {
  1166. display: none;
  1167. }
  1168. button.add-shortcut,
  1169. button.note-templates-trigger-assessment {
  1170. outline: none !important;
  1171. box-shadow: none !important;
  1172. }
  1173. .appt-calendar-col.click-through .fc-timegrid-event-harness {
  1174. pointer-events: none !important;
  1175. }
  1176. .claim-line:last-child td {
  1177. padding-bottom: 1.3rem;
  1178. }
  1179. .in-table-markup p:last-of-type {
  1180. margin-bottom: 0;
  1181. }
  1182. .suggestions-outer.pharmacy-suggestions {
  1183. left: 1rem;
  1184. width: calc(100% - 2rem);
  1185. }