Desktop markdown wiki app. Built with node, Electron Framework and AngularJS.

photon.css 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334
  1. /*!
  2. * =====================================================
  3. * Photon v0.1.1
  4. * Copyright 2015 Connor Sears
  5. * Licensed under MIT (https://github.com/connors/proton/blob/master/LICENSE)
  6. *
  7. * v0.1.1 designed by @connors.
  8. * =====================================================
  9. */
  10. @charset "UTF-8";
  11. audio,
  12. canvas,
  13. progress,
  14. video {
  15. vertical-align: baseline;
  16. }
  17. audio:not([controls]) {
  18. display: none;
  19. }
  20. a:active,
  21. a:hover {
  22. outline: 0;
  23. }
  24. abbr[title] {
  25. border-bottom: 1px dotted;
  26. }
  27. b,
  28. strong {
  29. font-weight: bold;
  30. }
  31. dfn {
  32. font-style: italic;
  33. }
  34. h1 {
  35. font-size: 2em;
  36. margin: 0.67em 0;
  37. }
  38. small {
  39. font-size: 80%;
  40. }
  41. sub,
  42. sup {
  43. font-size: 75%;
  44. line-height: 0;
  45. position: relative;
  46. vertical-align: baseline;
  47. }
  48. sup {
  49. top: -0.5em;
  50. }
  51. sub {
  52. bottom: -0.25em;
  53. }
  54. pre {
  55. overflow: auto;
  56. }
  57. code,
  58. kbd,
  59. pre,
  60. samp {
  61. font-family: monospace, monospace;
  62. font-size: 1em;
  63. }
  64. button,
  65. input,
  66. optgroup,
  67. select,
  68. textarea {
  69. color: inherit;
  70. font: inherit;
  71. margin: 0;
  72. }
  73. input[type="number"]::-webkit-inner-spin-button,
  74. input[type="number"]::-webkit-outer-spin-button {
  75. height: auto;
  76. }
  77. input[type="search"] {
  78. -webkit-appearance: textfield;
  79. box-sizing: content-box;
  80. }
  81. input[type="search"]::-webkit-search-cancel-button,
  82. input[type="search"]::-webkit-search-decoration {
  83. -webkit-appearance: none;
  84. }
  85. fieldset {
  86. border: 1px solid #c0c0c0;
  87. margin: 0 2px;
  88. padding: 0.35em 0.625em 0.75em;
  89. }
  90. legend {
  91. border: 0;
  92. padding: 0;
  93. }
  94. table {
  95. border-collapse: collapse;
  96. border-spacing: 0;
  97. }
  98. td,
  99. th {
  100. padding: 0;
  101. }
  102. * {
  103. cursor: default;
  104. -webkit-user-drag: text;
  105. -webkit-user-select: none;
  106. -webkit-box-sizing: border-box;
  107. box-sizing: border-box;
  108. }
  109. html {
  110. height: 100%;
  111. width: 100%;
  112. overflow: hidden;
  113. }
  114. body {
  115. height: 100%;
  116. padding: 0;
  117. margin: 0;
  118. font-family: system, -apple-system, ".SFNSDisplay-Regular", "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;
  119. font-size: 13px;
  120. line-height: 1.6;
  121. color: #333;
  122. background-color: transparent;
  123. }
  124. hr {
  125. margin: 15px 0;
  126. overflow: hidden;
  127. background: transparent;
  128. border: 0;
  129. border-bottom: 1px solid #ddd;
  130. }
  131. h1, h2, h3, h4, h5, h6 {
  132. margin-top: 20px;
  133. margin-bottom: 10px;
  134. font-weight: 500;
  135. white-space: nowrap;
  136. overflow: hidden;
  137. text-overflow: ellipsis;
  138. }
  139. h1 {
  140. font-size: 36px;
  141. }
  142. h2 {
  143. font-size: 30px;
  144. }
  145. h3 {
  146. font-size: 24px;
  147. }
  148. h4 {
  149. font-size: 18px;
  150. }
  151. h5 {
  152. font-size: 14px;
  153. }
  154. h6 {
  155. font-size: 12px;
  156. }
  157. .window {
  158. position: absolute;
  159. top: 0;
  160. right: 0;
  161. bottom: 0;
  162. left: 0;
  163. display: flex;
  164. flex-direction: column;
  165. background-color: #fff;
  166. }
  167. .window-content {
  168. position: relative;
  169. overflow-y: auto;
  170. display: flex;
  171. flex: 1;
  172. }
  173. .selectable-text {
  174. cursor: text;
  175. -webkit-user-select: text;
  176. }
  177. .text-center {
  178. text-align: center;
  179. }
  180. .text-right {
  181. text-align: right;
  182. }
  183. .text-left {
  184. text-align: left;
  185. }
  186. .pull-left {
  187. float: left;
  188. }
  189. .pull-right {
  190. float: right;
  191. }
  192. .padded {
  193. padding: 10px;
  194. }
  195. .padded-less {
  196. padding: 5px;
  197. }
  198. .padded-more {
  199. padding: 20px;
  200. }
  201. .padded-vertically {
  202. padding-top: 10px;
  203. padding-bottom: 10px;
  204. }
  205. .padded-vertically-less {
  206. padding-top: 5px;
  207. padding-bottom: 5px;
  208. }
  209. .padded-vertically-more {
  210. padding-top: 20px;
  211. padding-bottom: 20px;
  212. }
  213. .padded-horizontally {
  214. padding-right: 10px;
  215. padding-left: 10px;
  216. }
  217. .padded-horizontally-less {
  218. padding-right: 5px;
  219. padding-left: 5px;
  220. }
  221. .padded-horizontally-more {
  222. padding-right: 20px;
  223. padding-left: 20px;
  224. }
  225. .padded-top {
  226. padding-top: 10px;
  227. }
  228. .padded-top-less {
  229. padding-top: 5px;
  230. }
  231. .padded-top-more {
  232. padding-top: 20px;
  233. }
  234. .padded-bottom {
  235. padding-bottom: 10px;
  236. }
  237. .padded-bottom-less {
  238. padding-bottom: 5px;
  239. }
  240. .padded-bottom-more {
  241. padding-bottom: 20px;
  242. }
  243. .sidebar {
  244. background-color: #f5f5f4;
  245. }
  246. .clearfix:before, .clearfix:after {
  247. display: table;
  248. content: " ";
  249. }
  250. .clearfix:after {
  251. clear: both;
  252. }
  253. .btn {
  254. display: inline-block;
  255. padding: 3px 8px;
  256. margin-bottom: 0;
  257. font-size: 12px;
  258. line-height: 1.4;
  259. text-align: center;
  260. white-space: nowrap;
  261. vertical-align: middle;
  262. cursor: default;
  263. background-image: none;
  264. border: 1px solid transparent;
  265. border-radius: 4px;
  266. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
  267. -webkit-app-region: no-drag;
  268. }
  269. .btn:focus {
  270. outline: none;
  271. box-shadow: none;
  272. }
  273. .btn-mini {
  274. padding: 2px 6px;
  275. }
  276. .btn-large {
  277. padding: 6px 12px;
  278. }
  279. .btn-form {
  280. padding-right: 20px;
  281. padding-left: 20px;
  282. }
  283. .btn-default {
  284. color: #333;
  285. border-top-color: #c2c0c2;
  286. border-right-color: #c2c0c2;
  287. border-bottom-color: #a19fa1;
  288. border-left-color: #c2c0c2;
  289. background-color: #fcfcfc;
  290. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f1f1f1));
  291. background-image: -webkit-linear-gradient(top, #fcfcfc 0%, #f1f1f1 100%);
  292. background-image: linear-gradient(to bottom, #fcfcfc 0%, #f1f1f1 100%);
  293. }
  294. .btn-default:active {
  295. background-color: #ddd;
  296. background-image: none;
  297. }
  298. .btn-primary,
  299. .btn-positive,
  300. .btn-negative,
  301. .btn-warning {
  302. color: #fff;
  303. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  304. }
  305. .btn-primary {
  306. border-color: #388df8;
  307. border-bottom-color: #0866dc;
  308. background-color: #6eb4f7;
  309. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6eb4f7), color-stop(100%, #1a82fb));
  310. background-image: -webkit-linear-gradient(top, #6eb4f7 0%, #1a82fb 100%);
  311. background-image: linear-gradient(to bottom, #6eb4f7 0%, #1a82fb 100%);
  312. }
  313. .btn-primary:active {
  314. background-color: #3e9bf4;
  315. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e9bf4), color-stop(100%, #0469de));
  316. background-image: -webkit-linear-gradient(top, #3e9bf4 0%, #0469de 100%);
  317. background-image: linear-gradient(to bottom, #3e9bf4 0%, #0469de 100%);
  318. }
  319. .btn-positive {
  320. border-color: #29a03b;
  321. border-bottom-color: #248b34;
  322. background-color: #5bd46d;
  323. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bd46d), color-stop(100%, #29a03b));
  324. background-image: -webkit-linear-gradient(top, #5bd46d 0%, #29a03b 100%);
  325. background-image: linear-gradient(to bottom, #5bd46d 0%, #29a03b 100%);
  326. }
  327. .btn-positive:active {
  328. background-color: #34c84a;
  329. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #34c84a), color-stop(100%, #248b34));
  330. background-image: -webkit-linear-gradient(top, #34c84a 0%, #248b34 100%);
  331. background-image: linear-gradient(to bottom, #34c84a 0%, #248b34 100%);
  332. }
  333. .btn-negative {
  334. border-color: #fb2f29;
  335. border-bottom-color: #fb1710;
  336. background-color: #fd918d;
  337. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fd918d), color-stop(100%, #fb2f29));
  338. background-image: -webkit-linear-gradient(top, #fd918d 0%, #fb2f29 100%);
  339. background-image: linear-gradient(to bottom, #fd918d 0%, #fb2f29 100%);
  340. }
  341. .btn-negative:active {
  342. background-color: #fc605b;
  343. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fc605b), color-stop(100%, #fb1710));
  344. background-image: -webkit-linear-gradient(top, #fc605b 0%, #fb1710 100%);
  345. background-image: linear-gradient(to bottom, #fc605b 0%, #fb1710 100%);
  346. }
  347. .btn-warning {
  348. border-color: #fcaa0e;
  349. border-bottom-color: #ee9d02;
  350. background-color: #fece72;
  351. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fece72), color-stop(100%, #fcaa0e));
  352. background-image: -webkit-linear-gradient(top, #fece72 0%, #fcaa0e 100%);
  353. background-image: linear-gradient(to bottom, #fece72 0%, #fcaa0e 100%);
  354. }
  355. .btn-warning:active {
  356. background-color: #fdbc40;
  357. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdbc40), color-stop(100%, #ee9d02));
  358. background-image: -webkit-linear-gradient(top, #fdbc40 0%, #ee9d02 100%);
  359. background-image: linear-gradient(to bottom, #fdbc40 0%, #ee9d02 100%);
  360. }
  361. .btn .icon {
  362. float: left;
  363. width: 14px;
  364. height: 14px;
  365. margin-top: 1px;
  366. margin-bottom: 1px;
  367. color: #737475;
  368. font-size: 14px;
  369. line-height: 1;
  370. }
  371. .btn .icon-text {
  372. margin-right: 5px;
  373. }
  374. .btn-dropdown:after {
  375. font-family: "photon-entypo";
  376. margin-left: 5px;
  377. content: "";
  378. }
  379. .btn-group {
  380. position: relative;
  381. display: inline-block;
  382. vertical-align: middle;
  383. -webkit-app-region: no-drag;
  384. }
  385. .btn-group .btn {
  386. position: relative;
  387. float: left;
  388. }
  389. .btn-group .btn:focus, .btn-group .btn:active {
  390. z-index: 2;
  391. }
  392. .btn-group .btn.active {
  393. z-index: 3;
  394. }
  395. .btn-group .btn + .btn,
  396. .btn-group .btn + .btn-group,
  397. .btn-group .btn-group + .btn,
  398. .btn-group .btn-group + .btn-group {
  399. margin-left: -1px;
  400. }
  401. .btn-group > .btn:first-child {
  402. border-top-right-radius: 0;
  403. border-bottom-right-radius: 0;
  404. }
  405. .btn-group > .btn:last-child {
  406. border-top-left-radius: 0;
  407. border-bottom-left-radius: 0;
  408. }
  409. .btn-group > .btn:not(:first-child):not(:last-child) {
  410. border-radius: 0;
  411. }
  412. .btn-group .btn + .btn {
  413. border-left: 1px solid #c2c0c2;
  414. }
  415. .btn-group .btn + .btn.active {
  416. border-left: 0;
  417. }
  418. .btn-group .active {
  419. color: #fff;
  420. border: 1px solid transparent;
  421. background-color: #6d6c6d;
  422. background-image: none;
  423. }
  424. .btn-group .active .icon {
  425. color: #fff;
  426. }
  427. .toolbar {
  428. min-height: 22px;
  429. box-shadow: inset 0 1px 0 #f5f4f5;
  430. background-color: #e8e6e8;
  431. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e6e8), color-stop(100%, #d1cfd1));
  432. background-image: -webkit-linear-gradient(top, #e8e6e8 0%, #d1cfd1 100%);
  433. background-image: linear-gradient(to bottom, #e8e6e8 0%, #d1cfd1 100%);
  434. }
  435. .toolbar:before, .toolbar:after {
  436. display: table;
  437. content: " ";
  438. }
  439. .toolbar:after {
  440. clear: both;
  441. }
  442. .toolbar-header {
  443. border-bottom: 1px solid #c2c0c2;
  444. }
  445. .toolbar-header .title {
  446. margin-top: 1px;
  447. }
  448. .toolbar-footer {
  449. border-top: 1px solid #c2c0c2;
  450. -webkit-app-region: drag;
  451. }
  452. .toolbar-dark {
  453. box-shadow: none;
  454. background-color: #57acf5;
  455. }
  456. .toolbar-dark .title {
  457. text-shadow: none;
  458. color: #fff;
  459. }
  460. .title {
  461. margin: 0;
  462. font-size: 12px;
  463. font-weight: 400;
  464. text-align: center;
  465. color: #555;
  466. cursor: default;
  467. }
  468. .toolbar-borderless {
  469. border-top: 0;
  470. border-bottom: 0;
  471. }
  472. .toolbar-actions {
  473. margin-top: 4px;
  474. margin-bottom: 3px;
  475. padding-right: 3px;
  476. padding-left: 3px;
  477. padding-bottom: 3px;
  478. -webkit-app-region: drag;
  479. }
  480. .toolbar-actions:before, .toolbar-actions:after {
  481. display: table;
  482. content: " ";
  483. }
  484. .toolbar-actions:after {
  485. clear: both;
  486. }
  487. .toolbar-actions > .btn,
  488. .toolbar-actions > .btn-group {
  489. margin-left: 4px;
  490. margin-right: 4px;
  491. }
  492. label {
  493. display: inline-block;
  494. font-size: 13px;
  495. margin-bottom: 5px;
  496. white-space: nowrap;
  497. overflow: hidden;
  498. text-overflow: ellipsis;
  499. }
  500. input[type="search"] {
  501. box-sizing: border-box;
  502. }
  503. input[type="radio"],
  504. input[type="checkbox"] {
  505. margin: 4px 0 0;
  506. line-height: normal;
  507. }
  508. .form-control {
  509. display: block;
  510. width: 100%;
  511. min-height: 25px;
  512. padding: 5px 10px;
  513. font-size: 13px;
  514. line-height: 1.6;
  515. background-color: #fff;
  516. border: 1px solid #ddd;
  517. border-radius: 4px;
  518. outline: none;
  519. }
  520. .form-control:focus {
  521. border-color: #6db3fd;
  522. box-shadow: 3px 3px 0 #6db3fd, -3px -3px 0 #6db3fd, -3px 3px 0 #6db3fd, 3px -3px 0 #6db3fd;
  523. }
  524. textarea {
  525. height: auto;
  526. }
  527. .form-group {
  528. margin-bottom: 10px;
  529. }
  530. .radio,
  531. .checkbox {
  532. position: relative;
  533. display: block;
  534. margin-top: 10px;
  535. margin-bottom: 10px;
  536. }
  537. .radio label,
  538. .checkbox label {
  539. padding-left: 20px;
  540. margin-bottom: 0;
  541. font-weight: normal;
  542. }
  543. .radio input[type="radio"],
  544. .radio-inline input[type="radio"],
  545. .checkbox input[type="checkbox"],
  546. .checkbox-inline input[type="checkbox"] {
  547. position: absolute;
  548. margin-left: -20px;
  549. margin-top: 4px;
  550. }
  551. .form-actions .btn {
  552. margin-right: 10px;
  553. }
  554. .form-actions .btn:last-child {
  555. margin-right: 0;
  556. }
  557. .pane-group {
  558. position: absolute;
  559. top: 0;
  560. right: 0;
  561. bottom: 0;
  562. left: 0;
  563. display: flex;
  564. }
  565. .pane {
  566. position: relative;
  567. overflow-y: auto;
  568. flex: 1;
  569. border-left: 1px solid #ddd;
  570. }
  571. .pane:first-child {
  572. border-left: 0;
  573. }
  574. .pane-sm {
  575. max-width: 220px;
  576. min-width: 150px;
  577. }
  578. .pane-mini {
  579. width: 80px;
  580. flex: none;
  581. }
  582. .pane-one-fourth {
  583. width: 25%;
  584. flex: none;
  585. }
  586. .pane-one-third {
  587. width: 33.3%;
  588. }
  589. img {
  590. -webkit-user-drag: text;
  591. }
  592. .img-circle {
  593. border-radius: 50%;
  594. }
  595. .img-rounded {
  596. border-radius: 4px;
  597. }
  598. .list-group {
  599. width: 100%;
  600. list-style: none;
  601. margin: 0;
  602. padding: 0;
  603. }
  604. .list-group * {
  605. margin: 0;
  606. white-space: nowrap;
  607. overflow: hidden;
  608. text-overflow: ellipsis;
  609. }
  610. .list-group-item {
  611. padding: 10px;
  612. font-size: 12px;
  613. color: #414142;
  614. border-top: 1px solid #ddd;
  615. }
  616. .list-group-item:first-child {
  617. border-top: 0;
  618. }
  619. .list-group-item:active, .list-group-item.selected {
  620. color: #fff;
  621. background-color: #116cd6;
  622. }
  623. .list-group-header {
  624. padding: 10px;
  625. }
  626. .media-object {
  627. margin-top: 3px;
  628. }
  629. .media-object.pull-left {
  630. margin-right: 10px;
  631. }
  632. .media-object.pull-right {
  633. margin-left: 10px;
  634. }
  635. .media-body {
  636. overflow: hidden;
  637. }
  638. .nav-group {
  639. font-size: 14px;
  640. }
  641. .nav-group-item {
  642. padding: 2px 10px 2px 25px;
  643. display: block;
  644. color: #333;
  645. text-decoration: none;
  646. white-space: nowrap;
  647. overflow: hidden;
  648. text-overflow: ellipsis;
  649. }
  650. .nav-group-item:active, .nav-group-item.active {
  651. background-color: #dcdfe1;
  652. }
  653. .nav-group-item .icon {
  654. width: 19px;
  655. height: 18px;
  656. float: left;
  657. color: #737475;
  658. margin-top: -3px;
  659. margin-right: 7px;
  660. font-size: 18px;
  661. text-align: center;
  662. }
  663. .nav-group-title {
  664. margin: 0;
  665. padding: 10px 10px 2px;
  666. font-size: 12px;
  667. font-weight: 500;
  668. color: #666666;
  669. }
  670. @font-face {
  671. font-family: "photon-entypo";
  672. src: url("../fonts/photon-entypo.eot");
  673. src: url("../fonts/photon-entypo.eot?#iefix") format("eot"), url("../fonts/photon-entypo.woff") format("woff"), url("../fonts/photon-entypo.ttf") format("truetype");
  674. font-weight: normal;
  675. font-style: normal;
  676. }
  677. .icon:before {
  678. position: relative;
  679. display: inline-block;
  680. font-family: "photon-entypo";
  681. speak: none;
  682. font-size: 100%;
  683. font-style: normal;
  684. font-weight: normal;
  685. font-variant: normal;
  686. text-transform: none;
  687. line-height: 1;
  688. -webkit-font-smoothing: antialiased;
  689. -moz-osx-font-smoothing: grayscale;
  690. }
  691. .icon-note:before {
  692. content: '\e800';
  693. }
  694. /* '' */
  695. .icon-note-beamed:before {
  696. content: '\e801';
  697. }
  698. /* '' */
  699. .icon-music:before {
  700. content: '\e802';
  701. }
  702. /* '' */
  703. .icon-search:before {
  704. content: '\e803';
  705. }
  706. /* '' */
  707. .icon-flashlight:before {
  708. content: '\e804';
  709. }
  710. /* '' */
  711. .icon-mail:before {
  712. content: '\e805';
  713. }
  714. /* '' */
  715. .icon-heart:before {
  716. content: '\e806';
  717. }
  718. /* '' */
  719. .icon-heart-empty:before {
  720. content: '\e807';
  721. }
  722. /* '' */
  723. .icon-star:before {
  724. content: '\e808';
  725. }
  726. /* '' */
  727. .icon-star-empty:before {
  728. content: '\e809';
  729. }
  730. /* '' */
  731. .icon-user:before {
  732. content: '\e80a';
  733. }
  734. /* '' */
  735. .icon-users:before {
  736. content: '\e80b';
  737. }
  738. /* '' */
  739. .icon-user-add:before {
  740. content: '\e80c';
  741. }
  742. /* '' */
  743. .icon-video:before {
  744. content: '\e80d';
  745. }
  746. /* '' */
  747. .icon-picture:before {
  748. content: '\e80e';
  749. }
  750. /* '' */
  751. .icon-camera:before {
  752. content: '\e80f';
  753. }
  754. /* '' */
  755. .icon-layout:before {
  756. content: '\e810';
  757. }
  758. /* '' */
  759. .icon-menu:before {
  760. content: '\e811';
  761. }
  762. /* '' */
  763. .icon-check:before {
  764. content: '\e812';
  765. }
  766. /* '' */
  767. .icon-cancel:before {
  768. content: '\e813';
  769. }
  770. /* '' */
  771. .icon-cancel-circled:before {
  772. content: '\e814';
  773. }
  774. /* '' */
  775. .icon-cancel-squared:before {
  776. content: '\e815';
  777. }
  778. /* '' */
  779. .icon-plus:before {
  780. content: '\e816';
  781. }
  782. /* '' */
  783. .icon-plus-circled:before {
  784. content: '\e817';
  785. }
  786. /* '' */
  787. .icon-plus-squared:before {
  788. content: '\e818';
  789. }
  790. /* '' */
  791. .icon-minus:before {
  792. content: '\e819';
  793. }
  794. /* '' */
  795. .icon-minus-circled:before {
  796. content: '\e81a';
  797. }
  798. /* '' */
  799. .icon-minus-squared:before {
  800. content: '\e81b';
  801. }
  802. /* '' */
  803. .icon-help:before {
  804. content: '\e81c';
  805. }
  806. /* '' */
  807. .icon-help-circled:before {
  808. content: '\e81d';
  809. }
  810. /* '' */
  811. .icon-info:before {
  812. content: '\e81e';
  813. }
  814. /* '' */
  815. .icon-info-circled:before {
  816. content: '\e81f';
  817. }
  818. /* '' */
  819. .icon-back:before {
  820. content: '\e820';
  821. }
  822. /* '' */
  823. .icon-home:before {
  824. content: '\e821';
  825. }
  826. /* '' */
  827. .icon-link:before {
  828. content: '\e822';
  829. }
  830. /* '' */
  831. .icon-attach:before {
  832. content: '\e823';
  833. }
  834. /* '' */
  835. .icon-lock:before {
  836. content: '\e824';
  837. }
  838. /* '' */
  839. .icon-lock-open:before {
  840. content: '\e825';
  841. }
  842. /* '' */
  843. .icon-eye:before {
  844. content: '\e826';
  845. }
  846. /* '' */
  847. .icon-tag:before {
  848. content: '\e827';
  849. }
  850. /* '' */
  851. .icon-bookmark:before {
  852. content: '\e828';
  853. }
  854. /* '' */
  855. .icon-bookmarks:before {
  856. content: '\e829';
  857. }
  858. /* '' */
  859. .icon-flag:before {
  860. content: '\e82a';
  861. }
  862. /* '' */
  863. .icon-thumbs-up:before {
  864. content: '\e82b';
  865. }
  866. /* '' */
  867. .icon-thumbs-down:before {
  868. content: '\e82c';
  869. }
  870. /* '' */
  871. .icon-download:before {
  872. content: '\e82d';
  873. }
  874. /* '' */
  875. .icon-upload:before {
  876. content: '\e82e';
  877. }
  878. /* '' */
  879. .icon-upload-cloud:before {
  880. content: '\e82f';
  881. }
  882. /* '' */
  883. .icon-reply:before {
  884. content: '\e830';
  885. }
  886. /* '' */
  887. .icon-reply-all:before {
  888. content: '\e831';
  889. }
  890. /* '' */
  891. .icon-forward:before {
  892. content: '\e832';
  893. }
  894. /* '' */
  895. .icon-quote:before {
  896. content: '\e833';
  897. }
  898. /* '' */
  899. .icon-code:before {
  900. content: '\e834';
  901. }
  902. /* '' */
  903. .icon-export:before {
  904. content: '\e835';
  905. }
  906. /* '' */
  907. .icon-pencil:before {
  908. content: '\e836';
  909. }
  910. /* '' */
  911. .icon-feather:before {
  912. content: '\e837';
  913. }
  914. /* '' */
  915. .icon-print:before {
  916. content: '\e838';
  917. }
  918. /* '' */
  919. .icon-retweet:before {
  920. content: '\e839';
  921. }
  922. /* '' */
  923. .icon-keyboard:before {
  924. content: '\e83a';
  925. }
  926. /* '' */
  927. .icon-comment:before {
  928. content: '\e83b';
  929. }
  930. /* '' */
  931. .icon-chat:before {
  932. content: '\e83c';
  933. }
  934. /* '' */
  935. .icon-bell:before {
  936. content: '\e83d';
  937. }
  938. /* '' */
  939. .icon-attention:before {
  940. content: '\e83e';
  941. }
  942. /* '' */
  943. .icon-alert:before {
  944. content: '\e83f';
  945. }
  946. /* '' */
  947. .icon-vcard:before {
  948. content: '\e840';
  949. }
  950. /* '' */
  951. .icon-address:before {
  952. content: '\e841';
  953. }
  954. /* '' */
  955. .icon-location:before {
  956. content: '\e842';
  957. }
  958. /* '' */
  959. .icon-map:before {
  960. content: '\e843';
  961. }
  962. /* '' */
  963. .icon-direction:before {
  964. content: '\e844';
  965. }
  966. /* '' */
  967. .icon-compass:before {
  968. content: '\e845';
  969. }
  970. /* '' */
  971. .icon-cup:before {
  972. content: '\e846';
  973. }
  974. /* '' */
  975. .icon-trash:before {
  976. content: '\e847';
  977. }
  978. /* '' */
  979. .icon-doc:before {
  980. content: '\e848';
  981. }
  982. /* '' */
  983. .icon-docs:before {
  984. content: '\e849';
  985. }
  986. /* '' */
  987. .icon-doc-landscape:before {
  988. content: '\e84a';
  989. }
  990. /* '' */
  991. .icon-doc-text:before {
  992. content: '\e84b';
  993. }
  994. /* '' */
  995. .icon-doc-text-inv:before {
  996. content: '\e84c';
  997. }
  998. /* '' */
  999. .icon-newspaper:before {
  1000. content: '\e84d';
  1001. }
  1002. /* '' */
  1003. .icon-book-open:before {
  1004. content: '\e84e';
  1005. }
  1006. /* '' */
  1007. .icon-book:before {
  1008. content: '\e84f';
  1009. }
  1010. /* '' */
  1011. .icon-folder:before {
  1012. content: '\e850';
  1013. }
  1014. /* '' */
  1015. .icon-archive:before {
  1016. content: '\e851';
  1017. }
  1018. /* '' */
  1019. .icon-box:before {
  1020. content: '\e852';
  1021. }
  1022. /* '' */
  1023. .icon-rss:before {
  1024. content: '\e853';
  1025. }
  1026. /* '' */
  1027. .icon-phone:before {
  1028. content: '\e854';
  1029. }
  1030. /* '' */
  1031. .icon-cog:before {
  1032. content: '\e855';
  1033. }
  1034. /* '' */
  1035. .icon-tools:before {
  1036. content: '\e856';
  1037. }
  1038. /* '' */
  1039. .icon-share:before {
  1040. content: '\e857';
  1041. }
  1042. /* '' */
  1043. .icon-shareable:before {
  1044. content: '\e858';
  1045. }
  1046. /* '' */
  1047. .icon-basket:before {
  1048. content: '\e859';
  1049. }
  1050. /* '' */
  1051. .icon-bag:before {
  1052. content: '\e85a';
  1053. }
  1054. /* '' */
  1055. .icon-calendar:before {
  1056. content: '\e85b';
  1057. }
  1058. /* '' */
  1059. .icon-login:before {
  1060. content: '\e85c';
  1061. }
  1062. /* '' */
  1063. .icon-logout:before {
  1064. content: '\e85d';
  1065. }
  1066. /* '' */
  1067. .icon-mic:before {
  1068. content: '\e85e';
  1069. }
  1070. /* '' */
  1071. .icon-mute:before {
  1072. content: '\e85f';
  1073. }
  1074. /* '' */
  1075. .icon-sound:before {
  1076. content: '\e860';
  1077. }
  1078. /* '' */
  1079. .icon-volume:before {
  1080. content: '\e861';
  1081. }
  1082. /* '' */
  1083. .icon-clock:before {
  1084. content: '\e862';
  1085. }
  1086. /* '' */
  1087. .icon-hourglass:before {
  1088. content: '\e863';
  1089. }
  1090. /* '' */
  1091. .icon-lamp:before {
  1092. content: '\e864';
  1093. }
  1094. /* '' */
  1095. .icon-light-down:before {
  1096. content: '\e865';
  1097. }
  1098. /* '' */
  1099. .icon-light-up:before {
  1100. content: '\e866';
  1101. }
  1102. /* '' */
  1103. .icon-adjust:before {
  1104. content: '\e867';
  1105. }
  1106. /* '' */
  1107. .icon-block:before {
  1108. content: '\e868';
  1109. }
  1110. /* '' */
  1111. .icon-resize-full:before {
  1112. content: '\e869';
  1113. }
  1114. /* '' */
  1115. .icon-resize-small:before {
  1116. content: '\e86a';
  1117. }
  1118. /* '' */
  1119. .icon-popup:before {
  1120. content: '\e86b';
  1121. }
  1122. /* '' */
  1123. .icon-publish:before {
  1124. content: '\e86c';
  1125. }
  1126. /* '' */
  1127. .icon-window:before {
  1128. content: '\e86d';
  1129. }
  1130. /* '' */
  1131. .icon-arrow-combo:before {
  1132. content: '\e86e';
  1133. }
  1134. /* '' */
  1135. .icon-down-circled:before {
  1136. content: '\e86f';
  1137. }
  1138. /* '' */
  1139. .icon-left-circled:before {
  1140. content: '\e870';
  1141. }
  1142. /* '' */
  1143. .icon-right-circled:before {
  1144. content: '\e871';
  1145. }
  1146. /* '' */
  1147. .icon-up-circled:before {
  1148. content: '\e872';
  1149. }
  1150. /* '' */
  1151. .icon-down-open:before {
  1152. content: '\e873';
  1153. }
  1154. /* '' */
  1155. .icon-left-open:before {
  1156. content: '\e874';
  1157. }
  1158. /* '' */
  1159. .icon-right-open:before {
  1160. content: '\e875';
  1161. }
  1162. /* '' */
  1163. .icon-up-open:before {
  1164. content: '\e876';
  1165. }
  1166. /* '' */
  1167. .icon-down-open-mini:before {
  1168. content: '\e877';
  1169. }
  1170. /* '' */
  1171. .icon-left-open-mini:before {
  1172. content: '\e878';
  1173. }
  1174. /* '' */
  1175. .icon-right-open-mini:before {
  1176. content: '\e879';
  1177. }
  1178. /* '' */
  1179. .icon-up-open-mini:before {
  1180. content: '\e87a';
  1181. }
  1182. /* '' */
  1183. .icon-down-open-big:before {
  1184. content: '\e87b';
  1185. }
  1186. /* '' */
  1187. .icon-left-open-big:before {
  1188. content: '\e87c';
  1189. }
  1190. /* '' */
  1191. .icon-right-open-big:before {
  1192. content: '\e87d';
  1193. }
  1194. /* '' */
  1195. .icon-up-open-big:before {
  1196. content: '\e87e';
  1197. }
  1198. /* '' */
  1199. .icon-down:before {
  1200. content: '\e87f';
  1201. }
  1202. /* '' */
  1203. .icon-left:before {
  1204. content: '\e880';
  1205. }
  1206. /* '' */
  1207. .icon-right:before {
  1208. content: '\e881';
  1209. }
  1210. /* '' */
  1211. .icon-up:before {
  1212. content: '\e882';
  1213. }
  1214. /* '' */
  1215. .icon-down-dir:before {
  1216. content: '\e883';
  1217. }
  1218. /* '' */
  1219. .icon-left-dir:before {
  1220. content: '\e884';
  1221. }
  1222. /* '' */
  1223. .icon-right-dir:before {
  1224. content: '\e885';
  1225. }
  1226. /* '' */
  1227. .icon-up-dir:before {
  1228. content: '\e886';
  1229. }
  1230. /* '' */
  1231. .icon-down-bold:before {
  1232. content: '\e887';
  1233. }
  1234. /* '' */
  1235. .icon-left-bold:before {
  1236. content: '\e888';
  1237. }
  1238. /* '' */
  1239. .icon-right-bold:before {
  1240. content: '\e889';
  1241. }
  1242. /* '' */
  1243. .icon-up-bold:before {
  1244. content: '\e88a';
  1245. }
  1246. /* '' */
  1247. .icon-down-thin:before {
  1248. content: '\e88b';
  1249. }
  1250. /* '' */
  1251. .icon-left-thin:before {
  1252. content: '\e88c';
  1253. }
  1254. /* '' */
  1255. .icon-right-thin:before {
  1256. content: '\e88d';
  1257. }
  1258. /* '' */
  1259. .icon-up-thin:before {
  1260. content: '\e88e';
  1261. }
  1262. /* '' */
  1263. .icon-ccw:before {
  1264. content: '\e88f';
  1265. }
  1266. /* '' */
  1267. .icon-cw:before {
  1268. content: '\e890';
  1269. }
  1270. /* '' */
  1271. .icon-arrows-ccw:before {
  1272. content: '\e891';
  1273. }
  1274. /* '' */
  1275. .icon-level-down:before {
  1276. content: '\e892';
  1277. }
  1278. /* '' */
  1279. .icon-level-up:before {
  1280. content: '\e893';
  1281. }
  1282. /* '' */
  1283. .icon-shuffle:before {
  1284. content: '\e894';
  1285. }
  1286. /* '' */
  1287. .icon-loop:before {
  1288. content: '\e895';
  1289. }
  1290. /* '' */
  1291. .icon-switch:before {
  1292. content: '\e896';
  1293. }
  1294. /* '' */
  1295. .icon-play:before {
  1296. content: '\e897';
  1297. }
  1298. /* '' */
  1299. .icon-stop:before {
  1300. content: '\e898';
  1301. }
  1302. /* '' */
  1303. .icon-pause:before {
  1304. content: '\e899';
  1305. }
  1306. /* '' */
  1307. .icon-record:before {
  1308. content: '\e89a';
  1309. }
  1310. /* '' */
  1311. .icon-to-end:before {
  1312. content: '\e89b';
  1313. }
  1314. /* '' */
  1315. .icon-to-start:before {
  1316. content: '\e89c';
  1317. }
  1318. /* '' */
  1319. .icon-fast-forward:before {
  1320. content: '\e89d';
  1321. }
  1322. /* '' */
  1323. .icon-fast-backward:before {
  1324. content: '\e89e';
  1325. }
  1326. /* '' */
  1327. .icon-progress-0:before {
  1328. content: '\e89f';
  1329. }
  1330. /* '' */
  1331. .icon-progress-1:before {
  1332. content: '\e8a0';
  1333. }
  1334. /* '' */
  1335. .icon-progress-2:before {
  1336. content: '\e8a1';
  1337. }
  1338. /* '' */
  1339. .icon-progress-3:before {
  1340. content: '\e8a2';
  1341. }
  1342. /* '' */
  1343. .icon-target:before {
  1344. content: '\e8a3';
  1345. }
  1346. /* '' */
  1347. .icon-palette:before {
  1348. content: '\e8a4';
  1349. }
  1350. /* '' */
  1351. .icon-list:before {
  1352. content: '\e8a5';
  1353. }
  1354. /* '' */
  1355. .icon-list-add:before {
  1356. content: '\e8a6';
  1357. }
  1358. /* '' */
  1359. .icon-signal:before {
  1360. content: '\e8a7';
  1361. }
  1362. /* '' */
  1363. .icon-trophy:before {
  1364. content: '\e8a8';
  1365. }
  1366. /* '' */
  1367. .icon-battery:before {
  1368. content: '\e8a9';
  1369. }
  1370. /* '' */
  1371. .icon-back-in-time:before {
  1372. content: '\e8aa';
  1373. }
  1374. /* '' */
  1375. .icon-monitor:before {
  1376. content: '\e8ab';
  1377. }
  1378. /* '' */
  1379. .icon-mobile:before {
  1380. content: '\e8ac';
  1381. }
  1382. /* '' */
  1383. .icon-network:before {
  1384. content: '\e8ad';
  1385. }
  1386. /* '' */
  1387. .icon-cd:before {
  1388. content: '\e8ae';
  1389. }
  1390. /* '' */
  1391. .icon-inbox:before {
  1392. content: '\e8af';
  1393. }
  1394. /* '' */
  1395. .icon-install:before {
  1396. content: '\e8b0';
  1397. }
  1398. /* '' */
  1399. .icon-globe:before {
  1400. content: '\e8b1';
  1401. }
  1402. /* '' */
  1403. .icon-cloud:before {
  1404. content: '\e8b2';
  1405. }
  1406. /* '' */
  1407. .icon-cloud-thunder:before {
  1408. content: '\e8b3';
  1409. }
  1410. /* '' */
  1411. .icon-flash:before {
  1412. content: '\e8b4';
  1413. }
  1414. /* '' */
  1415. .icon-moon:before {
  1416. content: '\e8b5';
  1417. }
  1418. /* '' */
  1419. .icon-flight:before {
  1420. content: '\e8b6';
  1421. }
  1422. /* '' */
  1423. .icon-paper-plane:before {
  1424. content: '\e8b7';
  1425. }
  1426. /* '' */
  1427. .icon-leaf:before {
  1428. content: '\e8b8';
  1429. }
  1430. /* '' */
  1431. .icon-lifebuoy:before {
  1432. content: '\e8b9';
  1433. }
  1434. /* '' */
  1435. .icon-mouse:before {
  1436. content: '\e8ba';
  1437. }
  1438. /* '' */
  1439. .icon-briefcase:before {
  1440. content: '\e8bb';
  1441. }
  1442. /* '' */
  1443. .icon-suitcase:before {
  1444. content: '\e8bc';
  1445. }
  1446. /* '' */
  1447. .icon-dot:before {
  1448. content: '\e8bd';
  1449. }
  1450. /* '' */
  1451. .icon-dot-2:before {
  1452. content: '\e8be';
  1453. }
  1454. /* '' */
  1455. .icon-dot-3:before {
  1456. content: '\e8bf';
  1457. }
  1458. /* '' */
  1459. .icon-brush:before {
  1460. content: '\e8c0';
  1461. }
  1462. /* '' */
  1463. .icon-magnet:before {
  1464. content: '\e8c1';
  1465. }
  1466. /* '' */
  1467. .icon-infinity:before {
  1468. content: '\e8c2';
  1469. }
  1470. /* '' */
  1471. .icon-erase:before {
  1472. content: '\e8c3';
  1473. }
  1474. /* '' */
  1475. .icon-chart-pie:before {
  1476. content: '\e8c4';
  1477. }
  1478. /* '' */
  1479. .icon-chart-line:before {
  1480. content: '\e8c5';
  1481. }
  1482. /* '' */
  1483. .icon-chart-bar:before {
  1484. content: '\e8c6';
  1485. }
  1486. /* '' */
  1487. .icon-chart-area:before {
  1488. content: '\e8c7';
  1489. }
  1490. /* '' */
  1491. .icon-tape:before {
  1492. content: '\e8c8';
  1493. }
  1494. /* '' */
  1495. .icon-graduation-cap:before {
  1496. content: '\e8c9';
  1497. }
  1498. /* '' */
  1499. .icon-language:before {
  1500. content: '\e8ca';
  1501. }
  1502. /* '' */
  1503. .icon-ticket:before {
  1504. content: '\e8cb';
  1505. }
  1506. /* '' */
  1507. .icon-water:before {
  1508. content: '\e8cc';
  1509. }
  1510. /* '' */
  1511. .icon-droplet:before {
  1512. content: '\e8cd';
  1513. }
  1514. /* '' */
  1515. .icon-air:before {
  1516. content: '\e8ce';
  1517. }
  1518. /* '' */
  1519. .icon-credit-card:before {
  1520. content: '\e8cf';
  1521. }
  1522. /* '' */
  1523. .icon-floppy:before {
  1524. content: '\e8d0';
  1525. }
  1526. /* '' */
  1527. .icon-clipboard:before {
  1528. content: '\e8d1';
  1529. }
  1530. /* '' */
  1531. .icon-megaphone:before {
  1532. content: '\e8d2';
  1533. }
  1534. /* '' */
  1535. .icon-database:before {
  1536. content: '\e8d3';
  1537. }
  1538. /* '' */
  1539. .icon-drive:before {
  1540. content: '\e8d4';
  1541. }
  1542. /* '' */
  1543. .icon-bucket:before {
  1544. content: '\e8d5';
  1545. }
  1546. /* '' */
  1547. .icon-thermometer:before {
  1548. content: '\e8d6';
  1549. }
  1550. /* '' */
  1551. .icon-key:before {
  1552. content: '\e8d7';
  1553. }
  1554. /* '' */
  1555. .icon-flow-cascade:before {
  1556. content: '\e8d8';
  1557. }
  1558. /* '' */
  1559. .icon-flow-branch:before {
  1560. content: '\e8d9';
  1561. }
  1562. /* '' */
  1563. .icon-flow-tree:before {
  1564. content: '\e8da';
  1565. }
  1566. /* '' */
  1567. .icon-flow-line:before {
  1568. content: '\e8db';
  1569. }
  1570. /* '' */
  1571. .icon-flow-parallel:before {
  1572. content: '\e8dc';
  1573. }
  1574. /* '' */
  1575. .icon-rocket:before {
  1576. content: '\e8dd';
  1577. }
  1578. /* '' */
  1579. .icon-gauge:before {
  1580. content: '\e8de';
  1581. }
  1582. /* '' */
  1583. .icon-traffic-cone:before {
  1584. content: '\e8df';
  1585. }
  1586. /* '' */
  1587. .icon-cc:before {
  1588. content: '\e8e0';
  1589. }
  1590. /* '' */
  1591. .icon-cc-by:before {
  1592. content: '\e8e1';
  1593. }
  1594. /* '' */
  1595. .icon-cc-nc:before {
  1596. content: '\e8e2';
  1597. }
  1598. /* '' */
  1599. .icon-cc-nc-eu:before {
  1600. content: '\e8e3';
  1601. }
  1602. /* '' */
  1603. .icon-cc-nc-jp:before {
  1604. content: '\e8e4';
  1605. }
  1606. /* '' */
  1607. .icon-cc-sa:before {
  1608. content: '\e8e5';
  1609. }
  1610. /* '' */
  1611. .icon-cc-nd:before {
  1612. content: '\e8e6';
  1613. }
  1614. /* '' */
  1615. .icon-cc-pd:before {
  1616. content: '\e8e7';
  1617. }
  1618. /* '' */
  1619. .icon-cc-zero:before {
  1620. content: '\e8e8';
  1621. }
  1622. /* '' */
  1623. .icon-cc-share:before {
  1624. content: '\e8e9';
  1625. }
  1626. /* '' */
  1627. .icon-cc-remix:before {
  1628. content: '\e8ea';
  1629. }
  1630. /* '' */
  1631. .icon-github:before {
  1632. content: '\e8eb';
  1633. }
  1634. /* '' */
  1635. .icon-github-circled:before {
  1636. content: '\e8ec';
  1637. }
  1638. /* '' */
  1639. .icon-flickr:before {
  1640. content: '\e8ed';
  1641. }
  1642. /* '' */
  1643. .icon-flickr-circled:before {
  1644. content: '\e8ee';
  1645. }
  1646. /* '' */
  1647. .icon-vimeo:before {
  1648. content: '\e8ef';
  1649. }
  1650. /* '' */
  1651. .icon-vimeo-circled:before {
  1652. content: '\e8f0';
  1653. }
  1654. /* '' */
  1655. .icon-twitter:before {
  1656. content: '\e8f1';
  1657. }
  1658. /* '' */
  1659. .icon-twitter-circled:before {
  1660. content: '\e8f2';
  1661. }
  1662. /* '' */
  1663. .icon-facebook:before {
  1664. content: '\e8f3';
  1665. }
  1666. /* '' */
  1667. .icon-facebook-circled:before {
  1668. content: '\e8f4';
  1669. }
  1670. /* '' */
  1671. .icon-facebook-squared:before {
  1672. content: '\e8f5';
  1673. }
  1674. /* '' */
  1675. .icon-gplus:before {
  1676. content: '\e8f6';
  1677. }
  1678. /* '' */
  1679. .icon-gplus-circled:before {
  1680. content: '\e8f7';
  1681. }
  1682. /* '' */
  1683. .icon-pinterest:before {
  1684. content: '\e8f8';
  1685. }
  1686. /* '' */
  1687. .icon-pinterest-circled:before {
  1688. content: '\e8f9';
  1689. }
  1690. /* '' */
  1691. .icon-tumblr:before {
  1692. content: '\e8fa';
  1693. }
  1694. /* '' */
  1695. .icon-tumblr-circled:before {
  1696. content: '\e8fb';
  1697. }
  1698. /* '' */
  1699. .icon-linkedin:before {
  1700. content: '\e8fc';
  1701. }
  1702. /* '' */
  1703. .icon-linkedin-circled:before {
  1704. content: '\e8fd';
  1705. }
  1706. /* '' */
  1707. .icon-dribbble:before {
  1708. content: '\e8fe';
  1709. }
  1710. /* '' */
  1711. .icon-dribbble-circled:before {
  1712. content: '\e8ff';
  1713. }
  1714. /* '' */
  1715. .icon-stumbleupon:before {
  1716. content: '\e900';
  1717. }
  1718. /* '' */
  1719. .icon-stumbleupon-circled:before {
  1720. content: '\e901';
  1721. }
  1722. /* '' */
  1723. .icon-lastfm:before {
  1724. content: '\e902';
  1725. }
  1726. /* '' */
  1727. .icon-lastfm-circled:before {
  1728. content: '\e903';
  1729. }
  1730. /* '' */
  1731. .icon-rdio:before {
  1732. content: '\e904';
  1733. }
  1734. /* '' */
  1735. .icon-rdio-circled:before {
  1736. content: '\e905';
  1737. }
  1738. /* '' */
  1739. .icon-spotify:before {
  1740. content: '\e906';
  1741. }
  1742. /* '' */
  1743. .icon-spotify-circled:before {
  1744. content: '\e907';
  1745. }
  1746. /* '' */
  1747. .icon-qq:before {
  1748. content: '\e908';
  1749. }
  1750. /* '' */
  1751. .icon-instagram:before {
  1752. content: '\e909';
  1753. }
  1754. /* '' */
  1755. .icon-dropbox:before {
  1756. content: '\e90a';
  1757. }
  1758. /* '' */
  1759. .icon-evernote:before {
  1760. content: '\e90b';
  1761. }
  1762. /* '' */
  1763. .icon-flattr:before {
  1764. content: '\e90c';
  1765. }
  1766. /* '' */
  1767. .icon-skype:before {
  1768. content: '\e90d';
  1769. }
  1770. /* '' */
  1771. .icon-skype-circled:before {
  1772. content: '\e90e';
  1773. }
  1774. /* '' */
  1775. .icon-renren:before {
  1776. content: '\e90f';
  1777. }
  1778. /* '' */
  1779. .icon-sina-weibo:before {
  1780. content: '\e910';
  1781. }
  1782. /* '' */
  1783. .icon-paypal:before {
  1784. content: '\e911';
  1785. }
  1786. /* '' */
  1787. .icon-picasa:before {
  1788. content: '\e912';
  1789. }
  1790. /* '' */
  1791. .icon-soundcloud:before {
  1792. content: '\e913';
  1793. }
  1794. /* '' */
  1795. .icon-mixi:before {
  1796. content: '\e914';
  1797. }
  1798. /* '' */
  1799. .icon-behance:before {
  1800. content: '\e915';
  1801. }
  1802. /* '' */
  1803. .icon-google-circles:before {
  1804. content: '\e916';
  1805. }
  1806. /* '' */
  1807. .icon-vkontakte:before {
  1808. content: '\e917';
  1809. }
  1810. /* '' */
  1811. .icon-smashing:before {
  1812. content: '\e918';
  1813. }
  1814. /* '' */
  1815. .icon-sweden:before {
  1816. content: '\e919';
  1817. }
  1818. /* '' */
  1819. .icon-db-shape:before {
  1820. content: '\e91a';
  1821. }
  1822. /* '' */
  1823. .icon-logo-db:before {
  1824. content: '\e91b';
  1825. }
  1826. /* '' */
  1827. table {
  1828. width: 100%;
  1829. border: 0;
  1830. border-collapse: separate;
  1831. font-size: 12px;
  1832. text-align: left;
  1833. }
  1834. thead {
  1835. background-color: #f5f5f4;
  1836. }
  1837. tbody {
  1838. background-color: #fff;
  1839. }
  1840. .table-striped tr:nth-child(even) {
  1841. background-color: #f5f5f4;
  1842. }
  1843. tr:active,
  1844. .table-striped tr:active:nth-child(even) {
  1845. color: #fff;
  1846. background-color: #116cd6;
  1847. }
  1848. thead tr:active {
  1849. color: #333;
  1850. background-color: #f5f5f4;
  1851. }
  1852. th {
  1853. font-weight: normal;
  1854. border-right: 1px solid #ddd;
  1855. border-bottom: 1px solid #ddd;
  1856. }
  1857. th,
  1858. td {
  1859. padding: 2px 15px;
  1860. white-space: nowrap;
  1861. overflow: hidden;
  1862. text-overflow: ellipsis;
  1863. }
  1864. th:last-child,
  1865. td:last-child {
  1866. border-right: 0;
  1867. }
  1868. .tab-group {
  1869. margin-top: -1px;
  1870. display: flex;
  1871. border-top: 1px solid #989698;
  1872. border-bottom: 1px solid #989698;
  1873. }
  1874. .tab-item {
  1875. position: relative;
  1876. flex: 1;
  1877. padding: 3px;
  1878. font-size: 12px;
  1879. text-align: center;
  1880. border-left: 1px solid #989698;
  1881. background-color: #b8b6b8;
  1882. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b6b8), color-stop(100%, #b0aeb0));
  1883. background-image: -webkit-linear-gradient(top, #b8b6b8 0%, #b0aeb0 100%);
  1884. background-image: linear-gradient(to bottom, #b8b6b8 0%, #b0aeb0 100%);
  1885. }
  1886. .tab-item:first-child {
  1887. border-left: 0;
  1888. }
  1889. .tab-item.active {
  1890. background-color: #d4d2d4;
  1891. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d4d2d4), color-stop(100%, #cccacc));
  1892. background-image: -webkit-linear-gradient(top, #d4d2d4 0%, #cccacc 100%);
  1893. background-image: linear-gradient(to bottom, #d4d2d4 0%, #cccacc 100%);
  1894. }
  1895. .tab-item .icon-close-tab {
  1896. position: absolute;
  1897. top: 50%;
  1898. left: 5px;
  1899. width: 15px;
  1900. height: 15px;
  1901. font-size: 15px;
  1902. line-height: 15px;
  1903. text-align: center;
  1904. color: #666;
  1905. opacity: 0;
  1906. transition: opacity .1s linear, background-color .1s linear;
  1907. border-radius: 3px;
  1908. transform: translateY(-50%);
  1909. z-index: 10;
  1910. }
  1911. .tab-item:after {
  1912. position: absolute;
  1913. top: 0;
  1914. right: 0;
  1915. bottom: 0;
  1916. left: 0;
  1917. content: "";
  1918. background-color: rgba(0, 0, 0, 0.08);
  1919. opacity: 0;
  1920. transition: opacity .1s linear;
  1921. z-index: 1;
  1922. }
  1923. .tab-item:hover:not(.active):after {
  1924. opacity: 1;
  1925. }
  1926. .tab-item:hover .icon-close-tab {
  1927. opacity: 1;
  1928. }
  1929. .tab-item .icon-close-tab:hover {
  1930. background-color: rgba(0, 0, 0, 0.08);
  1931. }