style.css 68 KB

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