style.css 71 KB

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