zammad.css.scss 84 KB

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