zammad.css.scss 84 KB

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