zammad.css.scss 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286
  1. $supergood-color: hsl(145,51%,45%);
  2. $good-color: hsl(62,45%,46%);
  3. $ok-color: hsl(41,100%,49%);
  4. $bad-color: hsl(30,93%,50%);
  5. $superbad-color: hsl(19,90%,51%);
  6. $minWidth: 1024px;
  7. $sidebarWidth: 280px;
  8. $navigationWidth: 260px;
  9. html {
  10. height: 100%;
  11. }
  12. body {
  13. font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  14. line-height: 1.45;
  15. font-weight: normal;
  16. background: hsl(210,17%,98%);
  17. height: 100%;
  18. color: hsl(198,19%,72%);
  19. word-break: break-all;
  20. display: flex;
  21. flex-direction: column;
  22. }
  23. p {
  24. margin: 14px 0;
  25. word-break: normal;
  26. color: hsl(60,1%,34%);
  27. max-width: 500px;
  28. }
  29. .u-highlight {
  30. color: #0F94D6;
  31. }
  32. .u-dontfold {
  33. flex-shrink: 0;
  34. }
  35. a {
  36. outline: none !important;
  37. @extend .u-highlight;
  38. }
  39. a.create {
  40. color: hsl(145,51%,45%);
  41. text-decoration: underline;
  42. }
  43. small {
  44. color: #c6c6c5;
  45. font-size: 12px;
  46. }
  47. blockquote {
  48. font-size: inherit;
  49. }
  50. #app {
  51. display: flex;
  52. flex: 1;
  53. min-width: $minWidth;
  54. }
  55. .u-unclickable {
  56. pointer-events: none;
  57. }
  58. .u-clickable {
  59. pointer-events: auto;
  60. cursor: pointer;
  61. user-select: none;
  62. }
  63. .u-textTruncate {
  64. white-space: nowrap;
  65. overflow: hidden;
  66. text-overflow: ellipsis;
  67. }
  68. .u-positionOrigin {
  69. position: relative;
  70. }
  71. .zIndex-1,
  72. .zIndex-2,
  73. .zIndex-3,
  74. .zIndex-4,
  75. .zIndex-5,
  76. .zIndex-6,
  77. .zIndex-7,
  78. .zIndex-8,
  79. .zIndex-9,
  80. .zIndex-10 {
  81. position: relative;
  82. }
  83. .zIndex-1 {
  84. z-index: 100;
  85. }
  86. .zIndex-2 {
  87. z-index: 200;
  88. }
  89. .zIndex-3 {
  90. z-index: 300;
  91. }
  92. .zIndex-4 {
  93. z-index: 400;
  94. }
  95. .zIndex-5 {
  96. z-index: 500;
  97. }
  98. .zIndex-6 {
  99. z-index: 600;
  100. }
  101. .zIndex-7 {
  102. z-index: 700;
  103. }
  104. .zIndex-8 {
  105. z-index: 800;
  106. }
  107. .zIndex-9 {
  108. z-index: 900;
  109. }
  110. .zIndex-10 {
  111. z-index: 1000;
  112. }
  113. .clickCatcher {
  114. top: 0;
  115. left: 0;
  116. width: 100%;
  117. height: 100%;
  118. position: absolute;
  119. cursor: default;
  120. }
  121. .debug .clickCatcher {
  122. background: hsla(0,100%,50%,.13);
  123. }
  124. .debug .clickCatcher + .clickCatcher {
  125. background: hsla(50,100%,50%,.13);
  126. }
  127. .clearfix:after {
  128. visibility: hidden;
  129. display: block;
  130. font-size: 0;
  131. content: " ";
  132. clear: both;
  133. height: 0;
  134. }
  135. .clearfix { display: inline-block; }
  136. /* start commented backslash hack \*/
  137. * html .clearfix { height: 1%; }
  138. .clearfix { display: block; }
  139. /* close commented backslash hack */
  140. [contenteditable] {
  141. display: block;
  142. outline-style: none;
  143. border-radius: 3px;
  144. /* needed to make empty tags editable, otherwise no focus can be set */
  145. min-height: 10px;
  146. min-width: 20px;
  147. }
  148. [contenteditable]:hover,
  149. [contenteditable]:focus {
  150. background: #f8f9fa;
  151. }
  152. [contenteditable]:focus {
  153. text-overflow: clip !important;
  154. }
  155. [contenteditable].invalid {
  156. background: #F92;
  157. }
  158. [contenteditable] > .placeholder {
  159. color: #999;
  160. }
  161. [contenteditable] p {
  162. margin: 0;
  163. }
  164. /* fix for placeholder */
  165. .Medium-placeholder {
  166. position: relative;
  167. }
  168. .close,
  169. .close:hover {
  170. float: none;
  171. opacity: 1;
  172. }
  173. #app > nav {
  174. position: relative;
  175. z-index: 1;
  176. }
  177. /* tooltip */
  178. a[data-tooltip],
  179. time[data-tooltip],
  180. span[data-tooltip] {
  181. position: relative;
  182. }
  183. a[data-tooltip]:before,
  184. time[data-tooltip]:before,
  185. span[data-tooltip]:before,
  186. a[data-tooltip]:after,
  187. time[data-tooltip]:after,
  188. span[data-tooltip]:after {
  189. content: "";
  190. position: absolute;
  191. transform: scale(0);
  192. opacity: 0;
  193. transition: transform 300ms cubic-bezier(0.34,1.6,0.71,1), opacity 300ms;
  194. }
  195. a[data-tooltip]:before,
  196. time[data-tooltip]:before,
  197. span[data-tooltip]:before {
  198. left: 0;
  199. top: -34px;
  200. background-color: #c6c6c5;
  201. color: #ffffff;
  202. height: 26px;
  203. line-height: 27px;
  204. border-radius: 5px;
  205. padding: 0 13px;
  206. content: attr(data-tooltip);
  207. white-space: nowrap;
  208. transform-origin: 17px 26px;
  209. }
  210. a[data-tooltip]:after,
  211. time[data-tooltip]:after,
  212. span[data-tooltip]:after {
  213. left: 13px;
  214. top: -8px;
  215. border-top: 7px solid #c6c6c5;
  216. border-left: 7px solid transparent;
  217. border-right: 7px solid transparent;
  218. transform-origin: 4px 0;
  219. }
  220. a[data-tooltip]:hover:after,
  221. a[data-tooltip]:hover:before,
  222. time[data-tooltip]:hover:after,
  223. time[data-tooltip]:hover:before,
  224. span[data-tooltip]:hover:after,
  225. span[data-tooltip]:hover:before {
  226. transform: scale(1);
  227. opacity: 1;
  228. transition: transform 300ms 1.5s cubic-bezier(0.34,1.6,0.71,1), opacity 300ms 1.5s;
  229. }
  230. .textarea::-webkit-input-placeholder,
  231. .form-control::-webkit-input-placeholder,
  232. .token-input::-webkit-input-placeholder { color: hsl(0,0%,80%); }
  233. .textarea::-moz-placeholder,
  234. .form-control::-moz-placeholder,
  235. .token-input::-moz-placeholder { opacity: 1; color: hsl(0,0%,80%); }
  236. .textarea:-ms-input-placeholder,
  237. .form-control:-ms-input-placeholder,
  238. .token-input:-ms-input-placeholder { color: hsl(0,0%,80%); }
  239. .btn,
  240. .btn:hover,
  241. .btn:focus {
  242. font-size: 14px;
  243. padding: 10px 24px 9px;
  244. color: hsl(202,68%,54%);
  245. background: white;
  246. border-color: rgba(0,0,0,.1);
  247. outline: none !important;
  248. &.btn--slim {
  249. padding-left: 12px;
  250. padding-right: 12px;
  251. }
  252. &.is-disabled {
  253. pointer-events: none;
  254. cursor: not-allowed;
  255. opacity: .33;
  256. }
  257. &:active {
  258. box-shadow: none;
  259. background: hsl(0,0%,98%);
  260. }
  261. &.btn--action {
  262. text-transform: uppercase;
  263. color: hsl(0,0%,60%);
  264. font-size: 12px;
  265. letter-spacing: 0.1em;
  266. height: 31px;
  267. padding: 6px 11px !important;
  268. display: inline-flex;
  269. align-items: center;
  270. &.btn--slim {
  271. padding-left: 7px !important;
  272. padding-right: 7px !important;
  273. }
  274. }
  275. // used in .recipientList-controls
  276. &.btn--onDark {
  277. background: none;
  278. color: white;
  279. svg {
  280. fill: currentColor;
  281. opacity: 1;
  282. }
  283. }
  284. &.btn--primary {
  285. color: white;
  286. background: hsl(203,65%,55%);
  287. &:active {
  288. background: hsl(203,65%,45%);
  289. }
  290. }
  291. &.btn--success {
  292. color: white;
  293. background: hsl(145,51%,45%);
  294. &:active {
  295. background: hsl(145,51%,35%);
  296. }
  297. }
  298. &.btn--danger {
  299. color: white;
  300. background: hsl(0,65%,55%);
  301. &:active {
  302. background: hsl(0,65%,45%);
  303. }
  304. }
  305. &.btn--text {
  306. padding-left: 0;
  307. padding-right: 0;
  308. color: hsl(203,65%,55%);
  309. border: none;
  310. background: none;
  311. &:active {
  312. color: hsl(203,65%,45%);
  313. }
  314. }
  315. &.btn--subtle {
  316. padding-left: 0;
  317. padding-right: 0;
  318. border: none;
  319. color: rgba(0,0,0,.32);
  320. text-decoration: underline;
  321. background: none;
  322. @extend .u-clickable;
  323. &:active {
  324. color: rgba(0,0,0,.42);
  325. }
  326. &:hover {
  327. color: rgba(0,0,0,.5);
  328. }
  329. + .btn:not(.align-right) {
  330. margin-left: 20px;
  331. }
  332. }
  333. &.btn--split--first {
  334. border-radius: 3px 0 0 3px;
  335. }
  336. &.btn--split,
  337. &.btn--split--last {
  338. border-radius: 0;
  339. border-left: none;
  340. margin-left: 0;
  341. }
  342. &.btn--split--last {
  343. border-radius: 0 3px 3px 0;
  344. }
  345. }
  346. .btn + .btn {
  347. margin-left: 10px;
  348. }
  349. .btn + .btn.align-right {
  350. margin-left: auto;
  351. }
  352. .subtle-link.align-right ~ .btn,
  353. .btn.align-right ~ .btn {
  354. margin-left: 15px;
  355. }
  356. .vertical > .btn + .btn {
  357. margin-left: 0;
  358. margin-top: 10px;
  359. }
  360. .btn--download .icon-download {
  361. margin-right: 6px;
  362. margin-top: 4px;
  363. margin-left: -10px;
  364. vertical-align: top;
  365. fill: white;
  366. }
  367. .btn-label {
  368. margin-left: 7px;
  369. }
  370. .visibility-change {
  371. /*
  372. Interactive Visibility Change Classes:
  373. <div class="visibility-change">
  374. <svg class="icon-marker" data-visible="active"><use xlink:href="#icon-marker" /></svg>
  375. </div>
  376. Important: HTML Order active > hover > normal
  377. */
  378. [data-visible=active],
  379. [data-visible=hover] {
  380. display: none;
  381. }
  382. &.is-active [data-visible=active] {
  383. display: block;
  384. & ~ [data-visible=normal] {
  385. display: none
  386. }
  387. }
  388. &:hover [data-visible=hover] {
  389. display: block;
  390. & ~ [data-visible=normal] {
  391. display: none
  392. }
  393. }
  394. }
  395. table {
  396. table-layout: fixed;
  397. }
  398. .table {
  399. display: table;
  400. }
  401. .table .table-row {
  402. display: table-row;
  403. }
  404. .table th:not(.noTruncate),
  405. .table td:not(.noTruncate) {
  406. @extend .u-textTruncate;
  407. }
  408. .table > thead > tr > th {
  409. padding: 12px 9px 10px;
  410. border-bottom: none;
  411. border-top: 1px solid #ececec;
  412. background: #f0f1f2;
  413. color: #444a4f;
  414. font-weight: normal;
  415. font-size: 12px;
  416. text-transform: uppercase;
  417. letter-spacing: 1px;
  418. }
  419. .table > tbody > tr > td {
  420. padding: 10px 9px 9px;
  421. border: none;
  422. box-shadow: 0 1px rgba(0,0,0,.02);
  423. }
  424. .table-hover > tbody > tr:hover > td {
  425. background: white;
  426. box-shadow:
  427. 0 1px rgba(0,0,0,.02),
  428. 0 -1px rgba(0,0,0,.02);
  429. }
  430. .table-hover > tbody > tr:hover > th {
  431. background: rgba(0,8,14,.015);
  432. }
  433. .table > thead:first-child > tr:first-child > th.no-padding,
  434. .table > thead > tr > th.no-padding,
  435. .table > tbody > tr > td.no-padding {
  436. padding: 0;
  437. }
  438. .table tr.is-inactive {
  439. opacity: 0.5;
  440. text-decoration: line-through;
  441. a {
  442. color: #bbb;
  443. }
  444. }
  445. .table .icon-trash {
  446. vertical-align: middle;
  447. fill: hsl(240,1%,77%);
  448. }
  449. .table .icon-priority {
  450. vertical-align: middle;
  451. margin-top: -3px;
  452. }
  453. .input-replacement {
  454. padding: 0;
  455. margin: 0;
  456. height: 38px;
  457. @extend .u-clickable;
  458. display: flex;
  459. align-items: center;
  460. justify-content: center;
  461. }
  462. .input-replacement input,
  463. .input-replacement input:not(:checked) ~ .icon-checked,
  464. .input-replacement input:checked ~ .icon-unchecked {
  465. display: none;
  466. }
  467. .table .priority.icon:after {
  468. background: #f8f9fa;
  469. }
  470. .table .table-cell {
  471. vertical-align: top;
  472. display: table-cell;
  473. border-bottom: 1px solid #eeeeee;
  474. }
  475. .hero-two {
  476. width: 100%;
  477. }
  478. .hero-two .hero-left {
  479. width: 50%;
  480. float: left;
  481. }
  482. .hero-two .hero-right {
  483. width: 50%;
  484. float: right;
  485. }
  486. .panel-title {
  487. font-size: 14px;
  488. }
  489. #task {
  490. position: fixed;
  491. display: table;
  492. width: 100%;
  493. min-width: 1000px;
  494. top: 46px;
  495. display: none;
  496. }
  497. #task > .taskbar {
  498. display: table-row;
  499. z-index: 1040;
  500. }
  501. #task > .taskbar > div {
  502. padding: 0 4px 4px 4px;
  503. display: table-cell;
  504. }
  505. #task .task {
  506. @extend .u-textTruncate;
  507. max-width: 120px;
  508. display: inline-block;
  509. }
  510. #task .task > a,
  511. #task .task > a:hover {
  512. color: #ffffff;
  513. text-decoration: none;
  514. }
  515. #task .btn-default .task > a,
  516. #task .btn-default .task > a:hover {
  517. color: #333333;
  518. }
  519. #task .taskbar .btn-small {
  520. padding: 3px 8px 4px;
  521. margin-top: 2px;
  522. font-size: 11px;
  523. font-weight: 300;
  524. }
  525. #task .taskbar .btn-default {
  526. background-color: #c3c3c3;
  527. border-color: #c3c3c3;
  528. }
  529. #task [data-type="close"] {
  530. margin-left: 5px;
  531. font-size: 13px;
  532. top: 1px;
  533. }
  534. #task .taskbar-items {
  535. }
  536. #task .taskbar-new {
  537. text-align: right;
  538. padding-right: 12px;
  539. }
  540. .max-size-scroll {
  541. max-height: 240px;
  542. overflow-y: scroll;
  543. }
  544. .inactive {
  545. color: #ddd !important;
  546. }
  547. /*
  548. #content > *:not(.active) {
  549. display: none !important;
  550. }
  551. */
  552. h1, h2, h3, h4, h5, h6 {
  553. font-weight: normal;
  554. color: hsl(202,8%,28%);
  555. }
  556. h1 {
  557. font-size: 23px;
  558. line-height: 29px;
  559. }
  560. h2,
  561. h2.popover-title {
  562. font-size: 19px;
  563. line-height: 25px;
  564. }
  565. h3 {
  566. font-size: 13px;
  567. margin: 14px 0 6px;
  568. color: #a9bcc4;
  569. font-weight: 200;
  570. text-transform: uppercase;
  571. letter-spacing: 0.07em;
  572. }
  573. h4 {
  574. font-size: 20px;
  575. }
  576. h5 {
  577. font-size: 16px;
  578. }
  579. label,
  580. .checkbox.form-group label {
  581. text-transform: uppercase;
  582. color: hsl(198,19%,72%);
  583. display: block;
  584. font-size: 12px;
  585. font-weight: normal;
  586. letter-spacing: 0.1em;
  587. margin-bottom: 4px;
  588. text-align: left;
  589. padding: 0;
  590. }
  591. fieldset {
  592. margin: 0 -4px;
  593. @extend .clearfix;
  594. }
  595. fieldset .form-group {
  596. padding: 0 4px;
  597. &:last-child {
  598. margin-bottom: 0;
  599. }
  600. }
  601. fieldset > *:not(.form-group) .form-control {
  602. margin-left: 4px;
  603. margin-right: 4px;
  604. }
  605. .form-group {
  606. margin-bottom: 16px;
  607. }
  608. .form-group + .form-group {
  609. margin-top: 0;
  610. }
  611. .formGroup-label {
  612. padding: 0 2px;
  613. margin-bottom: 6px;
  614. position: relative;
  615. display: flex;
  616. align-items: center;
  617. label {
  618. margin: 0;
  619. }
  620. .bookmark.icon {
  621. margin-bottom: -1px;
  622. }
  623. }
  624. .formGroup-bookmark {
  625. @extend .u-clickable;
  626. display: flex;
  627. align-items: center;
  628. flex-direction: row-reverse;
  629. width: 30px;
  630. height: 30px;
  631. position: absolute;
  632. right: 0;
  633. top: -10px;
  634. }
  635. .form-group .controls .richtext {
  636. position: relative;
  637. height: auto;
  638. }
  639. .form-group .help-message {
  640. cursor: help;
  641. opacity: 0.2;
  642. top: -2px;
  643. position: relative;
  644. margin-left: auto;
  645. .icon-help {
  646. display: block;
  647. }
  648. }
  649. .form-group:not(.formGroup--halfSize) {
  650. clear: left;
  651. }
  652. .form-group.formGroup--halfSize {
  653. width: 50%;
  654. float: left;
  655. }
  656. .fromGroup--standalone .form-control {
  657. margin-bottom: 0;
  658. }
  659. input[type="radio"],
  660. input[type="checkbox"] {
  661. margin: 0;
  662. }
  663. input[type=text],
  664. input[type=password],
  665. input[type=email],
  666. textarea,
  667. .form-control,
  668. .checkbox.form-group .checkbox {
  669. display: block;
  670. padding: 6px 12px;
  671. width: 100%;
  672. height: 41px;
  673. font-size: 14px;
  674. font-weight: normal;
  675. line-height: 22px;
  676. color: #555;
  677. background: white;
  678. border: 1px solid hsl(0, 0%, 90%);
  679. border-radius: 3px;
  680. transition: none;
  681. box-shadow: none;
  682. outline: none;
  683. -webkit-appearance: none;
  684. appearance: none;
  685. }
  686. .form-control:focus,
  687. .form-control.focus,
  688. .tokenfield.focus {
  689. border-color: hsl(200,71%,59%);
  690. box-shadow: 0 0 0 3px hsl(201,62%,90%);
  691. }
  692. .richtext.form-control {
  693. padding-bottom: 28px;
  694. }
  695. .richtext.form-control [contenteditable] {
  696. height: auto;
  697. min-height: 82px;
  698. background: none;
  699. }
  700. textarea.form-control {
  701. height: 118px;
  702. }
  703. select.form-control {
  704. padding-left: 10px;
  705. padding-right: 34px;
  706. }
  707. .form-control[disabled],
  708. .form-control[readonly] {
  709. cursor: not-allowed;
  710. background-color: #fff;
  711. color: #d5d5d5;
  712. opacity: 1;
  713. }
  714. .form-control + .icon-arrow-down {
  715. position: absolute;
  716. right: 12px;
  717. top: 50%;
  718. margin-top: -3px;
  719. fill: black;
  720. opacity: 0.39;
  721. width: 13px;
  722. height: 7px;
  723. @extend .u-unclickable;
  724. }
  725. /*
  726. Firefox only hack
  727. -----------------
  728. Firefox below version 35 doesn't allow us to
  729. hide the dropdown arrow but we want to replace
  730. it with our own icon. So we have to hide our own
  731. icon in Firefox versions under 35.
  732. The class is set via Javascript
  733. */
  734. html.ff-lt-35 .form-control + .icon-arrow-down {
  735. display: none;
  736. }
  737. select::-ms-expand {
  738. display: none;
  739. }
  740. .has-error .form-control,
  741. .has-error .form-control:focus,
  742. .has-error .form-control.focus {
  743. box-shadow: none;
  744. border-color: red !important;
  745. }
  746. input.has-error {
  747. box-shadow: none;
  748. border-color: red !important;
  749. }
  750. .help-inline:not(:empty) {
  751. color: red;
  752. padding: 2px;
  753. font-size: 13px;
  754. }
  755. .content {
  756. overflow: auto;
  757. position: relative;
  758. background-color: #f8f9fa;
  759. }
  760. .content.fit {
  761. padding: 10px;
  762. background: #2c2d36;
  763. z-index: 501;
  764. }
  765. .fullscreenMessage {
  766. padding: 22px;
  767. display: flex;
  768. align-items: center;
  769. justify-content: center;
  770. flex: 1;
  771. svg,
  772. .icon {
  773. margin-right: 14px;
  774. }
  775. h2 {
  776. margin: 0;
  777. }
  778. }
  779. .selected-clue {
  780. @extend .zIndex-9;
  781. }
  782. .modal--clue {
  783. display: flex;
  784. align-items: center;
  785. justify-content: center;
  786. @extend .zIndex-8;
  787. .modal-backdrop {
  788. bottom: 0;
  789. }
  790. .modal-spacer {
  791. position: absolute;
  792. opacity: 0;
  793. padding: 18px;
  794. &.is-visible {
  795. opacity: 1;
  796. }
  797. }
  798. .modal-arrow {
  799. background: inherit;
  800. width: 20px;
  801. height: 20px;
  802. position: absolute;
  803. margin: -10px 0 53px -10px;
  804. left: 0;
  805. top: 50%;
  806. transform: rotate(45deg);
  807. }
  808. .modal-spacer.is-above .modal-arrow {
  809. left: 50%;
  810. top: 100%;
  811. background: hsl(210,5%,97%);
  812. }
  813. .modal-spacer.is-below .modal-arrow {
  814. left: 50%;
  815. top: 0;
  816. }
  817. .modal-spacer.is-left .modal-arrow {
  818. left: 100%;
  819. top: 50%;
  820. }
  821. .modal-content {
  822. border: none;
  823. width: 300px;
  824. box-shadow:
  825. 0 8px 17px 0 rgba(0, 0, 0, 0.1),
  826. 0 6px 20px 0 rgba(0, 0, 0, 0.05);
  827. }
  828. .modal-controls {
  829. background: hsl(210,5%,97%);
  830. margin: 23px 0 0;
  831. padding: 7px 10px;
  832. display: flex;
  833. align-items: center;
  834. justify-content: space-between;
  835. }
  836. .modal-control {
  837. padding-left: 14px;
  838. padding-right: 14px;
  839. .btn.is-disabled {
  840. opacity: 1;
  841. color: hsl(240,5%,83%);
  842. }
  843. }
  844. .modal-header {
  845. padding-bottom: 7px;
  846. font-size: 18px;
  847. }
  848. .modal-body {
  849. max-width: 340px;
  850. }
  851. }
  852. kbd {
  853. background: hsl(200,8%,21%);
  854. border-radius: 3px;
  855. box-shadow: 0 1px 1px black;
  856. color: white;
  857. display: inline-block;
  858. font-size: 12px;
  859. margin: 0 1px;
  860. padding: 0 4px;
  861. vertical-align: top;
  862. }
  863. .form-stacked .checkbox label {
  864. color: inherit;
  865. font-size: 13px;
  866. text-transform: inherit;
  867. vertical-align: baseline;
  868. letter-spacing: inherit;
  869. }
  870. .pagination {
  871. margin: 0 0 0 19px;
  872. display: flex;
  873. }
  874. .pagination > li > a,
  875. .pagination > li > span {
  876. padding: 0;
  877. width: 31px;
  878. height: 31px;
  879. border-color: #e5e5e5;
  880. }
  881. .pagination > .active > a,
  882. .pagination > .active > span,
  883. .pagination > .active > a:hover,
  884. .pagination > .active > span:hover,
  885. .pagination > .active > a:focus,
  886. .pagination > .active > span:focus {
  887. background: #0F94D6;
  888. border-color: #0F94D6;
  889. }
  890. .pagination-counter {
  891. margin: 0 0 0 19px;
  892. line-height: 33px;
  893. color: #9c9c9b;
  894. }
  895. .pagination-items-range {
  896. color: #706f6f;
  897. }
  898. .page-header {
  899. margin: 0 0 15px;
  900. padding: 0;
  901. border: none;
  902. display: flex;
  903. align-items: center;
  904. flex-wrap: wrap;
  905. }
  906. .page-header-title h1 {
  907. margin-top: 9px;
  908. }
  909. .page-header-meta {
  910. margin-left: auto;
  911. padding-left: 9px;
  912. display: flex;
  913. .btn + .btn {
  914. margin-left: 9px;
  915. }
  916. }
  917. .dropdown-menu .count {
  918. padding-top: 1px;
  919. margin-left: 10px;
  920. }
  921. .help-block {
  922. margin: 0;
  923. color: #bcbcbc;
  924. &.help-block--center {
  925. text-align: center;
  926. }
  927. }
  928. .help-block:not(:empty) {
  929. margin: 8px 2px 10px;
  930. }
  931. /* replace music icon with attachment */
  932. .icon-attachment {
  933. background-position: -24px 0;
  934. }
  935. /*
  936. * hero-unit (used on getstarted, login, signup)
  937. */
  938. .hero-unit {
  939. width: 500px;
  940. margin: 10px 0;
  941. padding: 23px 25px;
  942. border: 1px solid #e5f0f5;
  943. color: inherit;
  944. background-color: white;
  945. border-radius: 6px;
  946. box-shadow:
  947. 0 8px 17px 0 rgba(0, 0, 0, 0.2),
  948. 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  949. }
  950. .hero-unit h1,
  951. .hero-unit h2 {
  952. margin-top: 0;
  953. }
  954. .getstarted,
  955. .reset_password,
  956. .signup,
  957. .darkBackground,
  958. .login {
  959. padding: 10px;
  960. background: hsl(234,10%,19%);
  961. }
  962. .content.getstarted {
  963. padding: 0;
  964. .main {
  965. padding: 20px 10px;
  966. }
  967. }
  968. .login {
  969. padding: 24px 24px 97px;
  970. color: hsl(212,8%,40%);
  971. a {
  972. color: hsl(229,2%,51%);
  973. }
  974. &.login--fancy {
  975. color: hsla(0,0%,100%,.7);
  976. background:
  977. radial-gradient(circle at 49.06% 50.5%, #a36f71, transparent 74%),
  978. radial-gradient(circle at 6.95% 9.56%, #745479, transparent 100%),
  979. radial-gradient(circle at 2.58% 98.57%, #392e3e, transparent 51%),
  980. radial-gradient(circle at 82.11% 97.15%, #5c404e, transparent 100%),
  981. radial-gradient(circle at 50% 50%, #8b6b76, #8b6b76 100%);
  982. a {
  983. color: white;
  984. }
  985. .hero-unit {
  986. box-shadow:
  987. 0 8px 17px 0 rgba(0, 0, 0, 0.1),
  988. 0 6px 20px 0 rgba(0, 0, 0, 0.09);
  989. }
  990. }
  991. }
  992. .login .hero-unit {
  993. width: 430px;
  994. margin: 0 0 28px;
  995. }
  996. .login .company-logo {
  997. max-height: 100px;
  998. max-width: 200px;
  999. margin: 20px auto 42px;
  1000. display: block;
  1001. }
  1002. .login p {
  1003. margin: 0 auto 22px;
  1004. max-width: 400px;
  1005. text-align: center;
  1006. }
  1007. .login hr {
  1008. margin: 0 auto 22px;
  1009. border-top-color: rgba(255,255,255,.15);
  1010. width: 100%;
  1011. max-width: 400px;
  1012. }
  1013. .login p a {
  1014. text-decoration: underline;
  1015. }
  1016. .poweredBy {
  1017. display: flex;
  1018. align-items: center;
  1019. justify-content: center;
  1020. color: hsl(233,7%,26%);
  1021. margin: auto 0 34px -16px;
  1022. cursor: default;
  1023. position: absolute;
  1024. bottom: 0;
  1025. left: 0;
  1026. right: 0;
  1027. .logo {
  1028. margin-right: 8px;
  1029. margin-top: -11px;
  1030. }
  1031. .logotype {
  1032. margin-left: 8px;
  1033. margin-top: -5px;
  1034. fill: hsl(225,9%,27%);
  1035. }
  1036. }
  1037. .fullscreen {
  1038. @extend .fit;
  1039. display: table;
  1040. width: 100%;
  1041. height: 100%;
  1042. min-height: 100vh;
  1043. }
  1044. .fullscreen-center {
  1045. display: table-cell;
  1046. vertical-align: middle;
  1047. text-align: center;
  1048. }
  1049. .fullscreen-body {
  1050. text-align: left;
  1051. display: inline-block;
  1052. }
  1053. .subtle-link {
  1054. color: rgba(0,0,0,.32);
  1055. text-decoration: underline;
  1056. @extend .u-clickable;
  1057. }
  1058. .subtle-link:hover {
  1059. color: rgba(0,0,0,.5);
  1060. }
  1061. ol.tabs {
  1062. list-style: decimal inside;
  1063. }
  1064. ol.tabs li {
  1065. display: list-item;
  1066. }
  1067. .tabs {
  1068. padding: 0;
  1069. margin-bottom: 20px;
  1070. color: #b8b8b8;
  1071. border: 1px solid rgba(0,8,14,.08);
  1072. border-radius: 3px;
  1073. }
  1074. .tabs-condensed .tab {
  1075. padding-left: 5px;
  1076. padding-right: 5px;
  1077. }
  1078. .progress-tabs .tab {
  1079. cursor: default;
  1080. }
  1081. .tab {
  1082. height: 40px;
  1083. padding: 10px 20px;
  1084. text-align: center;
  1085. border-right: 1px solid rgba(0,8,14,.08);
  1086. flex: 1 1 auto;
  1087. @extend .u-clickable;
  1088. }
  1089. .tab.active {
  1090. color: white;
  1091. background: #444a4f;
  1092. box-shadow: none;
  1093. }
  1094. .tab:first-child {
  1095. border-radius: 3px 0 0 3px;
  1096. }
  1097. .tab:last-child {
  1098. border-radius: 0 3px 3px 0;
  1099. border-right: none;
  1100. }
  1101. .wide-tabs {
  1102. margin: 25px auto 20px;
  1103. font-size: 15px;
  1104. font-weight: 300;
  1105. background: white;
  1106. border-radius: 8px;
  1107. }
  1108. .dashboard .wide-tabs {
  1109. width: 60%;
  1110. }
  1111. .wide-tabs .tab:first-child {
  1112. border-radius: 8px 0 0 8px;
  1113. }
  1114. .wide-tabs .tab:last-child {
  1115. border-radius: 0 8px 8px 0;
  1116. }
  1117. .separator {
  1118. margin: 20px 0;
  1119. position: relative;
  1120. text-align: center;
  1121. }
  1122. .separator:before {
  1123. content: "";
  1124. position: absolute;
  1125. width: 100%;
  1126. height: 1px;
  1127. top: 50%;
  1128. left: 0;
  1129. margin-top: -1px;
  1130. background: #e6e6e6;
  1131. }
  1132. .separator-text {
  1133. padding: 0 10px;
  1134. color: #999;
  1135. font-size: 12px;
  1136. letter-spacing: 0.1em;
  1137. text-transform: uppercase;
  1138. background: white;
  1139. display: inline-block;
  1140. position: relative;
  1141. }
  1142. .auth_provider,
  1143. .auth_provider:hover {
  1144. padding: 9px 10px 9px 7px;
  1145. color: white;
  1146. line-height: 22px;
  1147. text-align: center;
  1148. border-radius: 4px;
  1149. display: flex;
  1150. &.auth_provider--wide {
  1151. padding-right: 25px;
  1152. }
  1153. }
  1154. .auth_providers .auth_provider:not(:last-child) {
  1155. margin-right: 8px;
  1156. }
  1157. .auth_provider:hover {
  1158. color: white;
  1159. text-decoration: none;
  1160. @extend .u-clickable;
  1161. }
  1162. .auth_provider.facebook,
  1163. .btn.facebook:hover {
  1164. background: #4f699c;
  1165. }
  1166. .auth_provider.google,
  1167. .btn.google:hover {
  1168. background: #d8543c;
  1169. }
  1170. .auth_provider.twitter,
  1171. .btn.twitter:hover {
  1172. background: hsl(197, 75%, 53%);
  1173. }
  1174. .auth_provider.email,
  1175. .btn.email:hover {
  1176. background: hsl(47, 100%, 59%);
  1177. }
  1178. .provider_name {
  1179. flex: 1;
  1180. }
  1181. .provider_icon {
  1182. width: 29px;
  1183. height: 22px;
  1184. background: image_url("/assets/images/provider.svg") no-repeat;
  1185. }
  1186. .facebook.provider_icon {
  1187. background-position: 0 0;
  1188. }
  1189. .google.provider_icon {
  1190. background-position: -30px 0;
  1191. }
  1192. .twitter.provider_icon {
  1193. background-position: -60px 0;
  1194. }
  1195. .email.provider_icon {
  1196. background-position: -90px 0;
  1197. }
  1198. /*
  1199. global icon definitions
  1200. =======================
  1201. */
  1202. .icon-arrow-down,
  1203. .icon-arrow-up,
  1204. .icon-arrow-left,
  1205. .icon-arrow-right {
  1206. fill: black;
  1207. opacity: 0.39;
  1208. }
  1209. .arrow--disabled {
  1210. opacity: 0.23;
  1211. }
  1212. .icon-checkmark {
  1213. fill: #38AE6A;
  1214. }
  1215. .icon-error {
  1216. fill: #F35910;
  1217. }
  1218. .loading.icon {
  1219. display: inline-block;
  1220. width: 30px;
  1221. height: 30px;
  1222. background: hsl(145,51%,45%);
  1223. animation: rotateplane 1.2s infinite ease-in-out;
  1224. }
  1225. .small.loading.icon {
  1226. width: 20px;
  1227. height: 20px;
  1228. }
  1229. @keyframes rotateplane {
  1230. 0% {
  1231. transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  1232. } 50% {
  1233. transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  1234. } 100% {
  1235. transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  1236. }
  1237. }
  1238. .color-swatch {
  1239. border-radius: 100%;
  1240. width: 11px;
  1241. height: 11px;
  1242. }
  1243. /*
  1244. * removed margin of forms to not break the layout with submit buttons within <form></form> area e. g. for modal dialogs
  1245. */
  1246. form {
  1247. margin: 0;
  1248. }
  1249. .form-controls {
  1250. @extend .clearfix;
  1251. margin-top: 10px;
  1252. }
  1253. form a.standalone {
  1254. line-height: 40px;
  1255. margin: 0 5px;
  1256. }
  1257. form a.standalone.align-right {
  1258. margin-left: auto;
  1259. }
  1260. footer {
  1261. clear: both;
  1262. padding-top: 10px;
  1263. padding-left: 10px;
  1264. padding-right: 22px;
  1265. }
  1266. .can-move {
  1267. cursor: move;
  1268. }
  1269. .can-move-placeholder {
  1270. border: 1px dashed #DDD;
  1271. background: #EEE;
  1272. margin-top: 5px;
  1273. margin-bottom: 5px;
  1274. }
  1275. .customer_info {
  1276. }
  1277. .customer_info ul.nav > li {
  1278. width: 50%;
  1279. }
  1280. .customer_info ul.nav > li > a {
  1281. @extend .u-textTruncate;
  1282. }
  1283. .customer_info .thumbnail {
  1284. position: absolute;
  1285. right: 20px;
  1286. }
  1287. .customer_info textarea {
  1288. padding-left: 10px;
  1289. width: 100%;
  1290. border-color: #eee;
  1291. }
  1292. .tableOverview {
  1293. padding: 10px 20px;
  1294. }
  1295. .tableOverview-edit {
  1296. @extend .u-clickable, .u-highlight;
  1297. }
  1298. .bulkAction {
  1299. background: white;
  1300. z-index: 1;
  1301. box-shadow:
  1302. 0 -1px rgba(0,0,0,.05),
  1303. 0 -2px rgba(0,0,0,.03),
  1304. 0 -3px rgba(0,0,0,.01);
  1305. }
  1306. .bulkAction .btn {
  1307. margin: 0 10px;
  1308. }
  1309. .bulkAction-controls {
  1310. margin-top: 10px;
  1311. }
  1312. .show_toogle {
  1313. font-size: 10px;
  1314. line-height: 12px;
  1315. color: #999999;
  1316. }
  1317. .well-muted {
  1318. background-color: whiteSmoke;
  1319. border: 1px solid #eee;
  1320. border: 1px solid rgba(0, 0, 0, 0.05);
  1321. border-radius: 4px;
  1322. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1323. }
  1324. .merged, .merge:hover {
  1325. text-decoration: line-through;
  1326. }
  1327. .translation {
  1328. border: 1px dotted #F92;
  1329. border-radius: 3px;
  1330. }
  1331. .translation:hover {
  1332. }
  1333. .translation[contenteditable="true"] {
  1334. display: inline;
  1335. }
  1336. .translation .icon-edit {
  1337. display: none;
  1338. }
  1339. .translation:hover .icon-edit {
  1340. display: inline-block;
  1341. }
  1342. .sub_attribute .control-label {
  1343. width: 60px;
  1344. }
  1345. .sub_attribute .controls {
  1346. margin-left: 80px;
  1347. }
  1348. #splash {
  1349. background-color: #eee;
  1350. position: absolute;
  1351. width: 100%;
  1352. top: 0;
  1353. height: 100%;
  1354. }
  1355. #splash .logo {
  1356. margin-left: auto;
  1357. margin-right: auto;
  1358. margin-top: 200px;
  1359. width: 100px;
  1360. }
  1361. .navigation {
  1362. width: $navigationWidth;
  1363. background: hsl(232,10%,16%);
  1364. position: relative;
  1365. }
  1366. .navigation:empty {
  1367. display: none !important;
  1368. }
  1369. .main-navigation {
  1370. padding: 0;
  1371. margin: 0;
  1372. list-style: none;
  1373. flex-shrink: 0;
  1374. }
  1375. .main-navigation > li > a {
  1376. padding: 0 15px;
  1377. height: 48px;
  1378. color: rgba(240, 250, 255, .25);
  1379. border-bottom: 1px solid rgba(240, 250, 255, .05);
  1380. text-decoration: none;
  1381. }
  1382. .main-navigation > li > a:hover {
  1383. background: hsl(230,10%,13%);
  1384. border-bottom-color: rgba(240, 250, 255, .08);
  1385. }
  1386. .main-navigation > li.active > a,
  1387. .main-navigation > li.is-hovered > a {
  1388. background: none;
  1389. color: white;
  1390. }
  1391. .main-navigation > li.active .nav-icon,
  1392. .main-navigation > li.active .dropdown-icon,
  1393. .main-navigation > li.is-hovered .nav-icon {
  1394. fill: currentColor;
  1395. }
  1396. .main-navigation li.active > a,
  1397. .main-navigation li.is-hovered > a {
  1398. background: #389ed9;
  1399. }
  1400. .main-navigation .dropdown-menu {
  1401. left: 10px;
  1402. right: 15px;
  1403. min-width: 0;
  1404. }
  1405. .main-navigation .nav-icon {
  1406. margin-right: 15px;
  1407. vertical-align: bottom;
  1408. width: 24px;
  1409. height: 24px;
  1410. fill: hsl(206,7%,37%);
  1411. }
  1412. .main-navigation .dropdown-icon {
  1413. fill: hsl(206,7%,37%);
  1414. }
  1415. .tasks {
  1416. background: #2c2d36;
  1417. overflow: auto;
  1418. flex: 1;
  1419. }
  1420. .tasks.tasks--standalone {
  1421. background: none;
  1422. margin: 8px 0 0;
  1423. padding: 0;
  1424. }
  1425. .tasks--standalone .task {
  1426. padding: 0;
  1427. margin-bottom: 9px;
  1428. display: flex;
  1429. }
  1430. .tasks--standalone .name {
  1431. @extend .u-highlight, .u-textTruncate;
  1432. }
  1433. .tasks--standalone .time {
  1434. color: hsl(198,19%,72%);
  1435. }
  1436. .tasks--standalone .icon-priority {
  1437. margin-right: 4px;
  1438. margin-top: 2px;
  1439. }
  1440. .nav-tab {
  1441. padding: 10px 15px 7px 0;
  1442. position: relative;
  1443. color: #808080;
  1444. display: flex;
  1445. align-items: center;
  1446. @extend .u-clickable;
  1447. }
  1448. .tasks-navigation .nav-tab {
  1449. height: 38px;
  1450. border-bottom: 1px solid #33363e;
  1451. }
  1452. .tasks-navigation .nav-tab:not(.is-active):hover {
  1453. background: #26272e;
  1454. }
  1455. .navigation .nav-tab-name {
  1456. text-align: left;
  1457. padding-bottom: 2px;
  1458. }
  1459. .tasks-navigation .nav-tab-icon {
  1460. &.loading {
  1461. width: 10px;
  1462. height: 10px;
  1463. }
  1464. &.error {
  1465. transform: scale(0.85);
  1466. }
  1467. }
  1468. .nav-tab:hover {
  1469. color: #808080;
  1470. text-decoration: none;
  1471. }
  1472. .nav-tab.is-active,
  1473. .nav-tab.nav-tab--search:hover {
  1474. background: #389ed9;
  1475. color: white;
  1476. .nav-tab-icon .icon {
  1477. fill: white;
  1478. }
  1479. }
  1480. .nav-tab.ui-sortable-helper {
  1481. border-bottom-color: transparent;
  1482. }
  1483. .nav-tab.nav-tab--search {
  1484. height: 30px;
  1485. }
  1486. .nav-tab-icon {
  1487. margin-right: 7px;
  1488. margin-left: 7px;
  1489. margin-top: -3px;
  1490. display: flex;
  1491. align-items: center;
  1492. justify-content: center;
  1493. position: relative;
  1494. }
  1495. .nav-tab-icon .icon {
  1496. width: 16px;
  1497. height: 16px;
  1498. fill: #808080;
  1499. }
  1500. .nav-tab-icon .modified-inner-circle {
  1501. position: absolute;
  1502. left: 0;
  1503. top: 0;
  1504. will-change: opacity;
  1505. transform: translateZ(0);
  1506. animation: fade 1.8s ease-in-out infinite;
  1507. }
  1508. @keyframes fade {
  1509. 54% { opacity: 1 }
  1510. 90% { opacity: 0 }
  1511. to { opacity: 1 }
  1512. }
  1513. .nav-tab-icon .icon.icon-loading {
  1514. animation: rotateplane 1.2s infinite ease-in-out;
  1515. fill: $supergood-color;
  1516. }
  1517. .nav-tab-close {
  1518. position: absolute;
  1519. right: 0;
  1520. top: 0;
  1521. width: 50px;
  1522. height: 100%;
  1523. visibility: hidden;
  1524. @extend .u-clickable;
  1525. display: flex;
  1526. align-items: center;
  1527. justify-content: center;
  1528. }
  1529. .nav-tab:hover .nav-tab-close {
  1530. visibility: visible;
  1531. }
  1532. .nav-tab-close-inner {
  1533. width: 19px;
  1534. height: 19px;
  1535. background-color: #2c2d36;
  1536. border-radius: 100%;
  1537. display: flex;
  1538. align-items: center;
  1539. justify-content: center;
  1540. }
  1541. .nav-tab-close:hover .nav-tab-close-inner {
  1542. background-color: #972e29;
  1543. }
  1544. .nav-tab-close svg {
  1545. width: 9px;
  1546. height: 9px;
  1547. fill: white;
  1548. opacity: 0.3;
  1549. }
  1550. .nav-tab-close:hover svg {
  1551. opacity: 1;
  1552. }
  1553. .level-1.is-active {
  1554. background-color: #38ae6a;
  1555. }
  1556. .level-1 .icon-priority,
  1557. .level-1.icon-priority {
  1558. fill: #38ae6a;
  1559. }
  1560. .level-2.is-active {
  1561. background-color: #f35910;
  1562. }
  1563. .level-2 .icon-priority,
  1564. .level-2.icon-priority {
  1565. fill: #f35910;
  1566. }
  1567. .level-3.is-active {
  1568. background-color: #faab00;
  1569. }
  1570. .level-3 .icon-priority,
  1571. .level-3.icon-priority {
  1572. fill: #faab00;
  1573. }
  1574. .search {
  1575. padding: 11px 5px 4px 10px;
  1576. border-bottom: 1px solid rgba(240, 250, 255, .05);
  1577. flex-shrink: 0;
  1578. display: flex;
  1579. background-color: inherit;
  1580. }
  1581. .search-holder {
  1582. flex: 1;
  1583. border-radius: 15px;
  1584. position: relative;
  1585. transition: 240ms;
  1586. }
  1587. .empty-search {
  1588. position: absolute;
  1589. right: 0;
  1590. top: 0;
  1591. height: 30px;
  1592. width: 40px;
  1593. z-index: 1;
  1594. visibility: hidden;
  1595. display: flex;
  1596. align-items: center;
  1597. justify-content: center;
  1598. cursor: pointer;
  1599. }
  1600. .empty-search .icon-diagonal-cross {
  1601. fill: white;
  1602. opacity: 0.5;
  1603. }
  1604. .filled.search .empty-search {
  1605. visibility: visible;
  1606. }
  1607. .search input {
  1608. width: 100%;
  1609. padding: 5px 33px 5px 33px;
  1610. height: 30px;
  1611. color: #ECECEC;
  1612. background: #31373b;
  1613. line-height: 20px;
  1614. outline: none;
  1615. border: none;
  1616. border-radius: 15px;
  1617. position: relative;
  1618. z-index: 1;
  1619. }
  1620. .search .icon-magnifier {
  1621. position: absolute;
  1622. top: 8px;
  1623. left: 10px;
  1624. z-index: 2;
  1625. opacity: 0.5;
  1626. fill: white;
  1627. }
  1628. .search.focused .search-holder {
  1629. margin-right: -46px;
  1630. }
  1631. .search.focused .logo {
  1632. opacity: 0;
  1633. z-index: -1;
  1634. }
  1635. .search .logo {
  1636. position: relative;
  1637. @extend .u-clickable, .zIndex-5;
  1638. margin: -4px 10px 0 12px;
  1639. transition: 240ms;
  1640. }
  1641. .search .logo .icon-logo {
  1642. position: relative;
  1643. }
  1644. .search .logo .activity-counter {
  1645. height: 20px;
  1646. min-width: 21px;
  1647. position: absolute;
  1648. right: -3px;
  1649. bottom: 2px;
  1650. padding: 0 4px;
  1651. font-size: 12px;
  1652. font-weight: 300;
  1653. line-height: 15px;
  1654. text-align: center;
  1655. color: white;
  1656. text-shadow: 0 1px 1px rgba(0,0,0,.21);
  1657. background: hsl(360,71%,60%);
  1658. border-radius: 10px;
  1659. border: 2px solid hsl(233,10%,16%);
  1660. }
  1661. .search .logo .activity-counter:empty {
  1662. display: none;
  1663. }
  1664. .search .custom-dropdown-menu {
  1665. margin: 0;
  1666. padding: 0;
  1667. list-style: none;
  1668. background: #26272e;
  1669. position: absolute;
  1670. left: 0;
  1671. right: 0;
  1672. bottom: 0;
  1673. top: 53px;
  1674. z-index: 1002;
  1675. display: none;
  1676. overflow: scroll;
  1677. }
  1678. .search.open .custom-dropdown-menu {
  1679. display: block;
  1680. }
  1681. .search .custom-dropdown-menu .divider {
  1682. height: 1px;
  1683. background: #2f3238;
  1684. margin: 14px 0 17px;
  1685. }
  1686. .user-menu {
  1687. padding: 0;
  1688. margin: 0;
  1689. list-style: none;
  1690. position: relative;
  1691. flex-shrink: 0;
  1692. display: flex;
  1693. }
  1694. .user-menu > li {
  1695. flex: 1;
  1696. background: #26272e;
  1697. }
  1698. .user-menu .list-button {
  1699. height: 60px;
  1700. position: relative;
  1701. text-decoration: none;
  1702. @extend .u-clickable;
  1703. display: flex;
  1704. align-items: center;
  1705. justify-content: center;
  1706. }
  1707. .user-menu .list-button *:not(.dropdown-nose) {
  1708. position: relative;
  1709. }
  1710. .user-menu > li:hover .list-button:before,
  1711. .user-menu > li.is-hovered .list-button:before {
  1712. content: '';
  1713. position: absolute;
  1714. top: 4px;
  1715. right: 4px;
  1716. bottom: 4px;
  1717. left: 4px;
  1718. background: white;
  1719. }
  1720. .user-menu li.add:hover .list-button:before,
  1721. .user-menu li.add.is-hovered .list-button:before {
  1722. background: #38ae6a;
  1723. }
  1724. .user-menu-icon {
  1725. width: 20px;
  1726. height: 20px;
  1727. fill: hsl(0,0%,30%);
  1728. }
  1729. .user-menu-icon.icon-plus {
  1730. fill: hsl(145,51%,45%);
  1731. }
  1732. .user-menu > li.settings:hover .user-menu-icon,
  1733. .user-menu > li.settings.active .user-menu-icon {
  1734. fill: hsl(232,10%,16%);
  1735. }
  1736. .user-menu > li.add:hover .user-menu-icon.icon-plus,
  1737. .user-menu > li.add.is-hovered .user-menu-icon.icon-plus,
  1738. .user-menu > li.add.active .user-menu-icon.icon-plus {
  1739. fill: white;
  1740. }
  1741. .user-menu > li:not(:last-child) {
  1742. border-right: 1px solid #2c2d36;
  1743. }
  1744. .dropdown-nose {
  1745. position: absolute;
  1746. border: 7px solid transparent;
  1747. border-bottom: none;
  1748. border-top: 7px solid white;
  1749. left: 50%;
  1750. margin-left: -7px;
  1751. top: -6px;
  1752. display: none;
  1753. }
  1754. li.add .dropdown-nose {
  1755. border-top-color: #38af6e;
  1756. }
  1757. .open.dropdown .dropdown-nose,
  1758. .open.dropup .dropdown-nose {
  1759. display: block;
  1760. }
  1761. .user-menu .dropdown-menu {
  1762. padding: 0;
  1763. border-radius: 0;
  1764. margin-bottom: 5px;
  1765. min-width: 0;
  1766. left: 10px;
  1767. right: 15px;
  1768. width: auto;
  1769. }
  1770. .user-menu li.add .dropdown-menu {
  1771. background-color: #38af6e;
  1772. }
  1773. .user-menu li.add .dropdown-menu li > a {
  1774. color: white;
  1775. }
  1776. .user-menu li.add .dropdown-menu .divider {
  1777. background: #4cb77c;
  1778. }
  1779. .user-menu .dropdown-menu .divider {
  1780. margin: 0;
  1781. }
  1782. .user-menu .dropdown-menu > li > a {
  1783. display: flex;
  1784. }
  1785. .avatar {
  1786. width: 40px;
  1787. height: 40px;
  1788. background-size: cover;
  1789. background-position: center;
  1790. background-color: rgba(0,0,0,.05);
  1791. border-radius: 100%;
  1792. display: inline-block;
  1793. vertical-align: bottom;
  1794. }
  1795. :not(.navigation) .avatar.vip {
  1796. border: 2px dotted;
  1797. border-color: #fff;
  1798. }
  1799. .avatar.size-50 {
  1800. width: 50px;
  1801. height: 50px;
  1802. }
  1803. .avatar.size-80 {
  1804. width: 82px;
  1805. height: 82px;
  1806. }
  1807. .unique.avatar {
  1808. background-image: image_url("/assets/images/avatar-bg.png");
  1809. background-size: auto;
  1810. color: white;
  1811. line-height: 40px;
  1812. text-align: center;
  1813. font-size: 13px;
  1814. letter-spacing: 1px;
  1815. text-transform: uppercase;
  1816. text-shadow: 0 1px rgba(0,0,0,.2);
  1817. cursor: default;
  1818. }
  1819. :not(.navigation) .unique.avatar.vip {
  1820. border: 2px dotted;
  1821. line-height: 36px;
  1822. }
  1823. .unique.avatar.size-50 {
  1824. font-size: 16px;
  1825. line-height: 52px;
  1826. }
  1827. :not(.navigation) .unique.avatar.size-50.vip {
  1828. line-height: 46px;
  1829. }
  1830. .unique.avatar.size-80 {
  1831. font-size: 20px;
  1832. line-height: 84px;
  1833. }
  1834. :not(.navigation) .unique.avatar.size-80.vip {
  1835. font-size: 20px;
  1836. line-height: 78px;
  1837. }
  1838. .sidebar {
  1839. width: 32%;
  1840. max-width: 300px;
  1841. padding: 20px;
  1842. color: hsl(60,1%,34%);
  1843. background: white;
  1844. border-right: 1px solid #e6e6e6;
  1845. overflow: auto;
  1846. }
  1847. .sidebar h3 {
  1848. margin: 0;
  1849. color: rgba(0,8,14,.73);
  1850. font-weight: normal;
  1851. font-size: 16px;
  1852. text-transform: initial;
  1853. letter-spacing: 0;
  1854. }
  1855. .sidebar-block {
  1856. margin: 20px 0;
  1857. &:first-child {
  1858. margin-top: 0;
  1859. }
  1860. }
  1861. .sidebar-block,
  1862. .sidebar-block > * {
  1863. @extend .u-textTruncate;
  1864. }
  1865. .sidebar-block [contenteditable=true] {
  1866. white-space: normal; // do no u-textTruncate, we want to edit it inline
  1867. }
  1868. .main + .sidebar {
  1869. border-right: none;
  1870. border-left: 1px solid #e6e6e6;
  1871. }
  1872. .NavBarAdmin.sidebar {
  1873. padding-top: 1px;
  1874. width: $sidebarWidth;
  1875. }
  1876. .NavBarAdmin h2 {
  1877. margin: 21px 0 12px;
  1878. }
  1879. .nav-stacked > li + li {
  1880. margin-top: 0;
  1881. }
  1882. .nav-pills > li > a,
  1883. .nav-pills > li > a:focus,
  1884. .nav-pills > li > a:active {
  1885. padding: 0;
  1886. height: 40px;
  1887. color: #0f94d6;
  1888. line-height: 39px;
  1889. border-radius: 0;
  1890. border-top: 1px solid #f2f2f3;
  1891. background: transparent; /* a:focus, a:active with bg: transparent fixes gray focus bg in IE 10 */
  1892. display: flex;
  1893. @extend .u-textTruncate;
  1894. }
  1895. .nav-pills > li:hover > a {
  1896. background: #f2f2f3;
  1897. }
  1898. .nav-pills > li:hover > a,
  1899. .nav-pills > li:hover + li:not(.active) > a {
  1900. border-color: transparent;
  1901. }
  1902. .nav-pills > li.active > a,
  1903. .nav-pills > li.active > a:hover,
  1904. .nav-pills > li.active > a:focus {
  1905. color: white;
  1906. background: #2c2d36;
  1907. border-color: initial;
  1908. }
  1909. .nav-pills > li:hover > a,
  1910. .nav-pills > li.active > a,
  1911. .nav-pills > li.active > a:hover,
  1912. .nav-pills > li.active > a:focus {
  1913. padding-left: 10px;
  1914. padding-right: 10px;
  1915. margin-left: -10px;
  1916. margin-right: -10px;
  1917. }
  1918. .sidebar:not(.NavBarAdmin) .nav-pills > li:first-child > a {
  1919. border-top: none;
  1920. }
  1921. .badge {
  1922. min-width: 0;
  1923. padding: 0;
  1924. margin-right: 5px;
  1925. font-size: inherit;
  1926. font-weight: normal;
  1927. text-align: left;
  1928. color: #d0d2d3;
  1929. background: none;
  1930. border-radius: 0;
  1931. }
  1932. .nav-pills > li > a > .badge {
  1933. margin-left: auto;
  1934. }
  1935. a.list-group-item.active > .badge,
  1936. .nav-pills > .active > a > .badge {
  1937. color: #96969b;
  1938. background: none;
  1939. }
  1940. .main {
  1941. padding: 10px 20px;
  1942. overflow: auto;
  1943. position: relative;
  1944. }
  1945. .main.no-padding {
  1946. padding: 0;
  1947. }
  1948. .tooltip {
  1949. font-family: inherit;
  1950. }
  1951. .popover {
  1952. font-family: inherit;
  1953. width: 372px;
  1954. max-width: 9999px;
  1955. border-radius: 0;
  1956. border: none;
  1957. z-index: 1110;
  1958. color: hsl(206,7%,28%);
  1959. box-shadow: 0 1px 14px rgba(0,8,14,.25);
  1960. word-wrap: break-word;
  1961. }
  1962. .popover-body {
  1963. overflow: auto;
  1964. }
  1965. .popover-title {
  1966. border: none;
  1967. background: none;
  1968. padding: 21px 17px 4px;
  1969. }
  1970. .popover-content {
  1971. padding: 0 17px 10px;
  1972. }
  1973. .popover.right { margin-left: 4px; }
  1974. .popover.right > .arrow {
  1975. border-right: none;
  1976. left: -9px;
  1977. }
  1978. .popover.top { margin-bottom: 9px; }
  1979. .popover.top > .arrow {
  1980. border-top: none;
  1981. bottom: -9px;
  1982. }
  1983. .popover.left { margin-right: 9px; }
  1984. .popover.left > .arrow {
  1985. border-left: none;
  1986. right: -9px;
  1987. }
  1988. .popover.bottom { margin-top: 9px; }
  1989. .popover.bottom > .arrow {
  1990. border-bottom: none;
  1991. top: -9px;
  1992. }
  1993. .popover > .arrow:after {
  1994. border-width: 8px;
  1995. }
  1996. .popover .priority.icon:after {
  1997. background: white;
  1998. }
  1999. .popover .person .organization {
  2000. color: #a1a4a7;
  2001. }
  2002. .popover .user-organization {
  2003. @extend .u-textTruncate;
  2004. margin-bottom: 8px;
  2005. margin-top: -4px;
  2006. }
  2007. .popover-block {
  2008. @extend .sidebar-block;
  2009. margin: 10px 0;
  2010. }
  2011. .popover hr {
  2012. margin: 8px 0;
  2013. }
  2014. .popover .person .organization:before { content: '('; }
  2015. .popover .person .organization:after { content: ')'; }
  2016. .popover label {
  2017. font-size: 13px;
  2018. color: #a9bcc4;
  2019. font-weight: 300;
  2020. text-transform: uppercase;
  2021. letter-spacing: 0.07em;
  2022. }
  2023. .popover .column label {
  2024. margin: 8px 0 1px;
  2025. }
  2026. .popover .column {
  2027. margin-bottom: 8px;
  2028. }
  2029. .popover--notifications {
  2030. min-height: 100px;
  2031. width: auto;
  2032. min-width: 372px;
  2033. @extend .zIndex-5;
  2034. &.fade {
  2035. display: inline-block !important;
  2036. }
  2037. .arrow {
  2038. top: 23px !important;
  2039. }
  2040. .popover-content {
  2041. flex: 1;
  2042. overflow-y: scroll;
  2043. }
  2044. &.is-overflowing .popover-notificationsHeader {
  2045. box-shadow:
  2046. 0 1px hsla(240,4%,95%,.5),
  2047. 0 2px hsla(240,4%,95%,.2);
  2048. }
  2049. }
  2050. .popover-notificationsHeader {
  2051. display: flex;
  2052. align-items: flex-end;
  2053. padding-bottom: 22px;
  2054. margin: 21px 17px 0;
  2055. .popover-title {
  2056. @extend h1;
  2057. padding: 0;
  2058. line-height: 1;
  2059. }
  2060. }
  2061. .popover-notificationsCounter {
  2062. color: #e25253;
  2063. padding-left: 3px;
  2064. }
  2065. .popover-notificationsMarkRead {
  2066. @extend .btn;
  2067. @extend .btn--subtle;
  2068. margin-left: auto;
  2069. padding: 5px 0 0 10px;
  2070. &:hover {
  2071. padding: 5px 0 0 10px;
  2072. }
  2073. }
  2074. .stat-icon {
  2075. position: relative;
  2076. }
  2077. .mood-icon {
  2078. width: 60px;
  2079. height: 59px;
  2080. }
  2081. .stopwatch-icon {
  2082. position: absolute;
  2083. left: 0;
  2084. top: 0;
  2085. width: 100%;
  2086. height: 100%;
  2087. }
  2088. .stat-stopwatch {
  2089. width: 77px;
  2090. height: 83px;
  2091. position: relative;
  2092. }
  2093. .stat-channel-icon {
  2094. width: 16px;
  2095. height: 16px;
  2096. fill: hsl(198,18%,72%);
  2097. }
  2098. .total-tickets {
  2099. height: 83px;
  2100. width: 48px;
  2101. margin-right: 4px;
  2102. margin-bottom: -9px;
  2103. }
  2104. .one-ticket {
  2105. width: 48px;
  2106. height: 10px;
  2107. margin-top: -7px;
  2108. margin-bottom: 2px;
  2109. }
  2110. .stat-tickets {
  2111. height: 100px;
  2112. }
  2113. .in-process-icon {
  2114. width: 64px;
  2115. height: 64px;
  2116. }
  2117. .reopening-icon {
  2118. width: 68px;
  2119. height: 47px;
  2120. }
  2121. .state-color {
  2122. &.supergood-state { fill: $supergood-color;}
  2123. &.good-state { fill: $good-color; }
  2124. &.ok-state { fill: $ok-color; }
  2125. &.bad-state { fill: $bad-color; }
  2126. &.superbad-state { fill: $superbad-color; }
  2127. }
  2128. .stat-widgets {
  2129. margin: 0 -7px 20px;
  2130. }
  2131. .stat-widget {
  2132. height: 200px;
  2133. padding: 13px;
  2134. text-align: center;
  2135. line-height: 20px;
  2136. }
  2137. .dashboard .stat-widget {
  2138. margin: 7px;
  2139. background: white;
  2140. border: 1px solid #e5f0f5;
  2141. border-radius: 1px;
  2142. box-shadow: 0 1px rgba(0,8,14,.02);
  2143. }
  2144. .stat-widget h3 {
  2145. margin: 2px 0 8px;
  2146. color: #444a4f;
  2147. letter-spacing: 0;
  2148. font-weight: normal;
  2149. }
  2150. .stat-widget .stat-label {
  2151. color: #444a4f;
  2152. @extend .u-textTruncate;
  2153. }
  2154. .stat-widget .stat-detail {
  2155. color: #b4b7b9;
  2156. @extend .u-textTruncate;
  2157. }
  2158. .channel-distribution.stat-widget {
  2159. color: #a1a4a7;
  2160. }
  2161. .stat-graphic {
  2162. flex: 1;
  2163. display: flex;
  2164. justify-content: center;
  2165. align-items: center;
  2166. }
  2167. .time.stat-widget .stat-amount {
  2168. margin-top: 8px;
  2169. text-align: center;
  2170. font-size: 30px;
  2171. color: white;
  2172. text-shadow: 0 2px rgba(0,8,14,.2);
  2173. position: relative;
  2174. }
  2175. .time.stat-widget .stat-dial {
  2176. position: absolute;
  2177. top: 21px;
  2178. left: 14px;
  2179. }
  2180. .stats-row {
  2181. padding: 8px 0 7px;
  2182. margin-bottom: -7px;
  2183. border-radius: 3px;
  2184. display: flex;
  2185. flex-direction: column;
  2186. align-items: center;
  2187. }
  2188. .stats-row:hover {
  2189. background: rgba(0,8,14,.03);
  2190. }
  2191. .stats-row .stat-bars {
  2192. height: 73px;
  2193. margin: 16px 0 15px;
  2194. padding: 2px 12px;
  2195. width: 100%;
  2196. background: linear-gradient(to top, #f2f2f3, #f2f2f3 1px, transparent 1px);
  2197. background-position: center bottom;
  2198. background-size: 100% 12px;
  2199. display: flex;
  2200. align-items: flex-end;
  2201. }
  2202. .stat-bars .stat-bar {
  2203. border-radius: 5px;
  2204. width: 10px;
  2205. color: #a9bcc4;
  2206. background: #a9bcc4;
  2207. }
  2208. .stat-widget .secondary {
  2209. opacity: .38;
  2210. color: #a9bcc4;
  2211. background: #a9bcc4;
  2212. }
  2213. .stat-legend {
  2214. margin-top: 30px;
  2215. margin-left: auto;
  2216. display: flex;
  2217. }
  2218. .stat-legendEntry {
  2219. font-size: 11px;
  2220. line-height: 1;
  2221. margin-left: 20px;
  2222. background: none !important;
  2223. }
  2224. .stat-circle {
  2225. margin-bottom: -1px;
  2226. margin-right: 3px;
  2227. width: 10px;
  2228. height: 10px;
  2229. border-radius: 100%;
  2230. display: inline-block;
  2231. }
  2232. .frequency.stat-widget {
  2233. .stat-bars {
  2234. margin-top: 0;
  2235. }
  2236. .stats-row {
  2237. margin-bottom: 0;
  2238. }
  2239. .stat-label {
  2240. color: #a1a4a7;
  2241. }
  2242. .primary {
  2243. color: hsl(145,51%,45%);
  2244. background: hsl(145,51%,45%);
  2245. }
  2246. }
  2247. .activity.sidebar {
  2248. width: 370px;
  2249. padding: 0;
  2250. border-left: 1px solid #e8e8e8;
  2251. }
  2252. .activity h2 {
  2253. margin-left: 19px;
  2254. margin-bottom: 15px;
  2255. margin-right: 26px;
  2256. }
  2257. .activity-entry.state--read {
  2258. opacity: 0.5;
  2259. }
  2260. .activity-avatar {
  2261. padding-top: 16px;
  2262. padding-left: 2px;
  2263. padding-right: 2px;
  2264. margin-right: 10px;
  2265. }
  2266. .activity-avatar:hover .avatar {
  2267. }
  2268. .activity-body {
  2269. color: #444a4f;
  2270. padding: 16px 0 16px 2px;
  2271. position: relative;
  2272. }
  2273. .activity-body:after {
  2274. content: "";
  2275. position: absolute;
  2276. bottom: 0;
  2277. right: 30px;
  2278. left: 8px;
  2279. border-bottom: 1px solid #f2f2f3;
  2280. }
  2281. .activity-body:hover {
  2282. color: #444a4f;
  2283. text-decoration: none;
  2284. }
  2285. .activity-body:hover .activity-text {
  2286. text-decoration: underline;
  2287. }
  2288. .activity-message {
  2289. padding-right: 0;
  2290. word-wrap: break-word;
  2291. }
  2292. .activity-time {
  2293. margin-top: 2px;
  2294. color: #a1a4a7;
  2295. display: block;
  2296. }
  2297. .activity .priority.icon:after {
  2298. background: white;
  2299. }
  2300. .form-inline {
  2301. display: flex;
  2302. }
  2303. .form-inline .input-group-addon,
  2304. .form-inline .form-control:not(textarea) {
  2305. background: white;
  2306. border: none;
  2307. line-height: 1;
  2308. }
  2309. .form-inline .form-group {
  2310. overflow: hidden;
  2311. position: relative;
  2312. height: 60px;
  2313. flex: 1 1 auto;
  2314. }
  2315. .attributeBar.form-inline .form-group:last-child {
  2316. flex: 0 1 auto;
  2317. }
  2318. .form-group.is-changed {
  2319. position: relative;
  2320. }
  2321. .form-group.is-changed:before {
  2322. content: "";
  2323. position: absolute;
  2324. top: 23px;
  2325. left: -16px;
  2326. bottom: 0;
  2327. width: 3px;
  2328. background: repeating-linear-gradient(45deg, hsl(193,18%,90%), hsl(193,18%,90%) 5px, transparent 5px, transparent 9px) repeat center;
  2329. background-size: 11px 11px;
  2330. }
  2331. .form-inline .form-group.is-changed:before {
  2332. width: 100%;
  2333. height: 3px;
  2334. top: 0;
  2335. left: 0;
  2336. bottom: auto;
  2337. }
  2338. .form-group.is-changed label {
  2339. color: hsl(198,19%,72%);
  2340. position: relative;
  2341. }
  2342. .form-group.is-changed label:before {
  2343. position: absolute;
  2344. content: '';
  2345. left: -10px;
  2346. width: 5px;
  2347. height: 5px;
  2348. top: 50%;
  2349. margin-top: -3px;
  2350. border-radius: 100%;
  2351. background: hsl(198,19%,72%);
  2352. }
  2353. .form-inline .form-group .btn {
  2354. margin: 10px;
  2355. }
  2356. .form-inline .form-group:not(:last-child),
  2357. .form-inline.form-inline--enclosed .form-group {
  2358. border-right: 1px solid #f0f0f0;
  2359. }
  2360. .form-inline .input-group-addon {
  2361. width: auto;
  2362. padding: 0;
  2363. margin: 10px 18px 0;
  2364. font-size: 13px;
  2365. letter-spacing: 0.05em;
  2366. color: #ccc;
  2367. display: inline-block;
  2368. position: relative;
  2369. }
  2370. .form-inline .form-control:not(textarea) {
  2371. width: 100%;
  2372. height: 100%;
  2373. left: 0;
  2374. top: 0;
  2375. position: absolute;
  2376. padding: 28px 18px 12px;
  2377. float: none;
  2378. display: block;
  2379. border-radius: 0;
  2380. background: none;
  2381. }
  2382. .bulkAction-secondStep .form-group {
  2383. min-width: 140px;
  2384. }
  2385. .bulkAction-secondStep .form-inline .textarea.form-group {
  2386. padding: 5px 10px;
  2387. height: auto;
  2388. }
  2389. .bulkAction-secondStep .form-inline .textarea.form-group .input-group-addon {
  2390. margin-left: 8px;
  2391. margin-right: 8px;
  2392. margin-bottom: 5px;
  2393. }
  2394. .bulkAction-secondStep .form-inline textarea.form-control {
  2395. display: block;
  2396. padding-left: 8px;
  2397. padding-right: 8px;
  2398. width: 100%;
  2399. resize: vertical;
  2400. }
  2401. .bulkAction-secondStep .form-inline textarea.form-control:not(:focus) {
  2402. border-color: #f0f0f0;
  2403. }
  2404. .ticketZoom {
  2405. background: #f8f9fa;
  2406. }
  2407. .ticketZoom-controls {
  2408. display: flex;
  2409. justify-content: flex-end;
  2410. align-items: center;
  2411. padding: 28px 0 0 0;
  2412. }
  2413. .icon-marker {
  2414. fill: hsl(0,0%,61%);
  2415. width: 17px;
  2416. height: 19px;
  2417. }
  2418. .ticketZoom .ticketZoom-header {
  2419. margin-top: 6px;
  2420. padding: 0;
  2421. }
  2422. .ticketZoom .ticket-article {
  2423. margin-top: 55px;
  2424. }
  2425. .ticketZoom > .overview-navigator {
  2426. margin-top: 32px;
  2427. padding-left: 20px;
  2428. }
  2429. .ticket-article,
  2430. .article-new {
  2431. max-width: 800px;
  2432. margin: 0 auto;
  2433. padding: 0 21px;
  2434. }
  2435. .ticket-title {
  2436. max-width: 800px;
  2437. padding: 0 81px;
  2438. }
  2439. .ticket-title-update {
  2440. @extend h1;
  2441. white-space: normal;
  2442. margin-top: 15px;
  2443. margin-bottom: 8px;
  2444. text-align: center;
  2445. }
  2446. .task-subline {
  2447. text-align: center;
  2448. display: block;
  2449. }
  2450. .ticket-article-item {
  2451. padding-bottom: 33px;
  2452. position: relative;
  2453. .avatar {
  2454. position: absolute;
  2455. right: 0;
  2456. top: 5px;
  2457. }
  2458. &.agent .avatar {
  2459. right: auto;
  2460. left: 0;
  2461. }
  2462. }
  2463. /*
  2464. clip the article-meta to not stand out on the other side
  2465. of the textBubble if the text bubble is small
  2466. */
  2467. .article-meta-clip {
  2468. overflow: hidden;
  2469. position: relative;
  2470. height: 100%;
  2471. margin: 0 55px;
  2472. }
  2473. .article-content {
  2474. color: hsl(60,1%,34%);
  2475. position: relative;
  2476. padding: 0 55px;
  2477. }
  2478. .article-content-meta {
  2479. position: absolute;
  2480. width: 100%;
  2481. }
  2482. .article-meta {
  2483. background: #2c2d36;
  2484. color: white;
  2485. padding: 21px 25px 11px;
  2486. margin: 0 12px;
  2487. }
  2488. .article-meta.bottom {
  2489. padding-top: 17px;
  2490. padding-bottom: 8px;
  2491. }
  2492. .article-meta-row {
  2493. margin-bottom: 5px;
  2494. }
  2495. .article-meta-key {
  2496. width: 20%;
  2497. text-transform: uppercase;
  2498. }
  2499. .article-meta-value {
  2500. margin-left: 8px;
  2501. }
  2502. .article-meta-icon {
  2503. width: 16px;
  2504. height: 16px;
  2505. fill: white;
  2506. vertical-align: top;
  2507. margin: 2px 3px 0 0;
  2508. }
  2509. .article-meta .text-muted {
  2510. color: #96969b;
  2511. }
  2512. .internal-border {
  2513. padding: 5px;
  2514. border-radius: 8px;
  2515. margin: -5px;
  2516. }
  2517. .is-internal .internal-border {
  2518. background: repeating-linear-gradient(45deg, hsl(18,79%,89%), hsl(18,79%,89%) 5px, hsl(210,17%,98%) 5px, hsl(210,17%,98%) 6px);
  2519. background-size: 8px 8px;
  2520. }
  2521. .is-internal .bubble-arrow {
  2522. display: none;
  2523. }
  2524. .textBubble {
  2525. padding: 10px 20px;
  2526. background: white;
  2527. border-radius: 2px;
  2528. border: 1px solid hsl(240,4%,95%);
  2529. box-shadow: 0 0 1px rgba(0,0,0,.06) inset;
  2530. position: relative;
  2531. overflow-wrap: break-word;
  2532. word-wrap: break-word;
  2533. /* email css reset */
  2534. p {
  2535. margin: 0;
  2536. }
  2537. blockquote,
  2538. pre {
  2539. margin: 0px;
  2540. padding: 8px 12px 8px 12px;
  2541. }
  2542. }
  2543. .ticket-article-item.state--folde-out .textBubble {
  2544. border-color: hsl(0,0%,90%);
  2545. }
  2546. .textBubble-content {
  2547. overflow: hidden;
  2548. position: relative;
  2549. }
  2550. .textBubble-overflowContainer {
  2551. position: absolute;
  2552. bottom: 0;
  2553. left: 0;
  2554. right: 0;
  2555. background: white;
  2556. .btn {
  2557. padding: 7px 0;
  2558. font-size: 10px;
  2559. }
  2560. &:before {
  2561. content: "";
  2562. position: absolute;
  2563. left: 0;
  2564. right: 0;
  2565. top: -30px;
  2566. height: 30px;
  2567. background: linear-gradient(rgba(255,255,255,0), white);
  2568. }
  2569. }
  2570. .customer .textBubble-overflowContainer {
  2571. background: #e5f0f5;
  2572. &:before {
  2573. background: linear-gradient(hsla(199,44%,93%,0), hsl(199,44%,93%));
  2574. }
  2575. }
  2576. .customer.ticket-article-item .textBubble {
  2577. background: #e5f0f5;
  2578. border-color: hsl(199,38%,92%);
  2579. box-shadow: none;
  2580. }
  2581. .customer.ticket-article-item.state--folde-out .textBubble {
  2582. border-color: hsl(199,44%,85%);
  2583. }
  2584. .bubble-arrow {
  2585. position: absolute;
  2586. width: 7px;
  2587. height: 9px;
  2588. left: -6px;
  2589. top: 15px;
  2590. overflow: hidden;
  2591. }
  2592. .bubble-arrow:after {
  2593. content: "";
  2594. position: absolute;
  2595. top: -1px;
  2596. left: 2px;
  2597. width: 11px;
  2598. height: 11px;
  2599. background: white;
  2600. border: 1px solid hsl(240,4%,95%);
  2601. box-shadow: 0 0 1px rgba(0,0,0,.06) inset;
  2602. transform: rotate(-45deg);
  2603. }
  2604. .customer.ticket-article-item .bubble-arrow {
  2605. left: auto;
  2606. right: -6px;
  2607. }
  2608. .customer.ticket-article-item .bubble-arrow:after {
  2609. background: #e5f0f5;
  2610. left: auto;
  2611. right: 2px;
  2612. border-color: hsl(199,38%,92%);
  2613. box-shadow: none;
  2614. }
  2615. .ticket-article-item .attachments:not(:empty) {
  2616. border-top: 1px solid rgba(0,0,0,.04);
  2617. white-space: normal;
  2618. margin: 0 -20px;
  2619. padding: 26px 20px 7px 72px;
  2620. position: relative;
  2621. }
  2622. .ticket-article-item .attachments h3 {
  2623. color: hsl(60,1%,34%);
  2624. letter-spacing: 0;
  2625. font-weight: bold;
  2626. padding: 0 7px;
  2627. margin: 0 0 4px;
  2628. }
  2629. .attachments .icon-paperclip {
  2630. position: absolute;
  2631. left: 33px;
  2632. top: 27px;
  2633. }
  2634. .ticket-article-item .task-subline {
  2635. margin-top: 12px;
  2636. }
  2637. .article-action {
  2638. padding-top: 5px;
  2639. margin-top: 5px;
  2640. color: black;
  2641. font-size: 12px;
  2642. text-align: center;
  2643. opacity: 0.5;
  2644. @extend .u-clickable;
  2645. }
  2646. .article-action:hover {
  2647. color: black;
  2648. text-decoration: none;
  2649. opacity: 1;
  2650. }
  2651. .article-action-icon {
  2652. margin-right: 5px;
  2653. vertical-align: top;
  2654. width: 17px;
  2655. height: 17px;
  2656. }
  2657. .article-add {
  2658. position: relative;
  2659. }
  2660. .article-new {
  2661. margin-top: auto;
  2662. margin-bottom: 36px;
  2663. }
  2664. .dropArea {
  2665. background: white;
  2666. border: 5px solid;
  2667. color: hsl(202,66%,55%);
  2668. font-size: 20px;
  2669. margin: 5px;
  2670. display: none;
  2671. @extend .fit;
  2672. }
  2673. .is-dropTarget .dropArea {
  2674. display: block;
  2675. }
  2676. .dropArea-inner {
  2677. @extend .fit;
  2678. display: flex;
  2679. align-items: center;
  2680. justify-content: center;
  2681. }
  2682. .shortcut .dropdown-menu > .active > a {
  2683. background: none;
  2684. }
  2685. .shortcut .dropdown-menu > .active {
  2686. background: hsl(145,51%,45%);
  2687. }
  2688. .editControls {
  2689. position: absolute;
  2690. left: 0;
  2691. top: 5px;
  2692. }
  2693. .article-add[data-type=email] .editControls {
  2694. top: 159px;
  2695. }
  2696. .editControls-item {
  2697. position: absolute;
  2698. top: 43px;
  2699. @extend .u-clickable, .zIndex-7;
  2700. &.is-hidden {
  2701. display: none;
  2702. }
  2703. }
  2704. .editControls-item:nth-child(3) {
  2705. top: 79px;
  2706. }
  2707. .editControls-item:nth-child(4) {
  2708. top: 115px;
  2709. }
  2710. .editControls-item:not(:last-child) {
  2711. border-bottom: 1px solid #e6e6e6;
  2712. }
  2713. .editControls-iconHolder {
  2714. width: 38px;
  2715. height: 35px;
  2716. display: flex;
  2717. align-items: center;
  2718. justify-content: center;
  2719. }
  2720. .editControls-icon {
  2721. width: 16px;
  2722. height: 16px;
  2723. fill: hsl(210,2%,78%);
  2724. }
  2725. .pop-selector {
  2726. position: absolute;
  2727. top: 0;
  2728. left: 0;
  2729. display: flex;
  2730. align-items: center;
  2731. justify-content: center;
  2732. &.is-hidden {
  2733. display: none;
  2734. }
  2735. }
  2736. .pop-selectable {
  2737. width: 35px;
  2738. height: 35px;
  2739. display: flex;
  2740. align-items: center;
  2741. justify-content: center;
  2742. @extend .u-clickable;
  2743. background: hsl(240,9%,19%);
  2744. }
  2745. .pop-selectable:hover {
  2746. background: white;
  2747. }
  2748. .pop-selectable:first-child {
  2749. border-radius: 4px 0 0 4px;
  2750. }
  2751. .pop-selectable:last-child {
  2752. border-radius: 0 4px 4px 0;
  2753. }
  2754. .pop-selectable-icon {
  2755. fill: hsl(231,3%,40%);
  2756. }
  2757. .pop-selectable:hover .pop-selectable-icon {
  2758. fill: hsl(240,9%,19%);
  2759. }
  2760. .article-add .icon-internal {
  2761. fill: hsl(18,87%,65%);
  2762. }
  2763. .article-add.is-public .icon-internal,
  2764. .article-add.is-internal .icon-public {
  2765. display: none;
  2766. }
  2767. .article-new .recipient-picker {
  2768. height: 36px;
  2769. position: relative;
  2770. transition: 300ms;
  2771. }
  2772. .article-new .recipient-picker.is-open {
  2773. opacity: 1;
  2774. }
  2775. .recipient-picker .icon {
  2776. margin-top: -2px;
  2777. }
  2778. .recipient-count {
  2779. margin-left: 3px;
  2780. margin-top: 1px;
  2781. line-height: 1;
  2782. }
  2783. .recipient-list {
  2784. position: absolute;
  2785. background: hsl(234,10%,19%);
  2786. left: 48px;
  2787. color: white;
  2788. }
  2789. .recipient-picker.is-open .recipient-list {
  2790. display: block;
  2791. }
  2792. .list-arrow {
  2793. position: absolute;
  2794. top: 210px;
  2795. left: -6px;
  2796. margin-top: -6px;
  2797. border-right: 6px solid #2c2d36;
  2798. border-top: 6px solid transparent;
  2799. border-bottom: 6px solid transparent;
  2800. }
  2801. .list-head {
  2802. height: 38px;
  2803. line-height: 38px;
  2804. padding: 1px 19px 0;
  2805. text-transform: uppercase;
  2806. }
  2807. .list-head div {
  2808. position: relative;
  2809. left: -20px;
  2810. }
  2811. .list-entry {
  2812. width: 340px;
  2813. height: 60px;
  2814. padding: 0 16px;
  2815. border-top: 1px solid hsl(240,6%,27%);
  2816. }
  2817. .list-entry-name {
  2818. margin-left: 18px;
  2819. }
  2820. .list-entry-type {
  2821. font-size: 12px;
  2822. }
  2823. .list-entry-type div {
  2824. padding: 3px 7px;
  2825. border: 1px solid hsl(234,10%,10%);
  2826. color: hsl(0,0%,40%);
  2827. background: hsl(234,10%,14%);
  2828. }
  2829. .list-entry-type .active {
  2830. color: white;
  2831. background: inherit;
  2832. box-shadow: 0 1px rgba(255,255,255,.03) inset;
  2833. }
  2834. .list-entry-type div:not(:last-child) {
  2835. border-right: none;
  2836. }
  2837. .list-entry-type div:first-child {
  2838. border-radius: 3px 0 0 3px;
  2839. }
  2840. .list-entry-type div:last-child {
  2841. border-left: none;
  2842. border-radius: 0 3px 3px 0;
  2843. }
  2844. .recipient-list input {
  2845. padding-top: 2px;
  2846. background: hsl(232,10%,16%);
  2847. color: white;
  2848. border: none;
  2849. outline: none;
  2850. }
  2851. .recipient-list input[type=submit] {
  2852. height: 0;
  2853. width: 0;
  2854. padding: 0;
  2855. position: absolute;
  2856. visibility: hidden;
  2857. }
  2858. .recipient-list input::-webkit-input-placeholder { color: #666; }
  2859. .recipient-list input::-moz-placeholder { opacity: 1; color: #666; }
  2860. .recipient-list input:-ms-input-placeholder { color: #666; }
  2861. .article-new .textBubble {
  2862. border-color: #b3b3b3;
  2863. border-radius: 5px;
  2864. padding-left: 12px;
  2865. padding-right: 12px;
  2866. }
  2867. .article-new .textBubble [contenteditable],
  2868. .article-new textarea,
  2869. .articleNewEdit-body {
  2870. width: 100%;
  2871. position: relative;
  2872. min-height: 20px;
  2873. vertical-align: bottom;
  2874. border: none;
  2875. background: none;
  2876. outline: none;
  2877. resize: none;
  2878. }
  2879. .articleNewEdit-body {
  2880. height: auto;
  2881. min-height: 38px;
  2882. }
  2883. .article-new .bubble-arrow:after {
  2884. border-color: #b3b3b3;
  2885. box-shadow: none;
  2886. }
  2887. .article-attachment {
  2888. position: absolute;
  2889. bottom: -4px;
  2890. left: 10px;
  2891. right: 10px;
  2892. height: 42px;
  2893. padding: 10px 0;
  2894. color: #b3b3b3;
  2895. overflow: hidden;
  2896. @extend .u-unclickable, .u-textTruncate;
  2897. }
  2898. .attachments:not(:empty) {
  2899. padding: 9px 5px;
  2900. border-top: 1px solid hsl(0,0%,93%);
  2901. margin: 6px -12px 30px;
  2902. }
  2903. .attachment {
  2904. font-size: 13px;
  2905. padding: 1px 10px 1px 7px;
  2906. cursor: default;
  2907. position: relative;
  2908. display: flex;
  2909. }
  2910. .attachment:hover {
  2911. background: hsl(200,20%,97%);
  2912. }
  2913. .attachment-name {
  2914. margin-right: 5px;
  2915. @extend .u-highlight;
  2916. }
  2917. .attachment-size {
  2918. white-space: nowrap;
  2919. float: right;
  2920. margin-right: 10px;
  2921. }
  2922. .attachment-delete {
  2923. color: hsl(198,19%,72%);
  2924. text-decoration: underline;
  2925. display: none;
  2926. white-space: nowrap;
  2927. margin-left: auto;
  2928. @extend .u-clickable;
  2929. }
  2930. .attachment:hover .attachment-delete {
  2931. padding: 0 10px 0 30px;
  2932. float: right;
  2933. display: block;
  2934. position: absolute;
  2935. right: 0;
  2936. background: linear-gradient(to right, hsla(200,20%,97%,0), hsla(200,20%,97%,1) 20px);
  2937. }
  2938. .attachment-delete .icon {
  2939. fill: hsl(198,18%,72%);
  2940. width: 9px;
  2941. height: 9px;
  2942. margin-right: 5px;
  2943. }
  2944. .attachmentPlaceholder-inputHolder {
  2945. position: relative;
  2946. display: inline-block;
  2947. overflow: hidden;
  2948. vertical-align: bottom;
  2949. @extend .u-highlight, .u-clickable;
  2950. }
  2951. .attachmentUpload {
  2952. color: hsl(198,19%,72%);
  2953. }
  2954. .attachmentUpload-cancel {
  2955. @extend .u-clickable;
  2956. margin-left: auto;
  2957. text-decoration: underline;
  2958. }
  2959. .attachmentUpload .icon {
  2960. fill: hsl(198,18%,72%);
  2961. width: 9px;
  2962. height: 9px;
  2963. margin-right: 5px;
  2964. }
  2965. .attachmentUpload-progressBar {
  2966. position: absolute;
  2967. height: 4px;
  2968. background: hsl(202,66%,55%);
  2969. left: 0;
  2970. bottom: 0;
  2971. }
  2972. .tabsSidebar-tabsSpacer {
  2973. padding-right: 62px !important;
  2974. }
  2975. .tabsSidebar-sidebarSpacer {
  2976. margin-right: $sidebarWidth;
  2977. transition: margin 500ms;
  2978. }
  2979. .tabsSidebar-sidebarSpacer.is-closed {
  2980. margin-right: 0;
  2981. }
  2982. .tabsSidebar-sidebarSpacer.is-closed .scrollPageHeader {
  2983. margin-right: 0;
  2984. }
  2985. .tabsSidebar-holder {
  2986. overflow: hidden;
  2987. position: relative;
  2988. flex: 1;
  2989. display: flex;
  2990. flex-direction: column;
  2991. }
  2992. .tabsSidebar .sidebar {
  2993. width: $sidebarWidth;
  2994. border-left: 1px solid #e6e6e6;
  2995. padding: 0;
  2996. }
  2997. .tabsSidebar .sidebar > hr {
  2998. margin: 20px;
  2999. }
  3000. .tabsSidebar .sidebar-header {
  3001. display: flex;
  3002. align-content: stretch;
  3003. position: relative;
  3004. margin: 0 20px;
  3005. + hr {
  3006. margin-top: 0;
  3007. }
  3008. }
  3009. .sidebar-header-headline {
  3010. padding: 33px 0 17px 25px;
  3011. margin: 0 0 0 -20px;
  3012. line-height: 1;
  3013. padding-right: 8px;
  3014. @extend .u-clickable, .u-textTruncate;
  3015. }
  3016. .sidebar-header-actions {
  3017. flex: 1;
  3018. margin-right: 5px;
  3019. display: flex;
  3020. align-items: center;
  3021. .dropdown {
  3022. flex: 1;
  3023. position: static;
  3024. }
  3025. .dropdown-toggle {
  3026. padding-top: 38px;
  3027. padding-bottom: 24px;
  3028. }
  3029. }
  3030. .tabsSidebar-close {
  3031. padding: 27px 35px 12px 0;
  3032. margin: 0 -20px 0 0;
  3033. @extend .u-clickable;
  3034. display: flex;
  3035. align-items: center;
  3036. justify-content: center;
  3037. .icon {
  3038. fill: black;
  3039. }
  3040. }
  3041. .tabsSidebar .sidebar-content {
  3042. padding: 0 20px 20px;
  3043. }
  3044. .sidebar.bottom-form-shadow {
  3045. box-shadow:
  3046. 0 -1px rgba(0,0,0,.005) inset,
  3047. 0 -2px rgba(0,0,0,.005) inset,
  3048. 0 -3px rgba(0,0,0,.005) inset,
  3049. 0 -4px rgba(0,0,0,.005) inset;
  3050. }
  3051. .tabsSidebar {
  3052. position: absolute;
  3053. right: 0;
  3054. top: 0;
  3055. bottom: 0;
  3056. transition: 500ms;
  3057. &.tabsSidebar--attributeBarSpacer {
  3058. bottom: 60px;
  3059. }
  3060. }
  3061. .tabsSidebar.is-closed {
  3062. transform: translateX($sidebarWidth);
  3063. }
  3064. .tabsSidebar-tabs {
  3065. position: absolute;
  3066. left: -55px;
  3067. top: 0;
  3068. bottom: 0;
  3069. pointer-events: none;
  3070. }
  3071. .test {
  3072. position: absolute;
  3073. width: 100%;
  3074. }
  3075. .tabsSidebar-tab {
  3076. width: 56px;
  3077. height: 60px;
  3078. background: hsl(197,20%,93%);
  3079. position: relative;
  3080. border-top: 1px solid hsl(202,12%,87%);
  3081. @extend .u-clickable;
  3082. display: flex;
  3083. align-items: center;
  3084. justify-content: center;
  3085. }
  3086. .tabsSidebar-tab.is-changed:before {
  3087. position: absolute;
  3088. content: '';
  3089. left: -3px;
  3090. width: 6px;
  3091. height: 6px;
  3092. top: 50%;
  3093. margin-top: -3px;
  3094. border-radius: 100%;
  3095. background: hsl(198,19%,72%);
  3096. box-shadow: 0 0 0 2px hsl(210,17%,98%);
  3097. }
  3098. .tabsSidebar-tab:first-child {
  3099. border-top-left-radius: 8px;
  3100. border-top: none;
  3101. }
  3102. .tabsSidebar-tab:last-child {
  3103. border-bottom-left-radius: 8px;
  3104. }
  3105. .tabsSidebar-tab .icon {
  3106. width: 24px;
  3107. height: 24px;
  3108. fill: hsl(197,19%,78%);
  3109. }
  3110. .tabsSidebar-tab.active .icon {
  3111. fill: hsl(206,7%,37%);
  3112. }
  3113. .sidebar .text-muted {
  3114. color: hsl(198,19%,72%);
  3115. }
  3116. .alert {
  3117. padding: 10px 15px;
  3118. border-radius: 3px;
  3119. color: hsl(202,5%,18%);
  3120. &.alert--info {
  3121. border-color: hsl(188,50%,72%);
  3122. background: hsl(191,53%,79%);
  3123. }
  3124. &.alert--success {
  3125. border-color: hsl(145,51%,70%);
  3126. background: hsl(145,51%,77%);
  3127. }
  3128. &.alert--warning {
  3129. border-color: hsl(43,92%,71%);
  3130. background: hsl(42,94%,80%);
  3131. }
  3132. &.alert--danger {
  3133. border-color: hsl(9,72%,62%);
  3134. background: hsl(12,73%,66%);
  3135. }
  3136. }
  3137. .tags,
  3138. .links {
  3139. margin: 20px 0;
  3140. }
  3141. .sidebar-list {
  3142. padding: 0;
  3143. margin-bottom: 5px;
  3144. }
  3145. .sidebar-list-title {
  3146. margin-top: 7px;
  3147. margin-bottom: 4px;
  3148. text-transform: uppercase;
  3149. color: hsl(198,19%,84%);
  3150. display: block;
  3151. font-size: 12px;
  3152. font-weight: normal;
  3153. letter-spacing: 0.1em;
  3154. }
  3155. .sidebar-list-item {
  3156. display: flex;
  3157. align-items: center;
  3158. color: hsl(206,7%,28%);
  3159. border-bottom: 1px solid hsl(240,4%,95%);
  3160. }
  3161. .sidebar-list-item-name {
  3162. flex: 1;
  3163. padding: 4px 1px;
  3164. }
  3165. .sidebar-list-item-delete {
  3166. padding: 0 10px;
  3167. margin-right: -3px;
  3168. display: flex;
  3169. align-items: center;
  3170. justify-content: center;
  3171. align-self: stretch;
  3172. @extend .u-clickable;
  3173. .icon {
  3174. width: 9px;
  3175. height: 9px;
  3176. fill: hsl(0,0%,82%);
  3177. }
  3178. }
  3179. .sidebar-list-item-delete:hover .icon {
  3180. fill: hsl(1,77%,47%);
  3181. }
  3182. .ticket-id {
  3183. color: white;
  3184. background: hsl(198,19%,72%);
  3185. font-size: 11px;
  3186. border-radius: 7px;
  3187. padding: 0 5px;
  3188. margin-right: 2px;
  3189. }
  3190. .attributeBar {
  3191. height: 60px;
  3192. background: white;
  3193. transition: margin 250ms;
  3194. flex-shrink: 0;
  3195. &.is-closed {
  3196. margin-bottom: -60px;
  3197. }
  3198. }
  3199. .newTicket {
  3200. padding: 14px 34px;
  3201. }
  3202. .newTicket .sidebar {
  3203. width: 290px;
  3204. }
  3205. .newTicket .form-control:not(:focus):not(.focus) {
  3206. border-color: hsl(0,0%,90%);
  3207. }
  3208. .newTicket .subtle-link {
  3209. color: hsl(0,0%,89%);
  3210. }
  3211. .newTicket .article-form-top {
  3212. margin-top: 15px;
  3213. }
  3214. .box {
  3215. background: white;
  3216. margin: 20px 0;
  3217. border: 1px solid #e6e6e6;
  3218. padding: 20px 24px;
  3219. }
  3220. .box.box--newTicket {
  3221. max-width: 658px;
  3222. margin-left: auto;
  3223. margin-right: auto;
  3224. }
  3225. .box .page-header {
  3226. text-align: center;
  3227. margin-bottom: 12px;
  3228. }
  3229. .box h1 {
  3230. margin-top: 12px;
  3231. color: hsl(60,1%,34%);
  3232. }
  3233. .box h2 {
  3234. margin-top: 12px;
  3235. }
  3236. .box .two-columns {
  3237. margin-left: -4px;
  3238. margin-right: -4px;
  3239. }
  3240. .box .two-columns .column {
  3241. margin-left: 4px;
  3242. margin-right: 4px;
  3243. width: calc(50% - 8px);
  3244. }
  3245. .box-controls {
  3246. margin-top: 20px;
  3247. display: flex;
  3248. align-items: center;
  3249. }
  3250. .box--yellow {
  3251. background: hsl(47,100%,93%);
  3252. border-color: hsl(47,100%,75%);
  3253. color: hsl(47,20%,67%);
  3254. h1, h2 {
  3255. color: hsl(47,3%,28%);
  3256. }
  3257. }
  3258. .box-progress {
  3259. display: flex;
  3260. align-items: center;
  3261. justify-content: center;
  3262. }
  3263. .box-progress-title {
  3264. color: hsl(47,3%,28%);
  3265. }
  3266. .box-progress-body {
  3267. flex: 1;
  3268. margin-left: 24px;
  3269. display: flex;
  3270. align-items: center;
  3271. justify-content: center;
  3272. progress {
  3273. width: 100%;
  3274. }
  3275. }
  3276. .formset-inset {
  3277. margin: 34px -24px 24px;
  3278. padding: 19px 24px 24px;
  3279. background: hsl(197,20%,93%);
  3280. border-top: 1px solid hsl(0,0%,90%);
  3281. border-bottom: 1px solid hsl(0,0%,90%);
  3282. }
  3283. .type-tabs .tab {
  3284. line-height: 42px;
  3285. padding: 0 12px 0 12px;
  3286. list-style: none;
  3287. }
  3288. .type-tabs .tab-icon {
  3289. width: 16px;
  3290. height: 16px;
  3291. fill: #ccc;
  3292. vertical-align: top;
  3293. margin-right: 9px;
  3294. margin-top: 11px;
  3295. transform: scale(1.2);
  3296. }
  3297. .type-tabs .tab.active .tab-icon {
  3298. fill: white;
  3299. }
  3300. .tokenfield .token {
  3301. padding: 0 0 0 10px;
  3302. margin: 0 5px 8px 0;
  3303. height: 26px;
  3304. line-height: 27px;
  3305. color: white;
  3306. background: hsl(198,19%,72%);
  3307. border: none;
  3308. float: none;
  3309. display: inline-flex;
  3310. align-items: center;
  3311. }
  3312. .tokenfield .token-input {
  3313. vertical-align: top;
  3314. margin: 2px 0 0 5px;
  3315. height: 25px;
  3316. }
  3317. .tokenfield .token .token-label {
  3318. padding: 0;
  3319. }
  3320. .tokenfield.form-control {
  3321. padding-top: 8px;
  3322. }
  3323. .tokenfield .token .close {
  3324. margin: 0;
  3325. padding: 0 9px 0 5px;
  3326. font-family: inherit;
  3327. font-weight: 300;
  3328. font-size: 30px;
  3329. line-height: 1;
  3330. color: white;
  3331. text-shadow: none;
  3332. opacity: .3;
  3333. outline: none;
  3334. height: auto;
  3335. }
  3336. .tokenfield .token .close:hover {
  3337. opacity: .5;
  3338. }
  3339. .drox {
  3340. color: hsl(60,1%,74%);
  3341. }
  3342. .drox .drox-header {
  3343. padding-bottom: 2px;
  3344. margin-bottom: 16px;
  3345. border-bottom: 1px solid hsl(240,4%,95%);
  3346. }
  3347. .drox a.create {
  3348. margin-top: 2px;
  3349. display: inline-block;
  3350. }
  3351. .drox .form-group {
  3352. margin-bottom: 22px;
  3353. }
  3354. .drox .drox-body p:first-child {
  3355. margin-top: 20px;
  3356. }
  3357. .newTicket .templates {
  3358. border-bottom: 1px solid hsl(240,4%,95%);
  3359. padding-bottom: 14px;
  3360. }
  3361. .template-attributes {
  3362. margin: 17px 0 19px;
  3363. }
  3364. .template-attribute {
  3365. height: 24px;
  3366. line-height: 25px;
  3367. padding-left: 10px;
  3368. margin-bottom: 2px;
  3369. font-size: 13px;
  3370. color: hsl(198,11%,59%);
  3371. background: hsl(197,20%,93%);
  3372. border: 1px solid hsl(0,0%,90%);
  3373. border-radius: 3px;
  3374. }
  3375. .template-attribute .key {
  3376. text-transform: uppercase;
  3377. margin-right: 3px;
  3378. }
  3379. .template-attribute .value {
  3380. margin-left: 3px;
  3381. }
  3382. .template-attribute .delete {
  3383. padding: 0 7px;
  3384. margin-top: 4px;
  3385. line-height: 19px;
  3386. font-size: 28px;
  3387. font-weight: 300;
  3388. opacity: .4;
  3389. }
  3390. .customer-name {
  3391. color: hsl(60,1%,34%);
  3392. }
  3393. .customer-email {
  3394. margin-top: 5px;
  3395. margin-bottom: 20px;
  3396. display: block;
  3397. }
  3398. .switchBackToUser {
  3399. display: flex;
  3400. align-items: center;
  3401. background: hsl(200,87%,45%);
  3402. color: #fff;
  3403. height: 45px;
  3404. padding: 0 17px;
  3405. /*top: -45px !important;*/
  3406. border-bottom: 5px solid hsl(205,90%,60%);
  3407. }
  3408. .switchBackToUser-icon {
  3409. width: 19px;
  3410. height: 18px;
  3411. }
  3412. .switchBackToUser-text {
  3413. margin-left: 10px;
  3414. }
  3415. .switchBackToUser-close {
  3416. width: 40px;
  3417. height: 40px;
  3418. margin-right: -10px;
  3419. display: flex;
  3420. align-items: center;
  3421. justify-content: center;
  3422. svg {
  3423. fill: white;
  3424. }
  3425. }
  3426. .modal {
  3427. position: fixed;
  3428. }
  3429. .modal-dialog {
  3430. width: auto;
  3431. max-width: 660px;
  3432. margin-top: 35px;
  3433. margin-bottom: 35px;
  3434. }
  3435. .modal-backdrop {
  3436. position: fixed;
  3437. }
  3438. .modal-content {
  3439. border-radius: 0;
  3440. border: 1px solid hsl(0,0%,90%);
  3441. box-shadow: none;
  3442. color: hsl(60,1%,34%);
  3443. word-wrap: break-word;
  3444. }
  3445. .modal-header {
  3446. padding: 30px 23px 23px;
  3447. border: none;
  3448. }
  3449. .modal-header h1 {
  3450. text-align: center;
  3451. }
  3452. .modal-close {
  3453. padding: 23px;
  3454. position: absolute;
  3455. right: 0;
  3456. top: 0;
  3457. @extend .u-clickable;
  3458. }
  3459. .modal-close .icon-diagonal-cross {
  3460. opacity: 0.18;
  3461. }
  3462. .modal-body {
  3463. padding: 0 23px;
  3464. word-break: normal;
  3465. }
  3466. .modal-footer {
  3467. padding: 23px 23px 20px;
  3468. border: none;
  3469. }
  3470. .modal-leftFooter,
  3471. .modal-centerFooter,
  3472. .modal-rightFooter {
  3473. display: flex;
  3474. align-items: start;
  3475. flex: 1;
  3476. }
  3477. .modal.modal--local {
  3478. display: block;
  3479. padding-left: 40px;
  3480. position: absolute;
  3481. bottom: auto;
  3482. min-height: 100vh;
  3483. .modal-backdrop {
  3484. position: absolute;
  3485. background: hsla(210,17%,93%,.55);
  3486. height: 100% !important;
  3487. opacity: 1;
  3488. }
  3489. .modal-dialog {
  3490. box-shadow: 0 0 40px hsla(210,17%,40%,.34);
  3491. }
  3492. }
  3493. .caret {
  3494. position: absolute;
  3495. top: 50%;
  3496. margin-top: -3px;
  3497. right: 10px;
  3498. }
  3499. .dropdown-menu {
  3500. margin: 0;
  3501. padding: 0;
  3502. min-width: 100%;
  3503. color: hsl(198,19%,72%);
  3504. text-transform: initial;
  3505. letter-spacing: 0;
  3506. background: hsl(234,10%,19%);
  3507. border-radius: 0;
  3508. border: none;
  3509. box-shadow: none;
  3510. overflow: hidden;
  3511. }
  3512. .dropdown-toggle {
  3513. display: flex;
  3514. align-items: center;
  3515. @extend .u-clickable;
  3516. }
  3517. .dropdown-icon {
  3518. width: 16px;
  3519. height: 16px;
  3520. opacity: 0.39;
  3521. }
  3522. .dropdown-menu.dropdown-menu--light {
  3523. background: white;
  3524. }
  3525. .dropdown-menu.dropdown-menu--light > li > a {
  3526. color: hsl(202,70%,49%);
  3527. }
  3528. .dropdown-menu.dropdown-menu--light > li > a:hover {
  3529. color: #2594d4;
  3530. background: rgba(0,0,0,.05);
  3531. }
  3532. .dropdown-menu.dropdown-menu--light li:hover,
  3533. .dropdown-menu.dropdown-menu--light li.is-active {
  3534. background: none;
  3535. }
  3536. .dropdown ul {
  3537. margin: 0;
  3538. }
  3539. .dropdown li,
  3540. .dropup li {
  3541. height: 39px;
  3542. line-height: 39px;
  3543. padding: 0 15px;
  3544. }
  3545. .dropdown li:not(:first-child) {
  3546. box-shadow: 0 1px rgba(255,255,255,.13) inset;
  3547. }
  3548. .dropdown li:hover,
  3549. .dropdown li.is-active {
  3550. background: hsl(205,90%,60%);
  3551. }
  3552. .dropdown li:not(.recipientList-controls):hover + li,
  3553. .dropdown li.is-active + li {
  3554. box-shadow: none;
  3555. }
  3556. .dropdown-menu > li > a {
  3557. color: white;
  3558. padding: 0 15px;
  3559. margin: 0 -15px;
  3560. line-height: inherit;
  3561. }
  3562. .dropdown-menu > li > a:hover {
  3563. color: white;
  3564. background: hsl(205,90%,60%);
  3565. }
  3566. .dropdown-menu > li > a span {
  3567. display: block;
  3568. }
  3569. .dropdown.dropdown--actions {
  3570. li {
  3571. display: flex;
  3572. align-items: center;
  3573. }
  3574. .dropdown-iconSpacer,
  3575. .dropdown-activeSpacer {
  3576. display: flex;
  3577. align-items: center;
  3578. }
  3579. .dropdown-iconSpacer {
  3580. width: 25px;
  3581. }
  3582. .dropdown-activeSpacer {
  3583. width: 34px;
  3584. margin-left: auto;
  3585. justify-content: flex-end;
  3586. }
  3587. a {
  3588. @extend .u-clickable;
  3589. display: flex;
  3590. flex: 1;
  3591. padding: 0 18px;
  3592. }
  3593. }
  3594. li.dropdown-header {
  3595. line-height: 36px;
  3596. height: 32px;
  3597. }
  3598. .recipientList,
  3599. .recipientList-organizationMembers {
  3600. list-style: none;
  3601. padding: 0;
  3602. }
  3603. .recipientList-entry {
  3604. @extend .u-clickable;
  3605. display: flex;
  3606. align-items: center;
  3607. }
  3608. .recipientList-entry .recipientList-iconSpacer {
  3609. width: 20px;
  3610. margin-left: -5px;
  3611. display: flex;
  3612. align-items: center;
  3613. justify-content: center;
  3614. }
  3615. .recipientList-icon {
  3616. width: 16px;
  3617. height: 16px;
  3618. fill: white;
  3619. opacity: 0.2;
  3620. }
  3621. .recipientList--new .recipientList-icon {
  3622. opacity: 1;
  3623. }
  3624. .recipientList-entry:hover .recipientList-icon {
  3625. opacity: 1;
  3626. }
  3627. .recipientList-name {
  3628. color: white;
  3629. margin-left: 10px;
  3630. flex: 1;
  3631. @extend .u-textTruncate;
  3632. }
  3633. .recipientList-arrow {
  3634. fill: white;
  3635. opacity: 0.39;
  3636. }
  3637. .recipientList-entry:hover .recipientList-arrow {
  3638. opacity: 1;
  3639. }
  3640. .recipientList-detail {
  3641. opacity: 0.5;
  3642. }
  3643. .recipientList-icon.plus {
  3644. margin-left: 13px;
  3645. }
  3646. .recipientList--new {
  3647. background: hsl(145,51%,45%);
  3648. }
  3649. .dropdown .recipientList--new:hover {
  3650. background: hsl(147,52%,43%);
  3651. }
  3652. .recipientList-controls,
  3653. .recipientList-controls:hover {
  3654. @extend .u-clickable;
  3655. padding: 0 10px !important;
  3656. background: hsl(206,7%,28%) !important;
  3657. }
  3658. .recipientList-organizationMembers {
  3659. position: absolute;
  3660. top: 0;
  3661. left: 0;
  3662. right: 0;
  3663. }
  3664. .userInfo-avatar {
  3665. float: right;
  3666. position: relative;
  3667. }
  3668. .organizationInfo-avatar {
  3669. @extend .userInfo-avatar;
  3670. padding: 18px 0 0 18px;
  3671. }
  3672. .userList {
  3673. list-style: none;
  3674. padding: 0;
  3675. li {
  3676. position: relative;
  3677. margin: 10px 0;
  3678. }
  3679. a {
  3680. @extend .u-textTruncate;
  3681. position: absolute;
  3682. top: 10px;
  3683. right: 0px;
  3684. left: 48px;
  3685. }
  3686. }
  3687. .checkbox.form-group .checkbox {
  3688. margin-top: 0;
  3689. margin-bottom: 15px;
  3690. height: auto;
  3691. padding-bottom: 2px;
  3692. background: hsl(210,17%,98%);
  3693. }
  3694. .checkbox.form-group label {
  3695. padding: 0 2px;
  3696. cursor: default;
  3697. }
  3698. .checkbox.form-group .controls label {
  3699. padding: 3px 0 3px 20px;
  3700. font: inherit;
  3701. font-size: 13px;
  3702. margin-bottom: 0;
  3703. color: inherit;
  3704. text-transform: inherit;
  3705. letter-spacing: 0;
  3706. @extend .u-clickable;
  3707. }
  3708. .checkbox.form-group input[type=checkbox] {
  3709. margin-top: 3px;
  3710. vertical-align: bottom;
  3711. }
  3712. .userSearch {
  3713. margin-bottom: 20px;
  3714. }
  3715. .userSearch-label {
  3716. margin: 10px 10px 0 0;
  3717. }
  3718. .userSearch .tab:not(.active) {
  3719. background: white;
  3720. }
  3721. .userSearch .tabs {
  3722. margin: 0;
  3723. }
  3724. .nav-tabs {
  3725. border-bottom: none;
  3726. }
  3727. .nav-tabs li {
  3728. margin: 0;
  3729. }
  3730. .nav-tabs > li > a,
  3731. .nav-tabs > li > a:hover,
  3732. .nav-tabs > li > a:focus {
  3733. background: white;
  3734. border-radius: 0;
  3735. border: 1px solid hsl(0,0%,90%);
  3736. color: hsl(0,0%,70%);
  3737. height: 40px;
  3738. margin: 0;
  3739. }
  3740. .nav-tabs > li:not(:last-child):not(:only-child) > a {
  3741. border-right: none;
  3742. }
  3743. .nav-tabs > li:first-child > a {
  3744. border-radius: 5px 0 0 5px;
  3745. }
  3746. .nav-tabs > li:last-child > a {
  3747. border-radius: 0 5px 5px 0;
  3748. }
  3749. .nav-tabs > li:only-child > a {
  3750. border-radius: 5px;
  3751. }
  3752. .nav-tabs > li.active > a,
  3753. .nav-tabs > li.active > a:hover,
  3754. .nav-tabs > li.active > a:focus {
  3755. background: hsl(206,7%,28%);
  3756. color: white;
  3757. border-color: hsl(0,0%,90%);
  3758. }
  3759. .main .nav-tabs:first-child {
  3760. margin: 28px 0 50px;
  3761. }
  3762. .settings-entry {
  3763. margin-bottom: 42px;
  3764. max-width: 700px;
  3765. }
  3766. .form-item .form-group {
  3767. margin-bottom: 0;
  3768. }
  3769. .form-item .form-group + .form-group {
  3770. margin-top: 15px;
  3771. }
  3772. .form-item + .btn {
  3773. margin-left: 23px;
  3774. }
  3775. .scrollPageHeader {
  3776. @extend .zIndex-6;
  3777. display: flex;
  3778. align-items: center;
  3779. background: white;
  3780. border-bottom: 1px solid hsl(0,0%,78%);
  3781. height: 64px;
  3782. top: 0;
  3783. left: $navigationWidth;
  3784. right: $sidebarWidth;
  3785. padding: 0 22px;
  3786. position: fixed;
  3787. min-width: $minWidth - $navigationWidth - $sidebarWidth;
  3788. transform: translateY(-64px);
  3789. }
  3790. .scrollPageHeader small {
  3791. color: hsl(198,19%,72%);
  3792. }
  3793. .scrollPageHeader .ticket-title {
  3794. max-width: initial;
  3795. padding: 0;
  3796. min-width: 0;
  3797. flex: 1;
  3798. }
  3799. .scrollPageHeader h1 {
  3800. font-size: 19px;
  3801. margin: 0 15px;
  3802. @extend .u-textTruncate;
  3803. }
  3804. .wizard-logo {
  3805. fill: white;
  3806. margin-left: -25px;
  3807. margin-bottom: 5px;
  3808. }
  3809. .wizard-slide {
  3810. @extend .hero-unit;
  3811. display: flex;
  3812. flex-direction: column;
  3813. width: 400px;
  3814. padding-bottom: 18px;
  3815. margin-bottom: 20px;
  3816. }
  3817. .wizard h2 {
  3818. text-align: center;
  3819. border-bottom: 1px solid rgba(0,0,0,.13);
  3820. padding-bottom: 8px;
  3821. margin-bottom: 16px;
  3822. & + p {
  3823. margin-top: 0;
  3824. }
  3825. }
  3826. .wizard-body {
  3827. flex: 1;
  3828. padding-bottom: 15px;
  3829. }
  3830. .wizard-controls {
  3831. display: flex;
  3832. margin-top: 15px;
  3833. height: 39px;
  3834. }
  3835. .wizard-buttonList {
  3836. margin-top: 15px;
  3837. min-width: 200px;
  3838. }
  3839. p + .wizard-buttonList,
  3840. label + .wizard-buttonList {
  3841. margin-top: 5px;
  3842. }
  3843. .wizard-loadingText {
  3844. text-align: center;
  3845. margin: 0;
  3846. }
  3847. .wizard-loadingText .loading {
  3848. vertical-align: middle;
  3849. margin-right: 10px;
  3850. }
  3851. .wizard-aside {
  3852. padding-top: 15px;
  3853. text-align: center;
  3854. border-top: 1px solid rgba(0,0,0,.13);
  3855. }
  3856. .setup.wizard .wizard-body {
  3857. min-height: 140px;
  3858. & > p:first-child {
  3859. margin-top: 0;
  3860. }
  3861. }
  3862. .setup.wizard .logo-preview {
  3863. display: block;
  3864. height: 0;
  3865. max-width: 200px;
  3866. max-height: 100px;
  3867. + .logo-preview-placeholder {
  3868. height: 100px;
  3869. color: hsl(0,0%,60%);
  3870. background: hsl(0,0%,95%);
  3871. margin-bottom: 10px;
  3872. display: flex;
  3873. align-items: center;
  3874. justify-content: center;
  3875. }
  3876. }
  3877. .setup.wizard .logo-preview:not([src=""]) {
  3878. margin: 0 auto 15px;
  3879. height: auto;
  3880. + .logo-preview-placeholder {
  3881. display: none;
  3882. }
  3883. }
  3884. .setup.wizard .base-outbound-settings {
  3885. margin-top: 15px;
  3886. }
  3887. .import.wizard .wizard-slide {
  3888. height: 300px;
  3889. }
  3890. .import-source {
  3891. border-radius: 5px;
  3892. border: 1px solid rgba(0,0,0,.13);
  3893. height: 50px;
  3894. margin: 5px 0;
  3895. @extend .u-clickable;
  3896. }
  3897. .input-feedback {
  3898. position: absolute;
  3899. padding-left: 10px;
  3900. right: 1px;
  3901. top: 1px;
  3902. bottom: 1px;
  3903. width: 52px;
  3904. border-radius: 0 5px 5px 0;
  3905. background: linear-gradient(to right, rgba(255,255,255,0), white 33%);
  3906. }
  3907. .input-feedback .icon {
  3908. display: none;
  3909. }
  3910. .input-feedback[data-state=loading] .loading.icon,
  3911. .input-feedback[data-state=error] .icon-error,
  3912. .input-feedback[data-state=success] .icon-checkmark {
  3913. display: block;
  3914. }
  3915. .progressTable {
  3916. width: 100%;
  3917. margin: 0 auto;
  3918. }
  3919. .progressTable td {
  3920. padding: 8px;
  3921. overflow: auto;
  3922. width: 33%;
  3923. }
  3924. .progressTable tr:not(:last-child) {
  3925. border-bottom: 1px solid #eee;
  3926. }
  3927. .progressTable td:first-child {
  3928. text-align: right;
  3929. }
  3930. .progressTable progress {
  3931. width: 100%;
  3932. min-width: 60px;
  3933. display: block;
  3934. }
  3935. .progressTable .icon-checkmark {
  3936. margin-left: 10px;
  3937. opacity: 0;
  3938. }
  3939. .progressTable tr.is-done .icon-checkmark {
  3940. opacity: 1;
  3941. }
  3942. .channelList {
  3943. flex: 1;
  3944. display: flex;
  3945. flex-direction: column;
  3946. background: white;
  3947. border-radius: 2px;
  3948. margin: 5px 0 20px;
  3949. }
  3950. .channelList,
  3951. .channelList-controls,
  3952. .channelList-controlEntry {
  3953. border: 1px solid hsl(251,6%,90%);
  3954. }
  3955. .channelList-entry {
  3956. display: flex;
  3957. cursor: default;
  3958. padding: 5px 8px;
  3959. &:not(:last-child) {
  3960. border-bottom: 1px solid hsl(251,6%,90%);
  3961. }
  3962. }
  3963. .channelList-label {
  3964. margin: 0 10px;
  3965. flex: 1;
  3966. & > * {
  3967. @extend .u-textTruncate;
  3968. }
  3969. }
  3970. .channelList-status {
  3971. font-size: 12px;
  3972. color: #999;
  3973. }
  3974. .channelList-placeholder {
  3975. display: flex;
  3976. align-items: center;
  3977. justify-content: center;
  3978. flex: 1;
  3979. color: #999;
  3980. }
  3981. .channelList-controls {
  3982. margin-top: auto;
  3983. display: flex;
  3984. background: hsl(251,6%,92%);
  3985. border-left: none;
  3986. border-right: none;
  3987. border-bottom: none;
  3988. }
  3989. .channelList-controlEntry {
  3990. display: flex;
  3991. justify-content: center;
  3992. width: 26px;
  3993. height: 26px;
  3994. border-left: none;
  3995. border-top: none;
  3996. border-bottom: none;
  3997. position: relative;
  3998. [data-toggle=dropdown] {
  3999. position: relative;
  4000. }
  4001. .icon {
  4002. opacity: 0.8;
  4003. }
  4004. }
  4005. .avatar-gallery {
  4006. display: flex;
  4007. flex-wrap: wrap;
  4008. }
  4009. .avatar-holder {
  4010. display: inline-block;
  4011. position: relative;
  4012. margin: 0 32px 32px 0;
  4013. border-radius: 100%;
  4014. box-shadow: 0 0 0 4px white;
  4015. .avatar {
  4016. @extend .u-clickable;
  4017. &.is-active {
  4018. box-shadow: 0 0 0 4px hsl(200,71%,59%);
  4019. }
  4020. }
  4021. }
  4022. .avatar--new {
  4023. background: hsl(145,51%,45%);
  4024. @extend .u-clickable;
  4025. }
  4026. .avatar-holder .avatar-delete {
  4027. position: absolute;
  4028. right: -15px;
  4029. top: -15px;
  4030. width: 40px;
  4031. height: 40px;
  4032. pointer-events: none;
  4033. visibility: hidden;
  4034. background: white;
  4035. display: flex;
  4036. align-items: center;
  4037. justify-content: center;
  4038. border-radius: 100%;
  4039. box-shadow: 0 1px 5px rgba(0,0,0,.05);
  4040. @extend .u-clickable;
  4041. svg {
  4042. opacity: 0.5;
  4043. fill: hsl(234,10%,19%);
  4044. }
  4045. &:hover svg {
  4046. opacity: 1;
  4047. }
  4048. }
  4049. .avatar-holder:hover .avatar-delete {
  4050. visibility: visible;
  4051. pointer-events: auto;
  4052. }
  4053. .camera video {
  4054. position: absolute;
  4055. visibility: hidden;
  4056. pointer-events: none;
  4057. }
  4058. .camera-preview {
  4059. display: block;
  4060. margin: 0 auto;
  4061. }
  4062. .camera-flash {
  4063. @extend .fit;
  4064. background: white;
  4065. opacity: 0;
  4066. @extend .u-unclickable;
  4067. }
  4068. .camera-flash.is-active {
  4069. animation: flash 500ms ease;
  4070. }
  4071. @keyframes flash { 0% { opacity: 0 } 50% { opacity: 1 } 100% { opacity: 0 } }
  4072. .fileUpload {
  4073. position: relative;
  4074. overflow: hidden;
  4075. }
  4076. .fileUpload input {
  4077. position: absolute;
  4078. right: 0;
  4079. top: 0;
  4080. font-size: 118px;
  4081. margin: 0;
  4082. padding: 0;
  4083. cursor: pointer;
  4084. opacity: 0;
  4085. }
  4086. .imageCropper p {
  4087. margin: 0;
  4088. }
  4089. .imageCropper-holder {
  4090. height: 340px;
  4091. margin: 15px 0;
  4092. }
  4093. .imageCropper-image {
  4094. max-width: 100%;
  4095. max-height: 100%;
  4096. opacity: 0;
  4097. }
  4098. .imageCropper-preview {
  4099. width: 40px;
  4100. height: 40px;
  4101. border-radius: 100%;
  4102. overflow: hidden;
  4103. margin: 0 10px;
  4104. background: hsl(210,17%,98%);
  4105. }
  4106. .cropper-container {
  4107. /* prevent cropper.js's centering – we center via flex */
  4108. left: 0 !important;
  4109. }
  4110. .profile {
  4111. padding: 60px;
  4112. overflow: auto;
  4113. flex: 1;
  4114. h1 {
  4115. margin: 18px 0 0;
  4116. }
  4117. .tabs {
  4118. margin-top: 2px;
  4119. margin-bottom: 25px;
  4120. }
  4121. }
  4122. .profile-window {
  4123. color: hsl(60,1%,34%);
  4124. background: white;
  4125. max-width: 660px;
  4126. margin: 0 auto;
  4127. border: 1px solid #e6e6e6;
  4128. }
  4129. .profile-section {
  4130. padding: 20px 50px;
  4131. &.profile-memberSection {
  4132. margin-bottom: 10px;
  4133. }
  4134. }
  4135. .profile-section:not(:last-child) {
  4136. border-bottom: 1px solid #f2f2f2;
  4137. }
  4138. .profile-action {
  4139. margin-right: -20px;
  4140. .dropdown-toggle {
  4141. margin-top: -20px;
  4142. margin-right: -30px;
  4143. margin-bottom: 8px;
  4144. padding: 26px 40px 2px;
  4145. }
  4146. label {
  4147. margin: 0 8px;
  4148. padding: 0;
  4149. cursor: inherit;
  4150. }
  4151. }
  4152. .profile-subtitle {
  4153. font-size: 16px;
  4154. @extend .u-highlight;
  4155. }
  4156. .profile-details {
  4157. margin-left: -50px;
  4158. word-wrap: break-word;
  4159. }
  4160. .profile-ticketsPlaceholder {
  4161. flex: 1;
  4162. margin: 8px 0 22px;
  4163. color: hsl(209,28%,74%);
  4164. .stat-icon {
  4165. margin-bottom: 10px;
  4166. }
  4167. }
  4168. .profile-detailsEntry {
  4169. margin: 8px 0;
  4170. padding-left: 50px;
  4171. width: 50%;
  4172. }
  4173. .profile-detailsEntry label {
  4174. padding: 0;
  4175. margin-bottom: 2px;
  4176. display: block;
  4177. }
  4178. .profile-organizationMember {
  4179. @extend .profile-detailsEntry;
  4180. display: flex;
  4181. align-items: center;
  4182. .avatar {
  4183. margin-right: 10px;
  4184. }
  4185. }
  4186. .profile-ticketLists {
  4187. display: flex;
  4188. margin: 0 -25px;
  4189. }
  4190. .profile-ticketList {
  4191. display: flex;
  4192. flex-direction: column;
  4193. flex: 1 1 50%;
  4194. padding: 0 25px;
  4195. .tasks {
  4196. margin-bottom: 10px;
  4197. display: flex;
  4198. flex-direction: column;
  4199. }
  4200. }
  4201. .profile .frequency.stat-widget {
  4202. height: 230px;
  4203. .stat-bars {
  4204. height: 100px;
  4205. }
  4206. }
  4207. .profile-organizationIcon {
  4208. display: flex;
  4209. align-items: center;
  4210. justify-content: center;
  4211. width: 80px;
  4212. height: 80px;
  4213. background: hsl(0,0%,87%);
  4214. border-radius: 100%;
  4215. opacity: 0.4;
  4216. svg {
  4217. width: 32px;
  4218. height: 32px;
  4219. }
  4220. }
  4221. .highlighter {
  4222. display: flex;
  4223. }
  4224. [data-highlightcolor=Yellow]::selection { background: #f7e7b2; }
  4225. .highlight-Yellow { background: #f7e7b2; }
  4226. [data-highlightcolor=Green]::selection { background: #bce7b6; }
  4227. .highlight-Green { background: #bce7b6; }
  4228. [data-highlightcolor=Blue]::selection { background: #b3ddf9; }
  4229. .highlight-Blue { background: #b3ddf9; }
  4230. [data-highlightcolor=Pink]::selection { background: #fea9c5; }
  4231. .highlight-Pink { background: #fea9c5; }
  4232. [data-highlightcolor=Purple]::selection { background: #eac5ee; }
  4233. .highlight-Purple { background: #eac5ee; }
  4234. .translationOverview {
  4235. tbody > tr > td {
  4236. padding: 20px 0 0 10px;
  4237. }
  4238. .translationOverview-itemContainer {
  4239. padding: 10px 0 10px 10px;
  4240. }
  4241. .translationOverview-source {
  4242. width: 25%;
  4243. }
  4244. .translationOverview-target {
  4245. width: 35%;
  4246. }
  4247. .translationOverview-initial {
  4248. width: 25%;
  4249. }
  4250. .translationOverview-item {
  4251. width: 100%;
  4252. }
  4253. }
  4254. .overview-navigator {
  4255. @extend .horizontal;
  4256. }
  4257. .overview-navigator .pagination {
  4258. margin: 0 0 0 10px;
  4259. }
  4260. .empty-space {
  4261. padding: 50px;
  4262. svg {
  4263. width: 200px;
  4264. height: auto;
  4265. }
  4266. .empty-space-tagline {
  4267. color: hsl(198, 19%, 72%);
  4268. margin-top: 15px;
  4269. font-size: 18px;
  4270. }
  4271. }
  4272. /*
  4273. ----------------
  4274. normal screens
  4275. ----------------
  4276. */
  4277. @media only screen and (max-width: 1280px) {
  4278. .sidebar.optional {
  4279. display: none;
  4280. }
  4281. }
  4282. /*
  4283. ----------------
  4284. layout classes
  4285. ----------------
  4286. */
  4287. .horizontal,
  4288. .vertical,
  4289. .centered {
  4290. display: flex;
  4291. }
  4292. .horizontal.hide,
  4293. .vertical.hide,
  4294. .centered.hide {
  4295. display: none;
  4296. }
  4297. .horizontal {
  4298. flex-direction: row;
  4299. }
  4300. .horizontal.reverse {
  4301. flex-direction: row-reverse;
  4302. }
  4303. .vertical {
  4304. flex-direction: column;
  4305. }
  4306. .vertical.reverse {
  4307. flex-direction: column-reverse;
  4308. }
  4309. .vertical.stretch > *,
  4310. .horizontal.stretch > * {
  4311. flex: 1;
  4312. }
  4313. .relative {
  4314. position: relative;
  4315. }
  4316. .fit {
  4317. position: absolute;
  4318. top: 0;
  4319. left: 0;
  4320. bottom: 0;
  4321. right: 0;
  4322. }
  4323. body.fit {
  4324. margin: 0;
  4325. }
  4326. .scrollable {
  4327. overflow: auto;
  4328. }
  4329. .flex {
  4330. flex: 1;
  4331. }
  4332. .flex-full {
  4333. flex: 1 1 100%;
  4334. }
  4335. .flex-auto {
  4336. flex: 1 1 auto;
  4337. }
  4338. .flex-shrink {
  4339. flex: 0 1 auto;
  4340. }
  4341. .flex-none {
  4342. flex: none;
  4343. }
  4344. .flex-1 {
  4345. flex: 1;
  4346. }
  4347. .flex-2 {
  4348. flex: 2;
  4349. }
  4350. .flex-3 {
  4351. flex: 3;
  4352. }
  4353. .justify-start {
  4354. justify-content: flex-start;
  4355. }
  4356. .justified {
  4357. justify-content: center;
  4358. }
  4359. .justify-end {
  4360. justify-content: flex-end;
  4361. }
  4362. .justify-between {
  4363. justify-content: space-between;
  4364. }
  4365. .start {
  4366. align-items: flex-start;
  4367. }
  4368. .center {
  4369. align-items: center;
  4370. }
  4371. .centered {
  4372. align-items: center;
  4373. justify-content: center;
  4374. }
  4375. .end {
  4376. align-items: flex-end;
  4377. }
  4378. .self-start {
  4379. align-self: start;
  4380. }
  4381. .self-end {
  4382. align-self: end;
  4383. }
  4384. .two-columns,
  4385. .three-columns,
  4386. .wrap {
  4387. flex-wrap: wrap;
  4388. }
  4389. .two-columns > .column {
  4390. width: 50%;
  4391. }
  4392. .three-columns > .column {
  4393. width: 33.33%;
  4394. }
  4395. .align-left {
  4396. margin-right: auto;
  4397. }
  4398. .align-right {
  4399. margin-left: auto;
  4400. }
  4401. .align-center {
  4402. margin-left: auto;
  4403. margin-right: auto;
  4404. }