zammad.css.scss 82 KB

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