zammad.css.scss 87 KB

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