style.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  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. .stag-primary-bg {
  42. background-color: var(--primary-color) !important;
  43. color: #fff;
  44. }
  45. .stag-primary-border {
  46. border-color: var(--primary-color) !important;
  47. }
  48. .navbar-brand {
  49. font-size: 25px;
  50. font-weight: 900;
  51. }
  52. .sidebar .nav-link {
  53. padding: .25rem 1rem;
  54. }
  55. .sidebar .nav-item {
  56. margin-right: 0;
  57. }
  58. .navbar-dark .nav-item .nav-link {
  59. color: #fff;
  60. }
  61. .dropdown-menu {
  62. margin-top: 7px;
  63. border-radius: 0;
  64. }
  65. .dropdown-item:not(:last-child) {
  66. border-bottom:1px solid #ddd;
  67. }
  68. main {
  69. padding:0 1rem;
  70. }
  71. /* ability to toggle the video pane (rhs) */
  72. .stag_rhs_toggle, .stag_rhs_toggle:hover {
  73. position: fixed;
  74. bottom: 0;
  75. right: 0;
  76. padding: 0.25rem 0.75rem;
  77. border-top-left-radius: 6px;
  78. background-color: var(--primary-color);
  79. color: #fff;
  80. z-index: 2;
  81. }
  82. body.stag_rhs_collapsed .v-split,
  83. body.stag_rhs_collapsed .app-right-panel {
  84. display: none !important;
  85. }
  86. .delete-column {
  87. width: 60px;
  88. }
  89. .m-negator {
  90. margin-left: -1.25rem !important;
  91. margin-right: -1.25rem !important;
  92. }
  93. .pl-3-5 {
  94. padding-left: 1.25rem !important;
  95. }
  96. .lh-24px {
  97. height: 24px;
  98. line-height: 24px;
  99. }
  100. .mcp-theme-1 *:not(i) {
  101. font-family: Verdana, sans-serif;
  102. font-size: 12px;
  103. }
  104. .mcp-theme-1 .font-size-11 {
  105. font-size: 11px;
  106. }
  107. .mcp-theme-1 .font-size-13 {
  108. font-size: 13px;
  109. }
  110. .mcp-theme-1 .font-underline {
  111. text-decoration: underline;
  112. }
  113. .mcp-theme-1 .on-hover-opaque {
  114. opacity: 0.6;
  115. }
  116. .mcp-theme-1 .on-hover-opaque:hover {
  117. opacity: 1;
  118. }
  119. .mcp-theme-1 a, .mcp-theme-1 a:link {
  120. color: rgb(13, 89, 175);
  121. }
  122. .mcp-theme-1 .btn.btn-primary {
  123. background: rgb(13, 89, 175);
  124. border-color: rgb(13, 89, 175);
  125. box-shadow: none;
  126. }
  127. .mcp-theme-1 .nav-item {
  128. margin: 0;
  129. }
  130. .mcp-theme-1 .nav-link:hover {
  131. background: #e3e3e394;
  132. }
  133. .mcp-theme-1 .nav-link.active {
  134. background: #e2e2e2;
  135. }
  136. .mcp-theme-1 .text-sm {
  137. font-size: 85%;
  138. }
  139. .mcp-theme-1 .text-sm-incl-children,
  140. .mcp-theme-1 .text-sm-incl-children *:not(i) {
  141. font-size: 0.8rem;
  142. }
  143. .mcp-theme-1 .minutes-label {
  144. width: 40px;
  145. }
  146. .mcp-theme-1 .memo-textarea {
  147. min-width: 200px;
  148. height: 60px;
  149. }
  150. .main-row {
  151. display: flex;
  152. flex-wrap: nowrap;
  153. margin-right: -15px;
  154. margin-left: -15px;
  155. }
  156. .main-row > .sidebar {
  157. width: 180px;
  158. min-width: 180px;
  159. }
  160. .main-row > main {
  161. flex-grow: 1;
  162. }
  163. html, body {
  164. height: 100%;
  165. }
  166. body>nav.navbar {
  167. height: 55px;
  168. }
  169. .stag-content {
  170. height: calc(100% - 55px);
  171. }
  172. [moe][large] form {
  173. width: 450px;
  174. }
  175. .moe-disabled[moe] {
  176. cursor: not-allowed;
  177. }
  178. .moe-disabled[moe] [start][show] {
  179. opacity: 0.5;
  180. pointer-events: none;
  181. }
  182. .mcp-theme-1 .stag-no-wrap-td {
  183. max-width: 260px;
  184. }
  185. .mcp-theme-1 .stag-no-wrap {
  186. max-width: 250px;
  187. overflow: hidden;
  188. text-overflow: ellipsis;
  189. white-space: nowrap;
  190. display: block;
  191. }
  192. .mcp-theme-1 .form-control.form-control-sm {
  193. min-width: 200px;
  194. }
  195. .mcp-theme-1 [large] .form-control.form-control-sm {
  196. min-width: unset;
  197. }
  198. [wide] .form-control.form-control-sm {
  199. min-width: 350px;
  200. }
  201. [moe][center] [url]:not([show]) {
  202. position: fixed;
  203. top: 10%;
  204. max-height: 88%;
  205. overflow-y: auto;
  206. overflow-x: hidden;
  207. left: calc(50% - 250px);
  208. width: 500px;
  209. }
  210. [moe][center] [url]:not([show]) .form-control.form-control-sm {
  211. min-width: unset;
  212. max-width: 100%;
  213. }
  214. .mcp-theme-1 .min-width-200px {
  215. min-width: 200px;
  216. }
  217. .mcp-theme-1 .min-width-300px {
  218. min-width: 300px;
  219. }
  220. .mcp-theme-1 .width-100px {
  221. width: 100px;
  222. min-width: unset !important;
  223. max-width: unset !important;
  224. }
  225. .mcp-theme-1 .max-width-300px {
  226. max-width: 300px;
  227. }
  228. .cancelled-item {
  229. opacity: 0.5;
  230. }
  231. .cancelled-item:not(.always-clickable) * {
  232. pointer-events: none;
  233. }
  234. .note-content {
  235. max-height: 300px;
  236. overflow-y: auto;
  237. }
  238. .note-content:not([auto-edit]) {
  239. padding: 1rem;
  240. padding-bottom: 0;
  241. cursor: pointer;
  242. position: relative;
  243. }
  244. .note-content:not(.cancelled):not([auto-edit]):not(.readonly):before {
  245. content: '(click to change)';
  246. display: block;
  247. color: #535353;
  248. padding-bottom: 0.3rem;
  249. }
  250. .mcp-theme-1 .ql-container, .mcp-theme-1 .ql-toolbar {
  251. border-left: 0;
  252. border-right: 0;
  253. }
  254. .mcp-theme-1 .ql-editor[contenteditable] {
  255. min-height: 100px;
  256. }
  257. .ql-container p {
  258. margin-top: 1rem;
  259. }
  260. .note-content ul {
  261. list-style: none !important;
  262. }
  263. .ql-editor ul > li::before {
  264. content: '';
  265. }
  266. .m-neg-4 {
  267. margin-left: -1.25rem;
  268. margin-right: -1.25rem;
  269. }
  270. .mcp-theme-1 .ql-toolbar .ql-formats * {
  271. font-size: 12px !important;
  272. }
  273. .mcp-theme-1 .ql-toolbar.ql-snow {
  274. padding: 3px;
  275. background: #f7f7f7;
  276. }
  277. .mcp-theme-1 .ql-snow .ql-picker {
  278. height: 22px;
  279. }
  280. .mcp-theme-1 .ql-snow.ql-toolbar button {
  281. height: 22px;
  282. width: 26px;
  283. }
  284. .rte-holder .ql-container p {
  285. margin-top: 0;
  286. margin-bottom: 0.3rem;
  287. }
  288. .note-section:not(.edit) .if-not-edit {
  289. display: block !important;
  290. }
  291. .note-section:not(.edit) div.if-not-edit {
  292. padding-left: 1rem;
  293. }
  294. .note-section:not(.edit):hover {
  295. background: #f6f9fc;
  296. cursor: pointer;
  297. }
  298. .note-section.edit .if-edit {
  299. display: block !important;
  300. }
  301. .c-pointer {
  302. cursor: pointer;
  303. }
  304. .inset-comment p {
  305. margin-bottom: 0.3rem;
  306. }
  307. .inset-comment p:last-child {
  308. margin-bottom: 0 !important;
  309. }
  310. .note-section.edit {
  311. background: #f0f8ff7d;
  312. outline: 2px solid #9de3ff;
  313. }
  314. .note-section.edit .ql-editor,
  315. .note-section.edit .btn-default {
  316. background-color: #fff !important;
  317. }
  318. /*.note-section-item-row:not(:first-child) {
  319. padding-top: 10px;
  320. border-top: 1px solid #ccc;
  321. }*/
  322. /* override med ac css */
  323. #searchResults {
  324. z-index: 100001 !important;
  325. }
  326. input.search_field, textarea.search_field {
  327. background-position: right 7px center !important;
  328. padding-right: 23px !important;
  329. }
  330. .ansList:focus, .search_field:focus {
  331. background-color: #fff !important;
  332. }
  333. @media (min-width: 1000px) {
  334. .navbar.navbar-dark {
  335. height: 55px;
  336. position: fixed;
  337. top: 0;
  338. left: 0;
  339. width: 100%;
  340. z-index: 9999;
  341. }
  342. .main-row > .sidebar {
  343. width: 180px;
  344. min-width: 180px;
  345. position: fixed;
  346. left: 0;
  347. top: 55px;
  348. z-index: 8;
  349. height: calc(100% - 55px);
  350. overflow-y: auto;
  351. }
  352. .main-row {
  353. padding-left: 180px;
  354. }
  355. .navbar.navbar-dark+[role="main"] {
  356. padding-top: 55px;
  357. }
  358. }
  359. .font-smaller {
  360. font-size: 11px !important;
  361. }
  362. .text-ellipsis {
  363. white-space: nowrap;
  364. overflow: hidden;
  365. text-overflow: ellipsis;
  366. }
  367. .outline-0 {
  368. outline: none !important;
  369. }
  370. .note-widget-item:hover {
  371. background: #eee;
  372. }
  373. .note-widget-title {
  374. background: #ccc !important;
  375. color: #333 !important;
  376. font-size: 12px !important;
  377. font-weight: bold !important;
  378. }
  379. .navbar-collapse.show {
  380. background: #1c4587;
  381. z-index: 999;
  382. padding: 0.5rem 1rem;
  383. margin: 0 -1rem;
  384. }
  385. .navbar-dark .nav-item .nav-link {
  386. font-size: 13px;
  387. }
  388. .suggestions-outer {
  389. top: calc(100% + 2px);
  390. background: #fff;
  391. width: calc(100% - 1rem);
  392. border-radius: 3px;
  393. border: 1px solid #ccc;
  394. z-index: 9999;
  395. }
  396. .suggestions-outer {
  397. top: calc(100% + 2px);
  398. background: #fff;
  399. width: calc(100% - 1rem);
  400. border-radius: 3px;
  401. border: 1px solid #ccc;
  402. z-index: 9999;
  403. max-height: 220px;
  404. overflow-y: auto;
  405. }
  406. .suggestions-outer .suggest-item, .suggestions-outer .no-suggest-items {
  407. padding: 0.25rem 0.5rem;
  408. text-decoration: none;
  409. font-size: 12px;
  410. }
  411. .suggestions-outer .no-suggest-items {
  412. color: #888;
  413. }
  414. .suggestions-outer .suggest-item.active {
  415. background: #ccc;
  416. }
  417. .suggestions-outer .suggest-item:hover {
  418. background: aliceblue;
  419. }
  420. .pro-dashboard-inline-calendar>.datepicker.datepicker-inline,
  421. .pro-dashboard-inline-calendar table.table-condensed {
  422. width: 100% !important;
  423. }
  424. .pro-dashboard-inline-calendar {
  425. border: 1px solid #ddd;
  426. border-radius: 3px
  427. }
  428. .pro-dashboard-inline-calendar table.table-condensed th {
  429. padding: 0.5rem 0;
  430. }
  431. .pro-dashboard-inline-calendar table.table-condensed td {
  432. padding: 0.25rem 0;
  433. }
  434. .pro-dashboard-inline-calendar table.table-condensed td[has-events] {
  435. background: #c5e4ff;
  436. }
  437. [v-cloak] {
  438. opacity: 0;
  439. }
  440. .patient-avatar {
  441. width: 50px;
  442. height: 50px;
  443. background: #ddd;
  444. display: inline-flex;
  445. align-items: center;
  446. justify-content: center;
  447. border-radius: 100%;
  448. }
  449. .large {
  450. font-size: 16px !important;
  451. }
  452. /* note templates */
  453. .note-template-container {
  454. position: absolute;
  455. z-index: 10002;
  456. background: #fff;
  457. border: 1px solid #ddd;
  458. border-radius: 3px;
  459. display: none;
  460. min-width: 200px;
  461. }
  462. .note-template-container .note-template-item {
  463. position: relative;
  464. height: 25px;
  465. }
  466. .note-template-container .note-template-item .note-template-text {
  467. border-bottom: 1px solid #eee;
  468. }
  469. .note-template-container .note-template-item .label {
  470. padding: 3px 6px;
  471. padding-right: 25px;
  472. white-space: nowrap;
  473. display: inline-flex;
  474. align-items: center;
  475. min-width: 120px;
  476. cursor: pointer;
  477. flex-grow: 1;
  478. }
  479. .note-template-container .note-template-item:hover,
  480. .note-template-container .note-template-item.selected {
  481. background: aliceblue;
  482. }
  483. .note-template-container .note-template-item .label>input[type="checkbox"] {
  484. pointer-events: none;
  485. margin: 0;
  486. margin-right: 4px;
  487. height: 11px;
  488. }
  489. .note-template-container .note-template-item:last-child label {
  490. border: 0;
  491. }
  492. .note-template-container .note-template-item .note-template-children {
  493. position: absolute;
  494. left: 100%;
  495. top: 0;
  496. background: #fff;
  497. border: 1px solid #ddd;
  498. border-radius: 3px;
  499. display: none;
  500. }
  501. /*.note-template-container .note-template-item.selected:hover>.note-template-children {
  502. display: block;
  503. }*/
  504. .note-template-container .note-template-item .has-children {
  505. position: absolute;
  506. right: 6px;
  507. top: 0;
  508. height: 25px;
  509. line-height: 25px;
  510. color: #bbb;
  511. }
  512. .note-template-container .note-template-item:hover>.has-children {
  513. color: #444;
  514. }
  515. .note-templates-underlay {
  516. position: fixed;
  517. top: 0;
  518. left: 0;
  519. height: 100%;
  520. width: 100%;
  521. background: rgba(0,0,0,0.13);
  522. display: none;
  523. z-index: 10001;
  524. }
  525. .note-template-container textarea {
  526. height: 100px;
  527. border-radius: 0;
  528. border-color: #ccc;
  529. padding: 5px 10px;
  530. display: block;
  531. }
  532. .note-template-buttons {
  533. position: absolute;
  534. bottom: 100%;
  535. right: 0;
  536. height: 27px;
  537. padding: 0 3px;
  538. background: #fff;
  539. }
  540. .note-template-buttons button {
  541. font-size: 10px;
  542. padding: 2px 5px;
  543. margin-left: 5px;
  544. border-radius: 2px;
  545. }
  546. .note-template-buttons button:first-child {
  547. margin-left: 0;
  548. }
  549. .note-template-output {
  550. position: absolute;
  551. bottom: calc(100% + 26px);
  552. left: 0;
  553. padding: 3px 6px;
  554. background: #f7f7f7;
  555. min-width: 100%;
  556. border-radius: 3px;
  557. }
  558. .note-template-output-text {
  559. }
  560. .note-template-output .note-template-output-line {
  561. font-size: 11px;
  562. width: max-content;
  563. max-width: 500px;
  564. margin: 0;
  565. }
  566. .note-template-set-chooser {
  567. height: 22px;
  568. line-height: 22px;
  569. padding: 0 0.22rem;
  570. font-size: 12px !important;
  571. }
  572. .ql-editor .note-template-output-line {
  573. white-space: normal;
  574. }
  575. [prefix="(+)"] a.plus-trigger {
  576. color: #23a923 !important;
  577. }
  578. [prefix="(-)"] a.minus-trigger {
  579. color: #a91e1e !important;
  580. }
  581. .rspace {
  582. width: 20px;
  583. display: inline-flex;
  584. text-align: center;
  585. justify-content: center;
  586. }
  587. .embed-mask {
  588. position: fixed;
  589. left: 0;
  590. top: 0;
  591. height: 100%;
  592. width: 100%;
  593. background: rgba(0, 0, 0, 0.1);
  594. z-index: 98;
  595. }
  596. .embed-section {
  597. background: #fff;
  598. z-index: 99;
  599. padding: 0;
  600. border: 1px solid #ccc;
  601. }
  602. .mask-text-addition {
  603. position: fixed;
  604. bottom: calc(50% - 60px);
  605. left: 0;
  606. width: 100%;
  607. text-align: center;
  608. font-size: 12px;
  609. z-index: 9999999;
  610. color: #000;
  611. }
  612. .note-summary p {
  613. margin-bottom: 0.25rem;
  614. }
  615. .aligned-icon {
  616. display: inline-block;
  617. width: 18px;
  618. text-align: center;
  619. }
  620. body #searchCount {
  621. display: none !important;
  622. }
  623. body .break-spaces {
  624. white-space: pre-wrap;
  625. }
  626. .stag-tooltip .stag-tooltip-content {
  627. display: none;
  628. min-width: 200px;
  629. }
  630. .stag-tooltip:hover .stag-tooltip-content {
  631. display: block;
  632. right: -10px;
  633. top: 100%;
  634. z-index: 1;
  635. }
  636. .gem-nodes .node {
  637. border: 1px solid #ddd;
  638. padding: 0.75rem;
  639. border-radius: 5px;
  640. }
  641. .gem-nodes>.node {
  642. border: 0 !important;
  643. padding-left: 0;
  644. padding-right: 0;
  645. }
  646. .gem-nodes>.node:first-child {
  647. margin-top: 0 !important;
  648. }
  649. .gem-nodes>.node>label {
  650. font-weight: bold;
  651. font-size: 14px;
  652. margin: 0;
  653. }
  654. .gem-nodes .subs .node:last-child {
  655. margin-bottom: 0 !important;
  656. }
  657. .gem-nodes>.node>.subs {
  658. padding-left: 0 !important;
  659. }
  660. .gem-nodes>.node>.subs>.node {
  661. background: #f2f2f2;
  662. }
  663. .gem-nodes>.node>.subs>.node>.subs>.node {
  664. background: #fff;
  665. }
  666. .gem-nodes .node span[field] {
  667. font-weight: bold;
  668. }
  669. body .node input[type="number"] {
  670. max-width: 70px;
  671. min-width: unset !important;
  672. }
  673. .section-edit-mask {
  674. top: 0;
  675. left: 0;
  676. width: 100%;
  677. height: 100%;
  678. }
  679. .signed-note {
  680. position: relative;
  681. pointer-events: none !important;
  682. }
  683. .signed-note::after {
  684. content: '';
  685. position: absolute;
  686. z-index: 2;
  687. cursor: not-allowed;
  688. left: 0;
  689. top: 0;
  690. width: 100%;
  691. height: 100%;
  692. background: rgba(0,0,0,0.01);
  693. }
  694. .slot-picker {
  695. padding: 4px;
  696. padding-right: 0;
  697. padding-bottom: 0;
  698. }
  699. .slot-picker.disabled {
  700. opacity: 0.5;
  701. pointer-events: none;
  702. cursor: not-allowed;
  703. }
  704. .slot-picker td {
  705. text-align: center;
  706. border: 1px solid #ddd !important;
  707. padding: 2px 5px;
  708. cursor: pointer;
  709. }
  710. .slot-picker th {
  711. border: 0 !important;
  712. }
  713. .slot-picker td:hover {
  714. background: aliceblue;
  715. }
  716. .slot-picker td.blocked {
  717. background: #ccc !important;
  718. cursor: not-allowed;
  719. }
  720. .slot-picker td.selected {
  721. background-image: linear-gradient(to bottom,#08c,#04c);
  722. background-repeat: repeat-x;
  723. color: #fff;
  724. }
  725. .pro-appointment-calendar.disabled {
  726. opacity: 0.5;
  727. pointer-events: none;
  728. cursor: not-allowed;
  729. }
  730. .pro-appointment-calendar .datepicker-inline {
  731. width: 195px;
  732. padding-left: 0;
  733. }
  734. .pro-appointment-calendar .datepicker td {
  735. height: 25px;
  736. }
  737. .datepicker td, .datepicker th {
  738. border: none !important;
  739. }