zzz.css.erb 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282
  1. body {
  2. font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. line-height: 1.45;
  4. font-weight: normal;
  5. background: #2c2d36;
  6. }
  7. ol,
  8. ul {
  9. }
  10. a.create {
  11. color: hsl(145,51%,45%);
  12. text-decoration: underline;
  13. }
  14. small {
  15. color: #c6c6c5;
  16. font-size: 12px;
  17. }
  18. .u-highlight {
  19. color: hsl(194,90%,45%);
  20. }
  21. .u-unclickable {
  22. pointer-events: none;
  23. }
  24. .u-clickable {
  25. pointer-events: auto;
  26. cursor: pointer;
  27. -webkit-user-select: none;
  28. user-select: none;
  29. }
  30. .u-textTruncate {
  31. white-space: nowrap;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. }
  35. .u-positionOrigin {
  36. position: relative;
  37. }
  38. .zIndex-1,
  39. .zIndex-2,
  40. .zIndex-3,
  41. .zIndex-4,
  42. .zIndex-5,
  43. .zIndex-6,
  44. .zIndex-7,
  45. .zIndex-8,
  46. .zIndex-9,
  47. .zIndex-10 {
  48. position: relative;
  49. }
  50. .zIndex-1 {
  51. z-index: 100;
  52. }
  53. .zIndex-2 {
  54. z-index: 200;
  55. }
  56. .zIndex-3 {
  57. z-index: 300;
  58. }
  59. .zIndex-4 {
  60. z-index: 400;
  61. }
  62. .zIndex-5 {
  63. z-index: 500;
  64. }
  65. .zIndex-6 {
  66. z-index: 600;
  67. }
  68. .zIndex-7 {
  69. z-index: 700;
  70. }
  71. .zIndex-8 {
  72. z-index: 800;
  73. }
  74. .zIndex-9 {
  75. z-index: 900;
  76. }
  77. .zIndex-10 {
  78. z-index: 1000;
  79. }
  80. .clickCatcher {
  81. bottom: 0;
  82. left: 0;
  83. width: 100%;
  84. height: 100%;
  85. position: absolute;
  86. cursor: default;
  87. }
  88. .debug .clickCatcher {
  89. background: hsla(0,100%,50%,.13);
  90. }
  91. .debug .clickCatcher + .clickCatcher {
  92. background: hsla(50,100%,50%,.13);
  93. }
  94. .close,
  95. .close:hover {
  96. float: none;
  97. opacity: 1;
  98. }
  99. #app > nav {
  100. position: relative;
  101. z-index: 1;
  102. }
  103. /* tooltip */
  104. a[data-tooltip],
  105. time[data-tooltip],
  106. span[data-tooltip] {
  107. position: relative;
  108. }
  109. a[data-tooltip]:before,
  110. time[data-tooltip]:before,
  111. span[data-tooltip]:before,
  112. a[data-tooltip]:after,
  113. time[data-tooltip]:after,
  114. span[data-tooltip]:after {
  115. content: "";
  116. position: absolute;
  117. pointer-events: none;
  118. transform: scale(0);
  119. opacity: 0;
  120. transition: transform 300ms cubic-bezier(0.34,1.6,0.71,1), opacity 300ms;
  121. }
  122. a[data-tooltip]:before,
  123. time[data-tooltip]:before,
  124. span[data-tooltip]:before {
  125. left: 0;
  126. top: -34px;
  127. background-color: #c6c6c5;
  128. color: #ffffff;
  129. height: 26px;
  130. line-height: 27px;
  131. border-radius: 5px;
  132. padding: 0 13px;
  133. content: attr(data-tooltip);
  134. white-space: nowrap;
  135. transform-origin: 17px 26px;
  136. }
  137. a[data-tooltip]:after,
  138. time[data-tooltip]:after,
  139. span[data-tooltip]:after {
  140. left: 13px;
  141. top: -8px;
  142. border-top: 7px solid #c6c6c5;
  143. border-left: 7px solid transparent;
  144. border-right: 7px solid transparent;
  145. transform-origin: 4px 0;
  146. }
  147. a[data-tooltip]:hover:after,
  148. a[data-tooltip]:hover:before,
  149. time[data-tooltip]:hover:after,
  150. time[data-tooltip]:hover:before,
  151. span[data-tooltip]:hover:after,
  152. span[data-tooltip]:hover:before {
  153. pointer-events: auto;
  154. transform: scale(1);
  155. opacity: 1;
  156. transition: transform 300ms 1.5s cubic-bezier(0.34,1.6,0.71,1), opacity 300ms 1.5s;
  157. }
  158. .form-control::-webkit-input-placeholder,
  159. .token-input::-webkit-input-placeholder { color: hsl(0,0%,80%); }
  160. .form-control::-moz-placeholder,
  161. .token-input::-moz-placeholder { opacity: 1; color: hsl(0,0%,80%); }
  162. .form-control:-ms-input-placeholder,
  163. .token-input:-ms-input-placeholder { color: hsl(0,0%,80%); }
  164. .glyphicon {
  165. font-size: 13px;
  166. }
  167. .spinner {
  168. float: left;
  169. background: url("/assets/images/spinner.gif") no-repeat;
  170. background-position: center center;
  171. padding: 44px 10px 0 10px;
  172. width: 10px;
  173. height: 14px;
  174. display: none;
  175. }
  176. table {
  177. table-layout: fixed;
  178. }
  179. .table {
  180. display: table;
  181. color: hsl(198,19%,72%);
  182. }
  183. .table .table-row {
  184. display: table-row;
  185. }
  186. .table th,
  187. .table td {
  188. overflow: hidden;
  189. text-overflow: ellipsis;
  190. white-space: nowrap;
  191. }
  192. .table > thead:first-child > tr:first-child > th,
  193. .table > thead > tr > th {
  194. padding: 12px 9px 10px;
  195. border-bottom: none;
  196. border-top: 1px solid #ececec;
  197. background: #f0f1f2;
  198. color: #444a4f;
  199. font-weight: normal;
  200. font-size: 12px;
  201. text-transform: uppercase;
  202. }
  203. .table > tbody > tr > td {
  204. padding: 10px 9px 9px;
  205. border: none;
  206. box-shadow: 0 1px rgba(0,0,0,.02) inset;
  207. }
  208. .table > tbody > tr:first-child > td {
  209. box-shadow: none;
  210. }
  211. .table-hover > tbody > tr:hover > td,
  212. .table-hover > tbody > tr:hover > th {
  213. background: rgba(0,8,14,.015);
  214. }
  215. .table > thead:first-child > tr:first-child > th.no-padding,
  216. .table > thead > tr > th.no-padding,
  217. .table > tbody > tr > td.no-padding {
  218. padding: 0;
  219. }
  220. .checkbox-replacement {
  221. padding: 0;
  222. margin: 0;
  223. height: 38px;
  224. cursor: pointer;
  225. -webkit-user-select: none;
  226. user-select: none;
  227. }
  228. .checkbox-replacement input[type=checkbox] {
  229. display: none;
  230. }
  231. .table .priority.icon:after {
  232. background: #f8f9fa;
  233. }
  234. .table .table-cell {
  235. vertical-align: top;
  236. display: table-cell;
  237. border-bottom: 1px solid #eeeeee;
  238. }
  239. .hero-two {
  240. width: 100%;
  241. }
  242. .hero-two .hero-left {
  243. width: 50%;
  244. float: left;
  245. }
  246. .hero-two .hero-right {
  247. width: 50%;
  248. float: right;
  249. }
  250. .panel-title {
  251. font-size: 14px;
  252. }
  253. #task {
  254. position: fixed;
  255. display: table;
  256. width: 100%;
  257. min-width: 1000px;
  258. top: 46px;
  259. display: none;
  260. }
  261. #task > .taskbar {
  262. display: table-row;
  263. z-index: 1040;
  264. }
  265. #task > .taskbar > div {
  266. padding: 0 4px 4px 4px;
  267. display: table-cell;
  268. }
  269. #task .task {
  270. max-width: 120px;
  271. overflow: hidden;
  272. text-overflow: ellipsis;
  273. white-space: nowrap;
  274. display: inline-block;
  275. }
  276. #task .task > a,
  277. #task .task > a:hover {
  278. color: #ffffff;
  279. text-decoration: none;
  280. }
  281. #task .btn-default .task > a,
  282. #task .btn-default .task > a:hover {
  283. color: #333333;
  284. }
  285. #task .taskbar .btn-small {
  286. padding: 3px 8px 4px;
  287. margin-top: 2px;
  288. font-size: 11px;
  289. font-weight: 300;
  290. }
  291. #task .taskbar .btn-default {
  292. background-color: #c3c3c3;
  293. border-color: #c3c3c3;
  294. }
  295. #task [data-type="close"] {
  296. margin-left: 5px;
  297. font-size: 13px;
  298. top: 1px;
  299. }
  300. #task .taskbar-items {
  301. }
  302. #task .taskbar-new {
  303. text-align: right;
  304. padding-right: 12px;
  305. }
  306. .max-size-scroll {
  307. max-height: 240px;
  308. overflow-y: scroll;
  309. }
  310. .inactive {
  311. color: #ddd !important;
  312. }
  313. /*
  314. #content > *:not(.active) {
  315. display: none !important;
  316. }
  317. */
  318. h1, h2, h3, h4, h5, h6 {
  319. font-weight: normal;
  320. }
  321. h1 {
  322. font-size: 23px;
  323. line-height: 29px;
  324. color: rgba(0,8,14,.73);
  325. }
  326. h2,
  327. h2.popover-title {
  328. font-size: 19px;
  329. line-height: 25px;
  330. color: rgba(0,8,14,.73);
  331. }
  332. h3 {
  333. font-size: 13px;
  334. margin: 14px 0 6px;
  335. color: #a9bcc4;
  336. font-weight: 200;
  337. text-transform: uppercase;
  338. letter-spacing: 0.07em;
  339. }
  340. h4 {
  341. font-size: 20px;
  342. }
  343. h5 {
  344. font-size: 16px;
  345. }
  346. label {
  347. text-transform: uppercase;
  348. color: #999;
  349. font-size: 12px;
  350. font-weight: normal;
  351. letter-spacing: 0.1em;
  352. padding: 0 2px;
  353. margin-bottom: 6px;
  354. }
  355. .form-group + .form-group {
  356. margin-top: 0;
  357. }
  358. .form-group .help-message {
  359. float: right;
  360. margin-right: -23px;
  361. margin-top: -23px;
  362. }
  363. .form-control {
  364. height: 41px;
  365. line-height: 22px;
  366. font-weight: normal;
  367. box-shadow: none;
  368. border-radius: 3px;
  369. transition: none;
  370. }
  371. .form-control:focus,
  372. .tokenfield.focus {
  373. box-shadow: none;
  374. border-color: hsl(0,0%,90%);
  375. }
  376. .has-error .form-control,
  377. .has-error .form-control:focus {
  378. box-shadow: none;
  379. border-color: red !important;
  380. }
  381. .help-inline {
  382. color: red;
  383. font-size: 13px;
  384. }
  385. .content {
  386. overflow: auto;
  387. position: relative;
  388. background-color: #f8f9fa;
  389. }
  390. .content.fit {
  391. padding: 10px;
  392. background: #2c2d36;
  393. z-index: 1;
  394. }
  395. .form-stacked .checkbox label {
  396. color: inherit;
  397. font-size: 13px;
  398. text-transform: inherit;
  399. vertical-align: baseline;
  400. letter-spacing: inherit;
  401. display: block;
  402. }
  403. .pagination {
  404. margin: 0;
  405. }
  406. .pagination > li > a,
  407. .pagination > li > span {
  408. padding: 0;
  409. width: 31px;
  410. height: 28px;
  411. border-color: #ececec;
  412. }
  413. .pagination-counter {
  414. margin-right: 19px;
  415. line-height: 28px;
  416. color: #9c9c9b;
  417. }
  418. .pagination-items-range {
  419. color: #706f6f;
  420. }
  421. .page-header-title {
  422. margin-bottom: 15px;
  423. }
  424. .page-header-title h1 {
  425. margin-top: 13px;
  426. }
  427. .page-header-meta {
  428. margin-top: 10px;
  429. margin-left: auto;
  430. }
  431. .page-header-meta.horizontal .pagination {
  432. margin-left: auto;
  433. }
  434. .dropdown-menu .count {
  435. padding-top: 1px;
  436. margin-left: 10px;
  437. }
  438. .help-block {
  439. color: #bcbcbc;
  440. }
  441. /* replace music icon with attachment */
  442. .icon-attachment {
  443. background-position: -24px 0;
  444. }
  445. /*
  446. * hero-unit (used on getstarted, login, signup)
  447. */
  448. .hero-unit {
  449. width: 500px;
  450. margin: 10px 0;
  451. padding: 23px 25px;
  452. border: 1px solid #e5f0f5;
  453. color: inherit;
  454. background-color: white;
  455. border-radius: 6px;
  456. box-shadow:
  457. 0 8px 17px 0 rgba(0, 0, 0, 0.2),
  458. 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  459. }
  460. .hero-unit h1,
  461. .hero-unit h2 {
  462. margin-top: 0;
  463. }
  464. .login, .getstarted, .reset_password, .signup {
  465. padding: 10px;
  466. height: auto;
  467. background: hsl(234,10%,19%);
  468. }
  469. .login .hero-unit {
  470. width: 430px;
  471. }
  472. .login .logo {
  473. margin: 30px auto;
  474. display: block;
  475. }
  476. .login p {
  477. margin: 10px 0;
  478. max-width: 400px;
  479. color: hsl(210,8%,42%);
  480. text-align: center;
  481. }
  482. .login hr {
  483. margin: 10px 0;
  484. border-top-color: rgba(255,255,255,.15);
  485. width: 100%;
  486. max-width: 400px;
  487. }
  488. .login p a {
  489. color: hsl(210,8%,54%);
  490. text-decoration: underline;
  491. }
  492. .subtle-link {
  493. color: rgba(0,0,0,.32);
  494. text-decoration: underline;
  495. }
  496. .subtle-link:hover {
  497. color: rgba(0,0,0,.5);
  498. }
  499. ol.tabs {
  500. list-style: decimal inside;
  501. }
  502. ol.tabs li {
  503. display: list-item;
  504. }
  505. .tabs {
  506. padding: 0;
  507. margin-bottom: 20px;
  508. color: #b8b8b8;
  509. border: 1px solid rgba(0,8,14,.08);
  510. border-radius: 3px;
  511. }
  512. .tabs-condensed .tab {
  513. padding-left: 5px;
  514. padding-right: 5px;
  515. }
  516. .progress-tabs .tab {
  517. cursor: default;
  518. }
  519. .tab {
  520. height: 39px;
  521. padding: 9px;
  522. text-align: center;
  523. border-right: 1px solid rgba(0,8,14,.08);
  524. cursor: pointer;
  525. flex-grow: 1;
  526. }
  527. .tab.active {
  528. color: white;
  529. background: #444a4f;
  530. box-shadow: none;
  531. }
  532. .tab:first-child {
  533. border-radius: 3px 0 0 3px;
  534. }
  535. .tab:last-child {
  536. border-radius: 0 3px 3px 0;
  537. border-right: none;
  538. }
  539. .wide-tabs {
  540. width: 60%;
  541. margin: 25px auto 20px;
  542. font-size: 15px;
  543. font-weight: 300;
  544. background: white;
  545. border-radius: 8px;
  546. }
  547. .wide-tabs .tab:first-child {
  548. border-radius: 8px 0 0 8px;
  549. }
  550. .wide-tabs .tab:last-child {
  551. border-radius: 0 8px 8px 0;
  552. }
  553. .separator {
  554. margin: 20px 0;
  555. position: relative;
  556. text-align: center;
  557. }
  558. .separator:before {
  559. content: "";
  560. position: absolute;
  561. width: 100%;
  562. height: 1px;
  563. top: 50%;
  564. left: 0;
  565. margin-top: -1px;
  566. background: #e6e6e6;
  567. }
  568. .separator-text {
  569. padding: 0 10px;
  570. color: #999;
  571. font-size: 12px;
  572. letter-spacing: 0.1em;
  573. text-transform: uppercase;
  574. background: white;
  575. display: inline-block;
  576. position: relative;
  577. }
  578. .auth_provider {
  579. padding: 9px 7px 8px;
  580. color: white;
  581. line-height: 22px;
  582. text-align: center;
  583. border-radius: 2px;
  584. }
  585. .auth_provider:not(:last-child) {
  586. margin-right: 8px;
  587. }
  588. .auth_provider:hover {
  589. color: white;
  590. cursor: pointer;
  591. text-decoration: none;
  592. }
  593. .auth_provider.facebook {
  594. background-color: #4f699c;
  595. }
  596. .auth_provider.google {
  597. background-color: #d8543c;
  598. }
  599. .auth_provider.twitter {
  600. background-color: #2eaee1;
  601. }
  602. .provider_icon {
  603. width: 29px;
  604. height: 22px;
  605. }
  606. .facebook .provider_icon {
  607. background-image: url(<%= asset_path "facebook.svg" %>);
  608. }
  609. .google .provider_icon {
  610. background-image: url(<%= asset_path "google.svg" %>);
  611. }
  612. .twitter .provider_icon {
  613. background-image: url(<%= asset_path "twitter.svg" %>);
  614. }
  615. .icon {
  616. display: inline-block;
  617. width: 20px;
  618. height: 20px;
  619. background-image: url(<%= asset_path "sprite.svg" %>);
  620. background-repeat: no-repeat;
  621. background-position: 20px 20px; /* make icon empty */
  622. }
  623. .dashboard.icon,
  624. .overviews.icon,
  625. .customers.icon,
  626. .group.icon,
  627. .message.icon,
  628. .tools.icon,
  629. .person.icon {
  630. width: 24px;
  631. height: 25px;
  632. }
  633. .dashboard.icon {
  634. background-position: 0 0;
  635. }
  636. .overviews.icon {
  637. background-position: -24px 0;
  638. }
  639. .group.icon,
  640. .customers.icon {
  641. background-position: -48px 0;
  642. }
  643. .message.icon {
  644. background-position: -72px 0;
  645. }
  646. .tools.icon {
  647. background-position: -96px 0;
  648. }
  649. .person.icon {
  650. background-position: -120px 0;
  651. }
  652. .light.cog.icon {
  653. background-position: 0 -56px;
  654. }
  655. .dark.cog.icon {
  656. background-position: 0 -76px;
  657. }
  658. .green.plus.icon {
  659. background-position: -20px -56px;
  660. }
  661. .white.plus.icon {
  662. background-position: -20px -76px;
  663. }
  664. .signout.icon {
  665. width: 15px;
  666. height: 19px;
  667. background-position: 0 -96px;
  668. }
  669. .switchView.icon {
  670. width: 19px;
  671. height: 18px;
  672. background-position: -15px -96px;
  673. }
  674. .priority.icon {
  675. background: none;
  676. border-radius: 100%;
  677. width: 10px;
  678. height: 10px;
  679. position: relative;
  680. }
  681. .modified.priority.icon {
  682. width: 12px;
  683. height: 12px;
  684. background: none !important;
  685. border: 1px solid;
  686. }
  687. .priority.icon:after {
  688. content: "";
  689. position: absolute;
  690. left: 50%;
  691. top: 50%;
  692. margin: -3px 0 0 -3px;
  693. width: 6px;
  694. height: 6px;
  695. border-radius: 100%;
  696. background: #2c2d36;
  697. }
  698. .modified.priority.icon:after {
  699. -webkit-animation: fade 1s ease 2s infinite alternate;
  700. -moz-animation: fade 1s ease 2s infinite alternate;
  701. -ms-animation: fade 1s ease 2s infinite alternate;
  702. animation: fade 1s ease 2s infinite alternate;
  703. }
  704. @-webkit-keyframes fade { from { opacity: 0 } to { opacity: 1 } }
  705. @-moz-keyframes fade { from { opacity: 0 } to { opacity: 1 } }
  706. @-ms-keyframes fade { from { opacity: 0 } to { opacity: 1 } }
  707. @keyframes fade { from { opacity: 0 } to { opacity: 1 } }
  708. .organisation.icon {
  709. height: 13px;
  710. width: 14px;
  711. background-position: 0 -115px;
  712. }
  713. .icon-switch:hover .organisation.icon,
  714. .task.active .organisation.icon,
  715. .white.organisation.icon {
  716. background-position: 0 -128px;
  717. }
  718. .user.icon {
  719. height: 13px;
  720. width: 14px;
  721. background-position: -14px -115px;
  722. }
  723. .icon-switch:hover .user.icon,
  724. .task.active .user.icon,
  725. .white.user.icon {
  726. background-position: -14px -128px;
  727. }
  728. .note.icon {
  729. height: 13px;
  730. width: 14px;
  731. background-position: -28px -115px;
  732. }
  733. .icon-switch:hover .note.icon,
  734. .task.active .note.icon,
  735. .white.note.icon {
  736. background-position: -28px -128px;
  737. }
  738. .pen.icon {
  739. height: 13px;
  740. width: 14px;
  741. background-position: -42px -115px;
  742. }
  743. .icon-switch:hover .pen.icon,
  744. .task.active .pen.icon,
  745. .white.pen.icon {
  746. background-position: -42px -128px;
  747. }
  748. .important.icon {
  749. height: 13px;
  750. width: 14px;
  751. background-position: -56px -115px;
  752. }
  753. .icon-switch:hover .important.icon,
  754. .task.active .important.icon,
  755. .white.important.icon {
  756. background-position: -56px -128px;
  757. }
  758. .tools.icon {
  759. height: 13px;
  760. width: 14px;
  761. background-position: -70px -115px;
  762. }
  763. .icon-switch:hover .tools.icon,
  764. .task.active .tools.icon,
  765. .white.tools.icon {
  766. background-position: -70px -128px;
  767. }
  768. .clock.icon {
  769. height: 13px;
  770. width: 14px;
  771. background-position: -84px -115px;
  772. }
  773. .icon-switch:hover .clock.icon,
  774. .task.active .clock.icon,
  775. .white.clock.icon {
  776. background-position: -84px -128px;
  777. }
  778. .team.icon {
  779. height: 13px;
  780. width: 20px;
  781. background-position: -98px -115px;
  782. }
  783. .white.team.icon {
  784. background-position: -98px -128px;
  785. }
  786. .channel.icon {
  787. width: 17px;
  788. height: 16px;
  789. }
  790. .email.channel.icon {
  791. background-position: 0 -141px;
  792. }
  793. .received-calls.channel.icon {
  794. background-position: -17px -141px;
  795. }
  796. .outbound-calls.channel.icon {
  797. background-position: -34px -141px;
  798. }
  799. .facebook.channel.icon {
  800. background-position: -51px -141px;
  801. }
  802. .twitter.channel.icon {
  803. background-position: -68px -141px;
  804. }
  805. .gray.email.channel.icon {
  806. background-position: -85px -141px;
  807. }
  808. .gray.received-calls.channel.icon {
  809. background-position: -102px -141px;
  810. }
  811. .gray.outbound-calls.channel.icon {
  812. background-position: -119px -141px;
  813. }
  814. .gray.facebook.channel.icon {
  815. background-position: -136px -141px;
  816. }
  817. .gray.twitter.channel.icon {
  818. background-position: -153px -141px;
  819. }
  820. .white.email.channel.icon {
  821. background-position: -170px -141px;
  822. }
  823. .white.received-calls.channel.icon {
  824. background-position: -187px -141px;
  825. }
  826. .white.outbound-calls.channel.icon {
  827. background-position: -204px -141px;
  828. }
  829. .white.facebook.channel.icon {
  830. background-position: -221px -141px;
  831. }
  832. .white.twitter.channel.icon {
  833. background-position: -238px -141px;
  834. }
  835. .white.note.channel.icon {
  836. background-position: -255px -141px;
  837. }
  838. .white.phone.channel.icon {
  839. background-position: -272px -141px;
  840. }
  841. .gray.phone.channel.icon {
  842. background-position: -289px -141px;
  843. }
  844. .mood.icon {
  845. width: 60px;
  846. height: 59px;
  847. }
  848. .mood.icon.superbad-state {
  849. background-position: 0 -157px;
  850. }
  851. .mood.icon.bad-state {
  852. background-position: -60px -157px;
  853. }
  854. .mood.icon.ok-state {
  855. background-position: -120px -157px;
  856. }
  857. .mood.icon.good-state {
  858. background-position: -180px -157px;
  859. }
  860. .mood.icon.supergood-state {
  861. background-position: -240px -157px;
  862. }
  863. .stopwatch.icon {
  864. width: 77px;
  865. height: 83px;
  866. background-position: 0 -216px;
  867. }
  868. .in-process.icon {
  869. width: 64px;
  870. height: 64px;
  871. background-position: -77px -216px;
  872. }
  873. .in-process.superbad-state,
  874. .reopening.superbad-state {
  875. background-color: #f35910;
  876. }
  877. .in-process.bad-state,
  878. .reopening.bad-state {
  879. background-color: #f6820b;
  880. }
  881. .in-process.ok-state,
  882. .reopening.ok-state {
  883. background-color: #faab00;
  884. }
  885. .in-process.good-state,
  886. .reopening.good-state {
  887. background-color: #a9ac41;
  888. }
  889. .in-process.supergood-state,
  890. .reopening.supergood-state {
  891. background-color: #38ae6a;
  892. }
  893. .reopening.icon {
  894. width: 68px;
  895. height: 47px;
  896. background-position: -141px -216px;
  897. }
  898. .stat-all-tickets.icon {
  899. width: 48px;
  900. height: 83px;
  901. background-position: -209px -216px;
  902. }
  903. .stat-tickets {
  904. height: 83px;
  905. margin-right: 4px;
  906. margin-bottom: -9px;
  907. }
  908. .stat-ticket.icon {
  909. width: 48px;
  910. height: 10px;
  911. margin-top: -7px;
  912. margin-bottom: 2px;
  913. }
  914. .stat-ticket.superbad-state {
  915. background-position: -257px -256px;
  916. }
  917. .stat-ticket.bad-state {
  918. background-position: -257px -246px;
  919. }
  920. .stat-ticket.ok-state {
  921. background-position: -257px -236px;
  922. }
  923. .stat-ticket.good-state {
  924. background-position: -257px -226px;
  925. }
  926. .stat-ticket.supergood-state {
  927. background-position: -257px -216px;
  928. }
  929. .left.arrow.icon,
  930. .right.arrow.icon {
  931. width: 8px;
  932. height: 12px;
  933. opacity: .39;
  934. }
  935. .disabled.left.arrow.icon,
  936. .disabled.right.arrow.icon {
  937. opacity: .23;
  938. }
  939. .left.arrow.icon {
  940. background-position: 0 -299px;
  941. }
  942. .right.arrow.icon {
  943. background-position: -8px -299px;
  944. }
  945. .white.left.arrow.icon {
  946. background-position: -16px -299px;
  947. }
  948. .white.right.arrow.icon {
  949. background-position: -24px -299px;
  950. }
  951. .checkbox.icon {
  952. min-height: 0; /* overwriting bootstrap */
  953. margin: 0; /* overwriting bootstrap */
  954. width: 10px;
  955. height: 10px;
  956. background-position: -32px -299px;
  957. }
  958. .white.checkbox.icon {
  959. background-color: white;
  960. }
  961. :checked + .checkbox.icon {
  962. background-position: -42px -299px;
  963. }
  964. .arrow-right.icon {
  965. width: 12px;
  966. height: 11px;
  967. background-position: -52px -299px;
  968. }
  969. .delete.icon {
  970. width: 9px;
  971. height: 9px;
  972. background-position: -64px -300px;
  973. }
  974. .dark.group.icon {
  975. width: 23px;
  976. height: 24px;
  977. background-position: 0 -311px;
  978. }
  979. .dark.message.icon {
  980. width: 19px;
  981. height: 19px;
  982. background-position: -23px -311px;
  983. }
  984. .dark.person.icon {
  985. width: 11px;
  986. height: 24px;
  987. background-position: -42px -311px;
  988. }
  989. .split.action.icon {
  990. width: 18px;
  991. height: 15px;
  992. background-position: 0 -336px;
  993. }
  994. .reply.action.icon {
  995. width: 14px;
  996. height: 15px;
  997. background-position: -18px -336px;
  998. }
  999. .internal.action.icon,
  1000. .public.visibility.icon {
  1001. width: 11px;
  1002. height: 15px;
  1003. background-position: -32px -336px;
  1004. }
  1005. .public.action.icon,
  1006. .internal.visibility.icon {
  1007. width: 11px;
  1008. height: 15px;
  1009. background-position: -43px -336px;
  1010. }
  1011. .recipients.icon {
  1012. width: 16px;
  1013. height: 12px;
  1014. background-position: -54px -339px;
  1015. }
  1016. .white.close.icon {
  1017. width: 13px;
  1018. height: 13px;
  1019. background-position: -70px -338px;
  1020. }
  1021. .close.icon {
  1022. width: 13px;
  1023. height: 13px;
  1024. background-position: -83px -338px;
  1025. }
  1026. /*
  1027. * removed margin of forms to not break the layout with submit buttons within <form></form> area e. g. for modal dialogs
  1028. */
  1029. form {
  1030. margin: 0;
  1031. }
  1032. .form-controls {
  1033. margin-top: 10px;
  1034. }
  1035. form a.standalone {
  1036. line-height: 40px;
  1037. margin: 0 5px;
  1038. }
  1039. form a.standalone.align-right {
  1040. margin-left: auto;
  1041. }
  1042. footer {
  1043. clear: both;
  1044. padding-top: 10px;
  1045. padding-left: 10px;
  1046. padding-right: 22px;
  1047. }
  1048. .can-move {
  1049. cursor: move;
  1050. }
  1051. .can-move-placeholder {
  1052. border: 1px dashed #DDD;
  1053. background: #EEE;
  1054. margin-top: 5px;
  1055. margin-bottom: 5px;
  1056. }
  1057. .customer_info {
  1058. }
  1059. .customer_info ul.nav > li {
  1060. width: 50%;
  1061. }
  1062. .customer_info ul.nav > li > a {
  1063. text-overflow: ellipsis;
  1064. overflow: hidden;
  1065. white-space: nowrap;
  1066. }
  1067. .customer_info .thumbnail {
  1068. position: absolute;
  1069. right: 20px;
  1070. }
  1071. .customer_info textarea {
  1072. padding-left: 10px;
  1073. width: 100%;
  1074. border-color: #eee;
  1075. }
  1076. .overview {
  1077. padding: 10px 20px;
  1078. }
  1079. .bulk-action {
  1080. background: white;
  1081. z-index: 1;
  1082. box-shadow:
  1083. 0 -1px rgba(0,0,0,.05),
  1084. 0 -2px rgba(0,0,0,.03),
  1085. 0 -3px rgba(0,0,0,.01);
  1086. }
  1087. .show_toogle {
  1088. font-size: 10px;
  1089. line-height: 12px;
  1090. color: #999999;
  1091. }
  1092. .well-muted {
  1093. background-color: whiteSmoke;
  1094. border: 1px solid #eee;
  1095. border: 1px solid rgba(0, 0, 0, 0.05);
  1096. -webkit-border-radius: 4px;
  1097. -moz-border-radius: 4px;
  1098. border-radius: 4px;
  1099. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1100. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1101. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1102. }
  1103. .merged, .merge:hover {
  1104. text-decoration: line-through;
  1105. }
  1106. .not-active {
  1107. text-decoration: line-through;
  1108. }
  1109. .not-active a {
  1110. color: #bbb;
  1111. }
  1112. .customer-info {
  1113. width: 100%;
  1114. padding-top: 7px;
  1115. }
  1116. .inline-edit {
  1117. padding: 4px;
  1118. }
  1119. .inline-edit:hover {
  1120. padding: 3px;
  1121. border: 1px dotted #F92;
  1122. -webkit-border-radius: 3px;
  1123. -moz-border-radius: 3px;
  1124. border-radius: 3px;
  1125. }
  1126. .translation {
  1127. border: 1px dotted #F92;
  1128. -webkit-border-radius: 3px;
  1129. -moz-border-radius: 3px;
  1130. border-radius: 3px;
  1131. }
  1132. .translation:hover {
  1133. }
  1134. .translation .icon-edit {
  1135. display: none;
  1136. }
  1137. .translation:hover .icon-edit {
  1138. display: inline-block;
  1139. }
  1140. .sub_attribute .control-label {
  1141. width: 60px;
  1142. }
  1143. .sub_attribute .controls {
  1144. margin-left: 80px;
  1145. }
  1146. #splash {
  1147. background-color: #eee;
  1148. position: absolute;
  1149. width: 100%;
  1150. top: 0;
  1151. height: 100%;
  1152. }
  1153. #splash .logo {
  1154. margin-left: auto;
  1155. margin-right: auto;
  1156. margin-top: 200px;
  1157. width: 100px;
  1158. }
  1159. .btn {
  1160. font-size: 14px;
  1161. padding: 9px 24px 8px;
  1162. }
  1163. .btn-primary {
  1164. color: white;
  1165. background: #419ed7;
  1166. border-color: #419ed7;
  1167. }
  1168. .btn-create,
  1169. .btn-create:hover {
  1170. color: white;
  1171. background: hsl(145,51%,45%);
  1172. }
  1173. .navigation {
  1174. width: 260px;
  1175. background: #26272e;
  1176. position: relative;
  1177. }
  1178. .navigation:empty {
  1179. display: none !important;
  1180. }
  1181. .navigation .navbar-nav,
  1182. .navigation .navbar-nav > li {
  1183. float: none;
  1184. }
  1185. .navigation .nav > li.active > a,
  1186. .navigation .nav > li > a:hover,
  1187. .navigation .nav > li > a:focus {
  1188. background: none;
  1189. color: #F0FAFF;
  1190. }
  1191. .navbar-nav > li > a {
  1192. padding: 0 15px;
  1193. height: 48px;
  1194. color: rgba(240, 250, 255, .25);
  1195. border-bottom: 1px solid rgba(240, 250, 255, .05);
  1196. }
  1197. .navigation .nav > li.active > a {
  1198. background: #389ed9;
  1199. }
  1200. .navigation .nav-item-icon .icon {
  1201. margin-right: 15px;
  1202. opacity: 0.25;
  1203. vertical-align: bottom;
  1204. }
  1205. .navigation .nav > li.active > a .icon,
  1206. .navigation .nav > li > a:hover .icon,
  1207. .navigation .nav > li > a:focus .icon {
  1208. opacity: 1;
  1209. }
  1210. .tasks {
  1211. background: #2c2d36;
  1212. overflow: auto;
  1213. }
  1214. .tasks.tasks-standalone {
  1215. background: none;
  1216. margin-top: 8px;
  1217. }
  1218. .tasks-standalone .task {
  1219. padding: 0;
  1220. margin-bottom: 9px;
  1221. }
  1222. .tasks-standalone .icon-holder {
  1223. width: 20px;
  1224. }
  1225. .tasks-standalone .icon-holder .icon {
  1226. margin-top: 4px;
  1227. }
  1228. .tasks-standalone .time {
  1229. color: hsl(198,19%,72%);
  1230. }
  1231. .tasks-standalone .task .priority.icon:after {
  1232. background: white;
  1233. }
  1234. .task {
  1235. padding: 10px 15px 7px 0;
  1236. cursor: pointer;
  1237. position: relative;
  1238. }
  1239. .tasks-navigation .task {
  1240. height: 38px;
  1241. border-bottom: 1px solid #33363e;
  1242. }
  1243. .tasks-navigation .task:not(.active):hover {
  1244. background: #26272e;
  1245. }
  1246. .tasks-navigation .name {
  1247. color: #808080;
  1248. }
  1249. .tasks-navigation .icon-holder {
  1250. width: 30px;
  1251. }
  1252. .tasks-navigation .icon-holder .icon {
  1253. margin-right: 3px;
  1254. margin-top: -3px;
  1255. }
  1256. .task:hover {
  1257. text-decoration: none;
  1258. }
  1259. .task .modified.priority.icon {
  1260. margin-right: 8px;
  1261. }
  1262. .task.active {
  1263. background: #389ed9;
  1264. }
  1265. .task.active .name {
  1266. color: white;
  1267. }
  1268. .task.active .priority.icon,
  1269. .task.active .modified.priority.icon,
  1270. .task.active .modified.priority.icon:after {
  1271. background: white;
  1272. border-color: white;
  1273. }
  1274. .level-1 {
  1275. color: #38ae6a;
  1276. }
  1277. .level-1.priority.icon,
  1278. .level-1 .priority.icon,
  1279. .level-1.active,
  1280. .level-1.active .priority.icon:after,
  1281. .level-1 .modified.priority.icon,
  1282. .level-1 .modified.priority.icon:after {
  1283. background-color: #38ae6a;
  1284. border-color: #38ae6a;
  1285. color: #38ae6a;
  1286. }
  1287. .level-2 {
  1288. color: #f35910;
  1289. }
  1290. .level-2.priority.icon,
  1291. .level-2 .priority.icon,
  1292. .level-2.active,
  1293. .level-2.active .priority.icon:after,
  1294. .level-2 .modified.priority.icon,
  1295. .level-2 .modified.priority.icon:after {
  1296. background-color: #f35910;
  1297. border-color: #f35910;
  1298. color: #f35910;
  1299. }
  1300. .level-3 {
  1301. color: #faab00;
  1302. }
  1303. .level-3.priority.icon,
  1304. .level-3 .priority.icon,
  1305. .level-3.active,
  1306. .level-3.active .priority.icon:after,
  1307. .level-3 .modified.priority.icon,
  1308. .level-3 .modified.priority.icon:after {
  1309. background-color: #faab00;
  1310. border-color: #faab00;
  1311. }
  1312. .task .closeTask {
  1313. position: absolute;
  1314. right: 0;
  1315. top: 0;
  1316. width: 50px;
  1317. padding-left: 12px;
  1318. height: 100%;
  1319. visibility: hidden;
  1320. }
  1321. .task:hover .closeTask {
  1322. visibility: visible;
  1323. }
  1324. .closeTask-inner {
  1325. width: 21px;
  1326. height: 21px;
  1327. background-color: #2c2d36;
  1328. border-radius: 100%;
  1329. }
  1330. .closeTask:hover .closeTask-inner {
  1331. background-color: #972e29;
  1332. }
  1333. .closeTask .icon {
  1334. opacity: 0.3;
  1335. -webkit-transform: scale(0.7);
  1336. transform: scale(0.7);
  1337. }
  1338. .closeTask:hover .icon {
  1339. opacity: 1;
  1340. }
  1341. .search {
  1342. padding: 14px 15px 10px 10px;
  1343. border-bottom: 1px solid rgba(240, 250, 255, .05);
  1344. }
  1345. .search-holder {
  1346. margin-right: 15px;
  1347. position: relative;
  1348. transition: 240ms;
  1349. }
  1350. .empty-search {
  1351. position: absolute;
  1352. right: 0;
  1353. top: 0;
  1354. height: 30px;
  1355. width: 40px;
  1356. z-index: 1;
  1357. visibility: hidden;
  1358. }
  1359. .filled.search .empty-search {
  1360. visibility: visible;
  1361. }
  1362. .search input {
  1363. width: 100%;
  1364. padding: 5px 10px 5px 33px;
  1365. height: 30px;
  1366. color: #ECECEC;
  1367. line-height: 20px;
  1368. background: #31373b url(<%= asset_path "sprite.svg" %>) no-repeat 10px -26px;
  1369. outline: none;
  1370. border: none;
  1371. border-radius: 15px;
  1372. position: relative;
  1373. z-index: 1;
  1374. }
  1375. .search.focused .search-holder {
  1376. margin-right: -46px;
  1377. }
  1378. .search.focused .logo {
  1379. opacity: 0;
  1380. }
  1381. .search .logo {
  1382. width: 41px;
  1383. height: 36px;
  1384. background: url(<%= asset_path "logo.svg" %>);
  1385. transition: 240ms;
  1386. cursor: pointer;
  1387. position: relative;
  1388. }
  1389. .logo .activity-counter {
  1390. height: 19px;
  1391. min-width: 19px;
  1392. position: absolute;
  1393. right: 0;
  1394. bottom: 0;
  1395. padding: 0 3px;
  1396. font-size: 11px;
  1397. line-height: 17px;
  1398. text-align: center;
  1399. color: white;
  1400. text-shadow: 0 1px 1px rgba(0,0,0,.21);
  1401. background: hsl(360,71%,60%);
  1402. border-radius: 10px;
  1403. border: 2px solid hsl(232,10%,16%);
  1404. }
  1405. .search .custom-dropdown-menu {
  1406. margin: 0;
  1407. padding: 0;
  1408. list-style: none;
  1409. background: #26272e;
  1410. position: absolute;
  1411. left: 0;
  1412. right: 0;
  1413. bottom: 0;
  1414. top: 56px;
  1415. z-index: 1002;
  1416. display: none;
  1417. overflow: scroll;
  1418. }
  1419. .search.open .custom-dropdown-menu {
  1420. display: block;
  1421. }
  1422. .search .custom-dropdown-menu .divider {
  1423. height: 1px;
  1424. background: #2f3238;
  1425. margin: 14px 0 17px;
  1426. }
  1427. .search .custom-dropdown-menu > li > a {
  1428. height: 30px;
  1429. padding: 0 15px 0 10px;
  1430. color: #808080;
  1431. border: none;
  1432. }
  1433. .search .custom-dropdown-menu > li > a .icon {
  1434. margin-right: 13px;
  1435. }
  1436. .search .custom-dropdown-menu > li:hover > a,
  1437. .search .custom-dropdown-menu > li.active > a {
  1438. background: #3fa9f5;
  1439. color: white;
  1440. text-decoration: none;
  1441. }
  1442. .search .custom-dropdown-menu > li:hover > a .priority.icon,
  1443. .search .custom-dropdown-menu > li.active > a .priority.icon {
  1444. background: white;
  1445. }
  1446. .search .custom-dropdown-menu > li:hover > a .priority.icon:after,
  1447. .search .custom-dropdown-menu > li.active > a .priority.icon:after {
  1448. background: #3fa9f5;
  1449. }
  1450. .user-menu {
  1451. padding: 0;
  1452. margin: 0;
  1453. list-style: none;
  1454. position: relative;
  1455. }
  1456. .user-menu > li {
  1457. background: #26272e;
  1458. }
  1459. .user-menu .list-button {
  1460. height: 60px;
  1461. position: relative;
  1462. cursor: pointer;
  1463. z-index: 1001;
  1464. }
  1465. .user-menu .list-button *:not(.dropdown-nose) {
  1466. position: relative;
  1467. }
  1468. .user-menu > li:hover .list-button:before {
  1469. content: '';
  1470. position: absolute;
  1471. top: 4px;
  1472. right: 4px;
  1473. bottom: 4px;
  1474. left: 4px;
  1475. background: white;
  1476. }
  1477. .user-menu li.add:hover .list-button:before {
  1478. background: #38ae6a;
  1479. }
  1480. .user-menu .dark.cog,
  1481. .user-menu > li:hover .light.cog,
  1482. .user-menu > li.active .light.cog,
  1483. .user-menu .white.plus,
  1484. .user-menu > li:hover .green.plus,
  1485. .user-menu > li.active .green.plus {
  1486. display: none;
  1487. }
  1488. .user-menu > li.settings:hover .dark.cog,
  1489. .user-menu > li.settings.active .dark.cog,
  1490. .user-menu > li.add:hover .white.plus,
  1491. .user-menu > li.add.active .white.plus {
  1492. display: block;
  1493. }
  1494. .user-menu > li:not(:last-child) {
  1495. border-right: 1px solid #2c2d36;
  1496. }
  1497. .dropdown-nose {
  1498. position: absolute;
  1499. border: 7px solid transparent;
  1500. border-bottom: none;
  1501. border-top: 7px solid white;
  1502. left: 50%;
  1503. margin-left: -7px;
  1504. top: -6px;
  1505. display: none;
  1506. }
  1507. li.add .dropdown-nose {
  1508. border-top-color: #38af6e;
  1509. }
  1510. .open.dropdown .dropdown-nose,
  1511. .open.dropup .dropdown-nose {
  1512. display: block;
  1513. }
  1514. .user-menu .dropdown-menu {
  1515. padding: 0;
  1516. border-radius: 0;
  1517. margin-bottom: 5px;
  1518. min-width: 0;
  1519. left: 10px;
  1520. right: 15px;
  1521. width: auto;
  1522. background: white;
  1523. }
  1524. .user-menu li.add .dropdown-menu {
  1525. background-color: #38af6e;
  1526. }
  1527. .user-menu li.add .dropdown-menu > li > a {
  1528. color: white;
  1529. }
  1530. .user-menu li.add .dropdown-menu .divider {
  1531. background: #4cb77c;
  1532. }
  1533. .user-menu .dropdown-menu .divider {
  1534. margin: 0;
  1535. }
  1536. .user-menu .dropdown-menu > li > a {
  1537. height: 40px;
  1538. padding: 10px 15px;
  1539. color: #2594d4;
  1540. }
  1541. .user-menu .dropdown-menu > li > a:hover {
  1542. background: rgba(0,0,0,.05);
  1543. }
  1544. .avatar {
  1545. width: 40px;
  1546. height: 40px;
  1547. background-size: cover;
  1548. background-position: center;
  1549. background-color: rgba(0,0,0,.05);
  1550. border-radius: 100%;
  1551. display: inline-block;
  1552. vertical-align: bottom;
  1553. }
  1554. .big.avatar {
  1555. width: 50px;
  1556. height: 50px;
  1557. }
  1558. .unique.avatar {
  1559. background-image: url(<%= asset_path "avatar-bg.png" %>);
  1560. background-size: auto;
  1561. color: white;
  1562. line-height: 42px;
  1563. text-align: center;
  1564. font-size: 13px;
  1565. letter-spacing: 1px;
  1566. text-transform: uppercase;
  1567. text-shadow: 0 1px rgba(0,0,0,.2);
  1568. }
  1569. .unique.big.avatar {
  1570. font-size: 16px;
  1571. line-height: 52px;
  1572. }
  1573. .sidebar {
  1574. width: 32%;
  1575. max-width: 300px;
  1576. padding: 8px 20px 20px 20px;
  1577. background: white;
  1578. border-right: 1px solid #e6e6e6;
  1579. overflow: auto;
  1580. }
  1581. .main + .sidebar {
  1582. border-right: none;
  1583. border-left: 1px solid #e6e6e6;
  1584. }
  1585. .NavBarAdmin.sidebar {
  1586. padding-top: 1px;
  1587. width: 280px;
  1588. }
  1589. .nav-stacked > li + li {
  1590. margin-top: 0;
  1591. }
  1592. .nav-stacked > li:last-child a {
  1593. border-bottom: 1px solid #f2f2f3;
  1594. }
  1595. .nav-pills > li > a {
  1596. color: #0f94d6;
  1597. border-radius: 0;
  1598. padding: 8px 0;
  1599. border-top: 1px solid #f2f2f3;
  1600. }
  1601. .nav-pills > li:hover > a {
  1602. background: #f2f2f3;
  1603. }
  1604. .nav-pills > li:hover > a,
  1605. .nav-pills > li:hover + li > a {
  1606. border-color: transparent;
  1607. }
  1608. .nav-pills > li.active > a,
  1609. .nav-pills > li.active > a:hover,
  1610. .nav-pills > li.active > a:focus {
  1611. color: white;
  1612. background: #2c2d36;
  1613. }
  1614. .nav-pills > li:hover > a,
  1615. .nav-pills > li.active > a,
  1616. .nav-pills > li.active > a:hover,
  1617. .nav-pills > li.active > a:focus {
  1618. padding-left: 10px;
  1619. padding-right: 10px;
  1620. margin-left: -10px;
  1621. margin-right: -10px;
  1622. }
  1623. .sidebar:not(.NavBarAdmin) .nav-pills > li:first-child > a {
  1624. border-top: none;
  1625. }
  1626. .badge {
  1627. padding: 0;
  1628. font-size: inherit;
  1629. font-weight: normal;
  1630. color: #d0d2d3;
  1631. background: none;
  1632. border-radius: 0;
  1633. }
  1634. .nav-pills > li > a > .badge {
  1635. margin-left: auto;
  1636. }
  1637. a.list-group-item.active > .badge,
  1638. .nav-pills > .active > a > .badge {
  1639. color: #96969b;
  1640. background: none;
  1641. }
  1642. .main {
  1643. padding: 10px 20px;
  1644. overflow: auto;
  1645. position: relative;
  1646. }
  1647. .main.no-padding {
  1648. padding: 0;
  1649. }
  1650. .popover {
  1651. width: 372px;
  1652. max-width: 9999px;
  1653. border-radius: 0;
  1654. border: none;
  1655. z-index: 1110;
  1656. box-shadow: 0 1px 14px rgba(0,8,14,.25);
  1657. }
  1658. .popover-title {
  1659. border: none;
  1660. background: none;
  1661. padding: 20px 17px 4px;
  1662. }
  1663. .popover-content {
  1664. padding: 0 17px 10px;
  1665. max-height: 600px;
  1666. overflow-y: scroll;
  1667. }
  1668. .popover.right { margin-left: 4px; }
  1669. .popover.right > .arrow {
  1670. border-right: none;
  1671. left: -9px;
  1672. }
  1673. .popover.top { margin-bottom: 9px; }
  1674. .popover.top > .arrow {
  1675. border-top: none;
  1676. bottom: -9px;
  1677. }
  1678. .popover.left { margin-right: 9px; }
  1679. .popover.left > .arrow {
  1680. border-left: none;
  1681. right: -9px;
  1682. }
  1683. .popover.bottom { margin-top: 9px; }
  1684. .popover.bottom > .arrow {
  1685. border-bottom: none;
  1686. top: -9px;
  1687. }
  1688. .popover > .arrow:after {
  1689. border-width: 8px;
  1690. }
  1691. .popover .priority.icon:after {
  1692. background: white;
  1693. }
  1694. .popover .person .company {
  1695. color: #a1a4a7;
  1696. }
  1697. .popover hr {
  1698. margin: 8px 0;
  1699. }
  1700. .popover .person .company:before { content: '('; }
  1701. .popover .person .company:after { content: ')'; }
  1702. .popover .column h3 {
  1703. margin: 8px 0 1px;
  1704. }
  1705. .popover .column {
  1706. margin-bottom: 8px;
  1707. }
  1708. .stat-widgets {
  1709. margin: 0 -7px 20px;
  1710. }
  1711. .stat-widget {
  1712. height: 200px;
  1713. margin: 7px;
  1714. padding: 13px;
  1715. text-align: center;
  1716. line-height: 20px;
  1717. background: white;
  1718. border: 1px solid #e5f0f5;
  1719. border-radius: 1px;
  1720. box-shadow: 0 1px rgba(0,8,14,.02);
  1721. }
  1722. .stat-widget h3 {
  1723. margin: 2px 0 8px;
  1724. color: #444a4f;
  1725. letter-spacing: 0;
  1726. font-weight: normal;
  1727. }
  1728. .stat-widget .stat-label {
  1729. color: #444a4f;
  1730. }
  1731. .stat-widget .stat-detail {
  1732. color: #b4b7b9;
  1733. }
  1734. .channel-distribution.stat-widget {
  1735. color: #a1a4a7;
  1736. }
  1737. .time.stat-widget .stat-graphic .icon {
  1738. position: relative;
  1739. }
  1740. .time.stat-widget .stat-amount {
  1741. margin-top: 16px;
  1742. text-align: center;
  1743. font-size: 30px;
  1744. color: white;
  1745. text-shadow: 0 2px rgba(0,8,14,.2);
  1746. position: relative;
  1747. }
  1748. .time.stat-widget .stat-dial {
  1749. position: absolute;
  1750. top: 21px;
  1751. left: 14px;
  1752. }
  1753. .stats-channel {
  1754. padding: 8px 0 7px;
  1755. margin-bottom: -7px;
  1756. border-radius: 3px;
  1757. }
  1758. .stats-channel:hover {
  1759. background: rgba(0,8,14,.03);
  1760. }
  1761. .stats-channel .channel-bars {
  1762. height: 73px;
  1763. margin: 16px 0 15px;
  1764. padding: 2px 12px;
  1765. width: 100%;
  1766. background: linear-gradient(to top, #f2f2f3, #f2f2f3 1px, transparent 1px);
  1767. background-position: center bottom;
  1768. background-size: 100% 12px;
  1769. }
  1770. .channel-bars .channel-bar {
  1771. border-radius: 5px;
  1772. width: 10px;
  1773. background: #a9bcc4;
  1774. }
  1775. .channel-bars .channel-bar.secondary {
  1776. opacity: .38;
  1777. }
  1778. .activity.sidebar {
  1779. width: 370px;
  1780. padding: 0;
  1781. border-left: 1px solid #e8e8e8;
  1782. }
  1783. .activity h2 {
  1784. margin-left: 19px;
  1785. margin-bottom: 15px;
  1786. margin-right: 26px;
  1787. }
  1788. .activity-entry.state--read {
  1789. opacity: 0.5;
  1790. }
  1791. .activity-avatar {
  1792. padding-top: 16px;
  1793. padding-left: 2px;
  1794. padding-right: 2px;
  1795. margin-right: 10px;
  1796. }
  1797. .activity-avatar:hover .avatar {
  1798. }
  1799. .activity-body {
  1800. color: #444a4f;
  1801. padding: 16px 0 16px 2px;
  1802. position: relative;
  1803. }
  1804. .activity-body:after {
  1805. content: "";
  1806. position: absolute;
  1807. bottom: 0;
  1808. right: 30px;
  1809. left: 8px;
  1810. border-bottom: 1px solid #f2f2f3;
  1811. }
  1812. .activity-body:hover {
  1813. color: #444a4f;
  1814. text-decoration: none;
  1815. }
  1816. .activity-body:hover .activity-text {
  1817. text-decoration: underline;
  1818. }
  1819. .activity-message {
  1820. padding-right: 0;
  1821. }
  1822. .activity-time {
  1823. margin-top: 2px;
  1824. color: #a1a4a7;
  1825. display: block;
  1826. }
  1827. .activity .priority.icon:after {
  1828. background: white;
  1829. }
  1830. .form-inline .input-group-addon,
  1831. .form-inline .form-control {
  1832. background: white;
  1833. border: none;
  1834. line-height: 1;
  1835. }
  1836. .form-inline .form-group {
  1837. overflow: hidden;
  1838. flex-grow: 1;
  1839. position: relative;
  1840. height: 60px;
  1841. }
  1842. .form-inline .form-group:last-child {
  1843. flex-grow: 0;
  1844. }
  1845. .form-group.is-changed {
  1846. position: relative;
  1847. }
  1848. .form-group.is-changed:before {
  1849. content: "";
  1850. position: absolute;
  1851. top: 0;
  1852. left: 0;
  1853. height: 100%;
  1854. width: 3px;
  1855. background: repeating-linear-gradient(-45deg, hsl(193,18%,90%), hsl(193,18%,90%) 4px, transparent 4px, transparent 7px) repeat center;
  1856. background-size: 9px 9px;
  1857. }
  1858. .form-inline .form-group.is-changed:before {
  1859. width: 100%;
  1860. height: 3px;
  1861. }
  1862. .form-group.is-changed label {
  1863. color: hsl(198,19%,72%);
  1864. position: relative;
  1865. }
  1866. .form-group.is-changed label:before {
  1867. position: absolute;
  1868. content: '';
  1869. left: -10px;
  1870. width: 5px;
  1871. height: 5px;
  1872. top: 50%;
  1873. margin-top: -4px;
  1874. border-radius: 100%;
  1875. background: hsl(198,19%,72%);
  1876. }
  1877. .form-inline .form-group .btn {
  1878. margin: 10px;
  1879. }
  1880. .form-inline .form-group:not(:last-child) {
  1881. border-right: 1px solid #f0f0f0;
  1882. }
  1883. .form-inline .input-group-addon {
  1884. padding: 0;
  1885. margin: 10px 18px 0;
  1886. font-size: 13px;
  1887. letter-spacing: 0.05em;
  1888. color: #ccc;
  1889. display: block;
  1890. position: relative;
  1891. }
  1892. .form-inline .form-control {
  1893. width: 100%;
  1894. height: 100%;
  1895. left: 0;
  1896. top: 0;
  1897. position: absolute;
  1898. padding: 28px 18px 18px;
  1899. float: none;
  1900. display: block;
  1901. border-radius: 0;
  1902. background: none;
  1903. -webkit-appearance: none;
  1904. -moz-appearance: none;
  1905. -ms-appearance: none;
  1906. appearance: none;
  1907. }
  1908. .ticketZoom {
  1909. background: #f8f9fa;
  1910. }
  1911. .ticketZoom .page-header {
  1912. margin-top: 62px;
  1913. margin-bottom: 46px;
  1914. border-bottom: none;
  1915. }
  1916. .ticket-title {
  1917. max-width: 90%;
  1918. }
  1919. .ticket-title h1 {
  1920. margin-top: 15px;
  1921. margin-bottom: 8px;
  1922. text-align: center;
  1923. }
  1924. .task-subline {
  1925. text-align: center;
  1926. display: block;
  1927. }
  1928. .bubble-grid {
  1929. max-width: 800px;
  1930. margin: 0 auto;
  1931. padding: 0 21px;
  1932. }
  1933. .bubble-gap {
  1934. margin-left: 15px !important;
  1935. }
  1936. .customer.ticket-article-item .bubble-gap {
  1937. margin-left: 0 !important;
  1938. margin-right: 15px !important;
  1939. }
  1940. .ticket-article-item {
  1941. padding-bottom: 33px;
  1942. position: relative;
  1943. }
  1944. /*
  1945. clip the article-meta to not stand out on the other side
  1946. of the text-bubble if the text bubble is small
  1947. */
  1948. .article-meta-clip {
  1949. overflow: hidden;
  1950. position: relative;
  1951. height: 100%;
  1952. }
  1953. .article-content {
  1954. position: relative;
  1955. margin-right: 55px;
  1956. }
  1957. .customer.ticket-article-item .article-content {
  1958. margin-right: 0;
  1959. margin-left: 55px;
  1960. }
  1961. .article-content-meta {
  1962. padding: 0 55px;
  1963. position: absolute;
  1964. width: 100%;
  1965. }
  1966. .article-meta {
  1967. background: #2c2d36;
  1968. color: white;
  1969. padding: 21px 25px 11px;
  1970. margin: 0 12px;
  1971. }
  1972. .article-meta.bottom {
  1973. padding-top: 17px;
  1974. padding-bottom: 8px;
  1975. }
  1976. .article-meta-row {
  1977. margin-bottom: 5px;
  1978. }
  1979. .article-meta-key {
  1980. width: 13%;
  1981. text-transform: uppercase;
  1982. }
  1983. .article-meta-value {
  1984. margin-left: 8px;
  1985. }
  1986. .article-meta .icon {
  1987. vertical-align: top;
  1988. margin: 1px 3px 0 0;
  1989. }
  1990. .article-meta .text-muted {
  1991. color: #96969b;
  1992. }
  1993. .internal-border {
  1994. padding: 5px;
  1995. border-radius: 8px;
  1996. margin: -5px;
  1997. }
  1998. .is-internal .internal-border {
  1999. background: repeating-linear-gradient(45deg, hsl(18,79%,89%), hsl(18,79%,89%) 5px, hsl(210,17%,98%) 5px, hsl(210,17%,98%) 6px);
  2000. background-size: 8px 8px;
  2001. }
  2002. .is-internal .bubble-arrow {
  2003. display: none;
  2004. }
  2005. .text-bubble {
  2006. padding: 10px 20px;
  2007. white-space: pre-wrap;
  2008. background: white;
  2009. border-radius: 2px;
  2010. border: 1px solid hsl(240,4%,95%);
  2011. box-shadow: 0 0 1px rgba(0,0,0,.06) inset;
  2012. position: relative;
  2013. }
  2014. .ticket-article-item.state--folde-out .text-bubble {
  2015. border-color: hsl(0,0%,90%);
  2016. }
  2017. .customer.ticket-article-item .text-bubble {
  2018. background: #e5f0f5;
  2019. border-color: hsl(199,38%,92%);
  2020. box-shadow: none;
  2021. }
  2022. .customer.ticket-article-item.state--folde-out .text-bubble {
  2023. border-color: hsl(199,44%,85%);
  2024. }
  2025. .bubble-arrow {
  2026. position: absolute;
  2027. width: 7px;
  2028. height: 9px;
  2029. left: -6px;
  2030. top: 15px;
  2031. overflow: hidden;
  2032. }
  2033. .bubble-arrow:after {
  2034. content: "";
  2035. position: absolute;
  2036. top: -1px;
  2037. left: 2px;
  2038. width: 11px;
  2039. height: 11px;
  2040. background: white;
  2041. border: 1px solid hsl(240,4%,95%);
  2042. box-shadow: 0 0 1px rgba(0,0,0,.06) inset;
  2043. -webkit-transform: rotate(-45deg);
  2044. transform: rotate(-45deg);
  2045. }
  2046. .ticket-article-item.is-internal .bubble-arrow:after {
  2047. background: #f2def2;
  2048. border: #eed3d7;
  2049. }
  2050. .customer.ticket-article-item .bubble-arrow {
  2051. left: auto;
  2052. right: -6px;
  2053. }
  2054. .customer.ticket-article-item .bubble-arrow:after {
  2055. background: #e5f0f5;
  2056. left: auto;
  2057. right: 2px;
  2058. border-color: hsl(199,38%,92%);
  2059. box-shadow: none;
  2060. }
  2061. .ticket-article-item .task-subline {
  2062. margin-top: 12px;
  2063. }
  2064. .article-action {
  2065. padding: 5px;
  2066. margin: 5px 12px;
  2067. color: black;
  2068. font-size: 12px;
  2069. text-align: center;
  2070. opacity: 0.5;
  2071. cursor: pointer;
  2072. -webkit-user-select: none;
  2073. user-select: none;
  2074. }
  2075. .article-action:hover {
  2076. color: black;
  2077. text-decoration: none;
  2078. opacity: 1;
  2079. }
  2080. .article-action .icon {
  2081. margin-right: 10px;
  2082. vertical-align: top;
  2083. }
  2084. .ticket-edit {
  2085. margin-top: auto;
  2086. margin-bottom: 36px;
  2087. }
  2088. .bottom-form {
  2089. background: white;
  2090. }
  2091. .ticket-edit .avatar {
  2092. margin-bottom: 3px;
  2093. }
  2094. .edit-controls {
  2095. position: relative;
  2096. }
  2097. .edit-control-item {
  2098. width: 38px;
  2099. height: 36px;
  2100. position: absolute;
  2101. top: 38px;
  2102. display: none;
  2103. }
  2104. .edit-control-item:nth-child(3) {
  2105. top: 74px;
  2106. }
  2107. .edit-control-item:nth-child(4) {
  2108. top: 110px;
  2109. }
  2110. .edit-control-item:not(:last-child) {
  2111. border-bottom: 1px solid #e6e6e6;
  2112. }
  2113. .pop-selectable .icon {
  2114. opacity: 0.3;
  2115. pointer-events: none;
  2116. }
  2117. .pop-selectable:hover .icon {
  2118. opacity: 1;
  2119. }
  2120. .visibility-toggle > * {
  2121. height: 36px;
  2122. width: 38px;
  2123. position: absolute;
  2124. }
  2125. .visibility-toggle .icon {
  2126. display: block;
  2127. }
  2128. .visibility-toggle .icon,
  2129. .recipient-picker {
  2130. opacity: 0.2;
  2131. }
  2132. .ticket-edit.is-public .internal-visibility {
  2133. visibility: hidden;
  2134. }
  2135. .ticket-edit.is-internal .visibility-toggle .icon {
  2136. opacity: 1;
  2137. }
  2138. .ticket-edit.is-internal .public-visibility {
  2139. visibility: hidden;
  2140. }
  2141. .ticket-edit .recipient-picker {
  2142. height: 36px;
  2143. position: relative;
  2144. transition: 300ms;
  2145. }
  2146. .ticket-edit .recipient-picker.is-open {
  2147. opacity: 1;
  2148. }
  2149. .recipient-picker .icon {
  2150. margin-top: -2px;
  2151. }
  2152. .recipient-count {
  2153. margin-left: 3px;
  2154. margin-top: 1px;
  2155. line-height: 1;
  2156. }
  2157. .recipient-list {
  2158. position: absolute;
  2159. background: hsl(234,10%,19%);
  2160. left: 48px;
  2161. color: white;
  2162. }
  2163. .recipient-picker.is-open .recipient-list {
  2164. display: block;
  2165. }
  2166. .list-arrow {
  2167. position: absolute;
  2168. top: 210px;
  2169. left: -6px;
  2170. margin-top: -6px;
  2171. border-right: 6px solid #2c2d36;
  2172. border-top: 6px solid transparent;
  2173. border-bottom: 6px solid transparent;
  2174. }
  2175. .list-head {
  2176. height: 38px;
  2177. line-height: 38px;
  2178. padding: 1px 19px 0;
  2179. text-transform: uppercase;
  2180. }
  2181. .list-head div {
  2182. position: relative;
  2183. left: -20px;
  2184. }
  2185. .list-entry {
  2186. width: 340px;
  2187. height: 60px;
  2188. padding: 0 16px;
  2189. border-top: 1px solid hsl(240,6%,27%);
  2190. }
  2191. .list-entry-name {
  2192. margin-left: 18px;
  2193. }
  2194. .list-entry-type {
  2195. font-size: 12px;
  2196. }
  2197. .list-entry-type div {
  2198. padding: 3px 7px;
  2199. border: 1px solid hsl(234,10%,10%);
  2200. color: hsl(0,0%,40%);
  2201. background: hsl(234,10%,14%);
  2202. }
  2203. .list-entry-type .active {
  2204. color: white;
  2205. background: inherit;
  2206. box-shadow: 0 1px rgba(255,255,255,.03) inset;
  2207. }
  2208. .list-entry-type div:not(:last-child) {
  2209. border-right: none;
  2210. }
  2211. .list-entry-type div:first-child {
  2212. border-radius: 3px 0 0 3px;
  2213. }
  2214. .list-entry-type div:last-child {
  2215. border-left: none;
  2216. border-radius: 0 3px 3px 0;
  2217. }
  2218. .recipient-list input {
  2219. padding-top: 2px;
  2220. background: hsl(232,10%,16%);
  2221. color: white;
  2222. border: none;
  2223. outline: none;
  2224. }
  2225. .recipient-list input[type=submit] {
  2226. height: 0;
  2227. width: 0;
  2228. padding: 0;
  2229. position: absolute;
  2230. visibility: hidden;
  2231. }
  2232. .recipient-list input::-webkit-input-placeholder { color: #666; }
  2233. .recipient-list input::-moz-placeholder { opacity: 1; color: #666; }
  2234. .recipient-list input:-ms-input-placeholder { color: #666; }
  2235. .ticket-edit .text-bubble {
  2236. padding: 0;
  2237. border-color: #b3b3b3;
  2238. white-space: normal;
  2239. border-radius: 5px;
  2240. overflow: hidden;
  2241. }
  2242. .ticket-edit textarea {
  2243. width: 100%;
  2244. height: 38px;
  2245. padding: 10px;
  2246. vertical-align: bottom;
  2247. border: none;
  2248. background: none;
  2249. outline: none;
  2250. resize: none;
  2251. }
  2252. .ticket-edit .bubble-arrow:after {
  2253. border-color: #b3b3b3;
  2254. box-shadow: none;
  2255. }
  2256. .article-attachment {
  2257. position: absolute;
  2258. bottom: 0;
  2259. left: 10px;
  2260. width: 100%;
  2261. height: 38px;
  2262. padding: 10px 0;
  2263. color: #b3b3b3;
  2264. }
  2265. .edit-upload-button {
  2266. position: relative;
  2267. display: inline-block;
  2268. overflow: hidden;
  2269. vertical-align: bottom;
  2270. }
  2271. .pop-selector {
  2272. position: absolute;
  2273. top: 0;
  2274. left: 0;
  2275. }
  2276. .pop-selected,
  2277. .pop-selectable {
  2278. width: 38px;
  2279. height: 36px;
  2280. }
  2281. .pop-selectable {
  2282. background: hsl(234,10%,19%);
  2283. }
  2284. .pop-selectable:hover {
  2285. background: hsl(234,10%,29%);
  2286. }
  2287. .pop-selectable:first-child {
  2288. border-radius: 4px 0 0 4px;
  2289. }
  2290. .pop-selectable:last-child {
  2291. border-radius: 0 4px 4px 0;
  2292. }
  2293. .tabsSidebarSpace {
  2294. padding-right: 62px !important;
  2295. margin-right: 280px;
  2296. transition: 500ms;
  2297. }
  2298. .tabsSidebarSpace.is-closed {
  2299. margin-right: 0;
  2300. }
  2301. .tabsSidebar .sidebar {
  2302. width: 280px;
  2303. border-left: 1px solid #e6e6e6;
  2304. }
  2305. .tabsSidebar .sidebar h2 {
  2306. margin: 5px 0 0;
  2307. }
  2308. .tabsSidebar-close {
  2309. padding: 20px;
  2310. margin: -15px;
  2311. }
  2312. .sidebar.bottom-form-shadow {
  2313. box-shadow:
  2314. 0 -1px rgba(0,0,0,.005) inset,
  2315. 0 -2px rgba(0,0,0,.005) inset,
  2316. 0 -3px rgba(0,0,0,.005) inset,
  2317. 0 -4px rgba(0,0,0,.005) inset;
  2318. }
  2319. .tabsSidebar {
  2320. position: absolute;
  2321. right: 0;
  2322. top: 0;
  2323. bottom: 0;
  2324. transition: 500ms;
  2325. }
  2326. .tabsSidebar.is-closed {
  2327. -webkit-transform: translateX(280px);
  2328. transform: translateX(280px);
  2329. }
  2330. .tabsSidebar-tabs {
  2331. position: absolute;
  2332. left: -55px;
  2333. top: 0;
  2334. bottom: 0;
  2335. }
  2336. .test {
  2337. position: absolute;
  2338. width: 100%;
  2339. }
  2340. .tabsSidebar-tab {
  2341. width: 56px;
  2342. height: 60px;
  2343. background: hsl(197,20%,93%);
  2344. cursor: pointer;
  2345. position: relative;
  2346. border-top: 1px solid hsl(202,12%,87%);
  2347. }
  2348. .tabsSidebar-tab.is-changed:before {
  2349. position: absolute;
  2350. content: '';
  2351. left: -3px;
  2352. width: 6px;
  2353. height: 6px;
  2354. top: 50%;
  2355. margin-top: -3px;
  2356. border-radius: 100%;
  2357. background: hsl(198,19%,72%);
  2358. box-shadow: 0 0 0 2px hsl(210,17%,98%);
  2359. }
  2360. .tabsSidebar-tab:first-child {
  2361. border-top-left-radius: 8px;
  2362. border-top: none;
  2363. }
  2364. .tabsSidebar-tab:last-child {
  2365. border-bottom-left-radius: 8px;
  2366. }
  2367. .tabsSidebar-tab .icon {
  2368. opacity: 0.3;
  2369. }
  2370. .tabsSidebar-tab.active .icon {
  2371. opacity: 1;
  2372. }
  2373. .sidebar .form-group {
  2374. margin-left: -20px;
  2375. margin-right: -20px;
  2376. padding-right: 20px;
  2377. padding-left: 20px;
  2378. }
  2379. .sidebar .text-muted {
  2380. color: hsl(204,3%,72%);
  2381. }
  2382. .tags {
  2383. margin-bottom: 20px;
  2384. }
  2385. .tagList {
  2386. padding: 0;
  2387. margin-bottom: 5px;
  2388. }
  2389. .tagList li {
  2390. border-bottom: 1px solid hsl(240,4%,95%);
  2391. }
  2392. .tagList .tag-delete {
  2393. height: 29px;
  2394. padding: 0 10px;
  2395. margin-right: -4px;
  2396. display: block;
  2397. opacity: 0.2;
  2398. }
  2399. .tagList .tag-delete:hover {
  2400. opacity: 0.5;
  2401. }
  2402. .newTicket {
  2403. padding: 34px;
  2404. }
  2405. .newTicket .sidebar {
  2406. width: 290px;
  2407. }
  2408. .newTicket .form-control:not(:focus):not(.focus) {
  2409. border-color: hsl(0,0%,90%);
  2410. }
  2411. .newTicket .subtle-link {
  2412. color: hsl(0,0%,89%);
  2413. }
  2414. .box {
  2415. background: white;
  2416. margin: 0 auto;
  2417. border: 1px solid #e6e6e6;
  2418. padding: 12px 24px 20px;
  2419. max-width: 658px;
  2420. }
  2421. .box .page-header {
  2422. text-align: center;
  2423. border-bottom: none;
  2424. margin: 0;
  2425. padding-bottom: 12px;
  2426. }
  2427. .box h1 {
  2428. color: hsl(60,1%,34%);
  2429. }
  2430. .box .two-columns {
  2431. margin-left: -4px;
  2432. margin-right: -4px;
  2433. }
  2434. .box .two-columns .column {
  2435. margin-left: 4px;
  2436. margin-right: 4px;
  2437. width: calc(50% - 8px);
  2438. }
  2439. .formset-inset {
  2440. margin: 31px -24px 24px;
  2441. padding: 19px 24px 4px;
  2442. background: hsl(197,20%,93%);
  2443. border-top: 1px solid hsl(0,0%,90%);
  2444. border-bottom: 1px solid hsl(0,0%,90%);
  2445. }
  2446. .type-tabs .tab {
  2447. line-height: 40px;
  2448. padding: 0;
  2449. }
  2450. .type-tabs .icon {
  2451. vertical-align: top;
  2452. margin-right: 9px;
  2453. margin-top: 10px;
  2454. transform: scale(1.2);
  2455. }
  2456. .tokenfield .token {
  2457. padding: 0 0 0 10px;
  2458. margin: -1px 5px 8px 0;
  2459. height: 26px;
  2460. line-height: 27px;
  2461. color: white;
  2462. background: hsl(198,19%,72%);
  2463. border: none;
  2464. float: none;
  2465. }
  2466. .tokenfield .token-input {
  2467. vertical-align: top;
  2468. margin: 2px 0 0 5px;
  2469. }
  2470. .tokenfield .token .token-label {
  2471. padding: 0;
  2472. }
  2473. .tokenfield.form-control {
  2474. padding-top: 8px;
  2475. }
  2476. .tokenfield .token .close {
  2477. margin: 0;
  2478. padding: 0 10px 0 5px;
  2479. font-family: inherit;
  2480. font-weight: 100;
  2481. font-size: 30px;
  2482. line-height: 1;
  2483. color: white;
  2484. text-shadow: none;
  2485. opacity: .3;
  2486. outline: none;
  2487. }
  2488. .tokenfield .token .close:hover {
  2489. opacity: .5;
  2490. }
  2491. .drox {
  2492. color: hsl(60,1%,74%);
  2493. }
  2494. .drox .drox-header {
  2495. padding-bottom: 2px;
  2496. margin-bottom: 16px;
  2497. border-bottom: 1px solid hsl(240,4%,95%);
  2498. }
  2499. .drox a.create {
  2500. margin-top: 2px;
  2501. display: inline-block;
  2502. }
  2503. .drox .form-group {
  2504. margin-bottom: 22px;
  2505. }
  2506. .drox .drox-body p:first-child {
  2507. margin-top: 20px;
  2508. }
  2509. .newTicket .templates {
  2510. border-bottom: 1px solid hsl(240,4%,95%);
  2511. padding-bottom: 14px;
  2512. }
  2513. .template-attributes {
  2514. margin: 17px 0 19px;
  2515. }
  2516. .template-attribute {
  2517. height: 24px;
  2518. line-height: 25px;
  2519. padding-left: 10px;
  2520. margin-bottom: 2px;
  2521. font-size: 13px;
  2522. color: hsl(198,11%,59%);
  2523. background: hsl(197,20%,93%);
  2524. border: 1px solid hsl(0,0%,90%);
  2525. border-radius: 3px;
  2526. }
  2527. .template-attribute .key {
  2528. text-transform: uppercase;
  2529. margin-right: 3px;
  2530. }
  2531. .template-attribute .value {
  2532. margin-left: 3px;
  2533. }
  2534. .template-attribute .delete {
  2535. padding: 0 7px;
  2536. margin-top: 4px;
  2537. line-height: 19px;
  2538. font-size: 28px;
  2539. font-weight: lighter;
  2540. opacity: .4;
  2541. }
  2542. .customer-name {
  2543. color: hsl(60,1%,34%);
  2544. }
  2545. .customer-email {
  2546. margin-top: 5px;
  2547. margin-bottom: 20px;
  2548. display: block;
  2549. }
  2550. .qq-upload-list li {
  2551. padding: 4px 5px 0;
  2552. margin: 0 5px;
  2553. color: hsl(60,1%,34%);
  2554. font-size: 0.9em;
  2555. line-height: auto;
  2556. background: none;
  2557. }
  2558. .qq-upload-list li:hover {
  2559. background: hsl(200,20%,97%);
  2560. }
  2561. .qq-upload-file {
  2562. color: hsl(202,66%,55%);
  2563. }
  2564. .qq-upload-size {
  2565. font-size: inherit;
  2566. }
  2567. .switchBackToUser.fit {
  2568. background: hsl(200,87%,45%);
  2569. color: #fff;
  2570. height: 45px;
  2571. padding: 0 17px;
  2572. top: -45px;
  2573. border-bottom: 5px solid hsl(205,90%,60%);
  2574. }
  2575. .switchBackToUser-text {
  2576. margin-left: 10px;
  2577. }
  2578. .switchBackToUser-close {
  2579. width: 40px;
  2580. height: 40px;
  2581. margin-right: -10px;
  2582. }
  2583. #app.switchBackToUserSpace {
  2584. top: 45px;
  2585. }
  2586. .modal-dialog {
  2587. width: 660px;
  2588. margin-top: 35px;
  2589. margin-bottom: 35px;
  2590. }
  2591. .modal-content {
  2592. border-radius: 0;
  2593. border: 1px solid hsl(0,0%,90%);
  2594. box-shadow: none;
  2595. }
  2596. .modal-header {
  2597. padding: 30px 23px 23px;
  2598. border: none;
  2599. }
  2600. .modal-header h1 {
  2601. text-align: center;
  2602. }
  2603. .modal-close {
  2604. padding: 23px;
  2605. position: absolute;
  2606. right: 0;
  2607. top: 0;
  2608. cursor: pointer;
  2609. -webkit-user-select: none;
  2610. user-select: none;
  2611. }
  2612. .modal-close .close.icon {
  2613. opacity: 0.18;
  2614. }
  2615. .modal-body {
  2616. padding: 0 23px;
  2617. }
  2618. .modal-footer {
  2619. padding: 23px 23px 20px;
  2620. border: none;
  2621. }
  2622. .caret {
  2623. position: absolute;
  2624. top: 50%;
  2625. margin-top: -3px;
  2626. right: 10px;
  2627. }
  2628. .dropdown-menu {
  2629. margin: 0;
  2630. padding: 0;
  2631. width: 100%;
  2632. color: white;
  2633. background: none;
  2634. border-radius: 0;
  2635. border: none;
  2636. box-shadow: none;
  2637. overflow-x: hidden;
  2638. }
  2639. .dropdown ul {
  2640. margin: 0;
  2641. background: hsl(234,10%,19%);
  2642. }
  2643. .dropdown li {
  2644. height: 40px;
  2645. padding: 0 15px;
  2646. }
  2647. .dropdown li:not(:first-child) {
  2648. box-shadow: 0 1px rgba(255,255,255,.13) inset;
  2649. }
  2650. .dropdown li:hover,
  2651. .dropdown li.is-active {
  2652. background: hsl(205,90%,60%);
  2653. }
  2654. .dropdown li:not(.recipientList-controls):hover + li,
  2655. .dropdown li.is-active + li {
  2656. box-shadow: none;
  2657. }
  2658. .recipientList,
  2659. .recipientList-organisationMembers {
  2660. list-style: none;
  2661. padding: 0;
  2662. }
  2663. .recipientList-entry .recipientList-iconSpacer {
  2664. width: 20px;
  2665. margin-left: -5px;
  2666. }
  2667. .recipientList-entry .icon:not(.plus) {
  2668. opacity: 0.2;
  2669. }
  2670. .recipientList-entry:hover .icon {
  2671. opacity: 1;
  2672. }
  2673. .recipientList-name {
  2674. margin-left: 10px;
  2675. margin-top: 2px;
  2676. }
  2677. .recipientList-detail {
  2678. opacity: 0.5;
  2679. }
  2680. .recipientList-icon.plus {
  2681. margin-left: 13px;
  2682. }
  2683. .recipientList-new {
  2684. background: hsl(145,51%,45%);
  2685. }
  2686. .dropdown .recipientList-new:hover {
  2687. background: hsl(147,52%,43%);
  2688. }
  2689. li.recipientList-controls,
  2690. li.recipientList-controls:hover {
  2691. padding: 0;
  2692. background: hsl(206,7%,28%);
  2693. }
  2694. .recipientList-backClickArea {
  2695. height: 100%;
  2696. float: left;
  2697. padding: 0 10px;
  2698. }
  2699. .recipientList-backButton {
  2700. padding: 5px 10px;
  2701. font-size: 12px;
  2702. color: white;
  2703. border-radius: 3px;
  2704. border: 1px solid hsl(234,10%,10%);
  2705. box-shadow: 0 1px rgba(255,255,255,.03) inset;
  2706. }
  2707. .recipientList-backClickArea:active .recipientList-backButton {
  2708. background: hsl(206,7%,25%);
  2709. box-shadow: 0 1px rgba(0,0,0,.1) inset;
  2710. }
  2711. .recipientList-backButton .icon {
  2712. margin-bottom: -2px;
  2713. }
  2714. .recipientList-organisationMembers {
  2715. position: absolute;
  2716. top: 0;
  2717. left: 0;
  2718. right: 0;
  2719. }
  2720. /*
  2721. ----------------
  2722. normal screens
  2723. ----------------
  2724. */
  2725. @media only screen and (max-width: 1280px) {
  2726. .sidebar.optional {
  2727. display: none;
  2728. }
  2729. }