style-common.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518
  1. /**
  2. Colors:
  3. - Header: #333333
  4. - Subheader: #e8edf1
  5. - Subheader border: #a4acb9
  6. - Highlight buttons/text: #36a7c4
  7. - Text color: #1a1a1a
  8. - Filter color: #373e48
  9. - Dark highlight: #606b7d
  10. */
  11. .form-control {
  12. -webkit-border-radius: 0;
  13. -moz-border-radius: 0;
  14. border-radius: 0;
  15. padding: 4px 8px;
  16. }
  17. body {
  18. font-family: 'Lato', sans-serif;
  19. }
  20. .label {
  21. font-size: 18px;
  22. font-weight: normal;
  23. margin-bottom: 0;
  24. color: #1a1a1a;
  25. }
  26. .subtle {
  27. color: #999999;
  28. font-size: 13px;
  29. }
  30. .simple-list {
  31. list-style: none inside;
  32. padding: 0;
  33. margin: 5px 0;
  34. }
  35. .simple-list.pack {
  36. max-height: 250px;
  37. overflow: auto;
  38. }
  39. .simple-list li {
  40. padding: 6px;
  41. position: relative;
  42. }
  43. .simple-list li > .icon {
  44. padding-right: 5px;
  45. }
  46. .simple-list li:hover {
  47. background-color: #f8f8f9;
  48. }
  49. .simple-list li.nothing-to-see:hover {
  50. background-color: transparent;
  51. }
  52. .simple-list li.active {
  53. background-color: #eeeeee;
  54. }
  55. .simple-list li >.actions {
  56. visibility: hidden;
  57. position: absolute;
  58. top: 3px;
  59. right: 5px;
  60. font-size: 20px;
  61. background-color: #f8f8f9;
  62. padding: 0 0 0 4px;
  63. }
  64. .simple-list li >.actions a {
  65. padding: 4px 4px 0 4px;
  66. }
  67. .simple-list li >.actions a:hover {
  68. background-color: #ffffff;
  69. }
  70. .simple-list li:hover >.actions {
  71. visibility: visible;
  72. }
  73. .simple-list.grid li {
  74. border-bottom: 1px solid #eeeeee;
  75. }
  76. .simple-list.grid li:first-child {
  77. border-top: 1px solid #eeeeee;
  78. }
  79. .simple-list li .subtle {
  80. color: #999999;
  81. font-size: 13px;
  82. }
  83. .simple-list.selectable li {
  84. cursor: pointer;
  85. }
  86. .simple-list .loading {
  87. position: absolute;
  88. left: 50%;
  89. margin-left: -15px;
  90. line-height: 30px;
  91. top: 8px;
  92. z-index: 1030;
  93. }
  94. .lt-ie9 .container {
  95. display: none !important;
  96. visibility: hidden !important;
  97. }
  98. .unsupported-browser {
  99. margin: 60px 20px 20px 20px;
  100. }
  101. a {
  102. cursor: pointer;
  103. }
  104. a:hover {
  105. text-decoration: none;
  106. }
  107. label {
  108. font-weight: normal;
  109. color: #636363;
  110. font-size: 14px;
  111. }
  112. [ng\:cloak], [ng-cloak], .ng-cloak { display: none; }
  113. .nothing-to-see {
  114. padding: 5px 0 20px 0;
  115. cursor: default;
  116. }
  117. .nothing-to-see span {
  118. font-size: 14px;
  119. color: #aaaaaa;
  120. }
  121. .fixed-container {
  122. max-width: 1400px;
  123. min-width: 1000px;
  124. margin: 0 auto;
  125. }
  126. .well {
  127. -moz-border-radius: 0;
  128. -webkit-border-radius: 0;
  129. border-radius: 0;
  130. }
  131. /** Buttons **/
  132. button.btn, a.btn {
  133. background-color: #36a7c4;
  134. color: #ffffff;
  135. border-color: #ffffff;
  136. font-size: 15px;
  137. }
  138. button.btn-subtle, a.btn-subtle {
  139. background-color: #fafafb;
  140. color: #1a1a1a;
  141. font-size: 15px;
  142. }
  143. .btn-xs {
  144. padding: 1px 8px;
  145. }
  146. button.btn.btn-danger {
  147. background-color: #d35f5f;
  148. }
  149. .btn.btn-danger:hover, .btn.btn-danger.active, .btn.btn-danger:focus {
  150. background-color: #c83737;
  151. }
  152. .btn:hover, .btn.active, .btn:focus {
  153. background-color: #2a8198;
  154. border-color: #ffffff;
  155. color: #ffffff;
  156. }
  157. .btn.disabled, .btn[disabled], .btn[disabled]:active, .btn[disabled]:hover {
  158. background-color: #668b94;
  159. border-color: #668b94;
  160. color: #ffffff;
  161. }
  162. .btn-subtle:hover, .btn-subtle.active, .btn-subtle:focus {
  163. background-color: #f6f6f7;
  164. border-color: #ffffff;
  165. color: #000000;
  166. }
  167. .btn-subtle[disabled] {
  168. background-color: #f6f6f7;
  169. color: #555555;
  170. }
  171. .modal-header .btn, .header .btn {
  172. border-color: #e8edf1;
  173. }
  174. .content {
  175. padding: 0 10px;
  176. overflow: auto;
  177. }
  178. .content.split {
  179. background: transparent url('../../images/line-1px.png') repeat-y 60% 0;
  180. }
  181. .content .split-left {
  182. float: left;
  183. width: 60%;
  184. padding: 0 10px 0 5px;
  185. }
  186. .content .split-right {
  187. float: right;
  188. width: 40%;
  189. padding: 0 0 0 15px;
  190. }
  191. .form-group .pull-right {
  192. margin: 10px 0 0 5px;
  193. }
  194. .form-group.box {
  195. padding-bottom: 10px;
  196. margin-bottom: 5px;
  197. border-bottom: 1px dotted #eeeeee;
  198. }
  199. .form-group .marker {
  200. font-size: 15px;
  201. color: #666666;
  202. }
  203. /** Dropdowns and dropdown triggers */
  204. .dropdown-menu {
  205. -webkit-border-radius: 0px;
  206. -moz-border-radius: 0px;
  207. border-radius: 0px;
  208. box-shadow: none;
  209. }
  210. .dropdown-menu:focus {
  211. outline: none;
  212. }
  213. .dropdown-menu > li > a:hover, .dropdown-menu > ul > li > a:hover {
  214. background: #36a7c4;
  215. color: #ffffff;
  216. }
  217. .dropdown-menu > li.active > a, .dropdown-menu > li.active > a:hover {
  218. background: #e8edf1;
  219. color: #1a1a1a;
  220. }
  221. .dropdown-menu > ul > li > a {
  222. display: block;
  223. text-decoration: none;
  224. color: #1a1a1a;
  225. padding: 5px;
  226. cursor: pointer;
  227. }
  228. .dropdown-menu > ul {
  229. padding: 10px;
  230. }
  231. .dropdown-menu.large-width {
  232. min-width: 300px;
  233. }
  234. a.dropdown-toggle {
  235. color: #1a1a1a;
  236. text-decoration: none;
  237. }
  238. .open a.dropdown-toggle, a.dropdown-toggle:hover {
  239. color: #36a7c4;
  240. }
  241. .btn-group.open .dropdown-toggle {
  242. -moz-box-shadow: none;
  243. -webkit-box-shadow: none;
  244. box-shadow: none;
  245. }
  246. /** Subtle dropdown (eg. sort) */
  247. .dropdown-subtle {
  248. margin-right: 5px;
  249. color: #606b7d;
  250. }
  251. .dropdown-subtle .btn {
  252. background: transparent;
  253. line-height: 36px;
  254. color: #606b7d;
  255. padding: 0;
  256. font-size: 14px;
  257. border: none;
  258. box-shadow: none;
  259. -webkit-box-shadow: none;
  260. -moz-box-shadow: none;
  261. }
  262. .dropdown-subtle .btn-group.open .dropdown-toggle {
  263. box-shadow: none;
  264. -webkit-box-shadow: none;
  265. -moz-box-shadow: none;
  266. }
  267. .dropdown-subtle .btn:hover, .dropdown-subtle .btn:focus {
  268. background: transparent;
  269. color: #333333;
  270. }
  271. .dropdown-subtle a {
  272. cursor: pointer;
  273. }
  274. /** Popovers */
  275. .popover {
  276. -moz-border-radius: 0;
  277. -webkit-border-radius: 0;
  278. border-radius: 0;
  279. max-width: 400px;
  280. min-width: 300px;
  281. padding: 0px;
  282. }
  283. .popover.bottom-left, .popover.bottom-right {
  284. margin-top: 10px;
  285. }
  286. .popover>.arrow, .popover>.arrow {
  287. margin-left: -11px;
  288. border-top-width: 0;
  289. border-bottom-color: #999;
  290. border-bottom-color: rgba(0,0,0,.25);
  291. top: -11px;
  292. }
  293. .popover.bottom-left>.arrow {
  294. left: 40px;
  295. }
  296. .popover.bottom-right>.arrow {
  297. right: 40px;
  298. }
  299. .popover.bottom-left>.arrow:after, .popover.bottom-right>.arrow:after, .popover.bottom>.arrow:after {
  300. content: " ";
  301. top: 1px;
  302. margin-left: -10px;
  303. border-top-width: 0;
  304. border-bottom-color: #e8edf1;
  305. }
  306. .popover-wrapper {
  307. padding: 10px;
  308. }
  309. .popover-header {
  310. position: relative;
  311. background-color: #e8edf1;
  312. min-height: 30px;
  313. font-size: 18px;
  314. color: #a4acb9;
  315. padding: 10px 0;
  316. }
  317. .popover-footer {
  318. overflow: hidden;
  319. clear: both;
  320. padding: 5px 10px 10px 10px;
  321. }
  322. .popover-header .actions {
  323. position: absolute;
  324. top: 6px;
  325. right: 5px;
  326. font-size: 12px;
  327. }
  328. .popover-header .actions a{
  329. display: inline-block;
  330. padding: 8px 5px;
  331. }
  332. .popover-header span {
  333. padding: 0 10px;
  334. }
  335. .popover-wrapper .form-group {
  336. margin-bottom: 10px;
  337. }
  338. .popover.wide {
  339. max-width: 1000px;
  340. min-width: 1000px;
  341. }
  342. .popover.wide .popover-wrapper {
  343. max-height: 400px;
  344. overflow: auto;
  345. }
  346. .popover.medium {
  347. max-width: 600px;
  348. min-width: 250px;
  349. }
  350. .popover .section {
  351. border-top: 1px solid #eeeeee;
  352. }
  353. .center {
  354. text-align: center;
  355. }
  356. .popover .center .btn, .popover .center .btn-group > .btn:hover, .popover .center .btn-group > .btn:focus {
  357. border-color: #ffffff;
  358. }
  359. /* Navigation */
  360. .navbar {
  361. background-color: #333333;
  362. border: none;
  363. min-height: 40px;
  364. }
  365. .navbar .btn-group .btn-default {
  366. border: none;
  367. color: #ffffff;
  368. background-color: transparent;
  369. padding-top: 0px;
  370. padding-bottom: 0px;
  371. line-height: 40px;
  372. -webkit-border-radius: 0px;
  373. -moz-border-radius: 0px;
  374. border-radius: 0px;
  375. font-size: 13px;
  376. }
  377. .navbar .btn-group .btn-default:hover, .navbar .btn-group .btn-default:focus {
  378. background-color: #121212;
  379. }
  380. .navbar .btn-group .btn-default {
  381. border: none;
  382. color: #ffffff;
  383. background-color: transparent;
  384. }
  385. .navbar .btn-group .btn-icon {
  386. font-size: 22px;
  387. }
  388. .navbar-header .navbar-brand {
  389. padding-top: 0px;
  390. line-height: 40px;
  391. height: 40px;
  392. background: url(../images/logo.png) no-repeat 10px center;
  393. width: 180px;
  394. }
  395. .navbar-nav {
  396. height: 40px;
  397. }
  398. .navbar-nav > li > a {
  399. line-height: 20px;
  400. padding: 10px;
  401. font-size: 17px;
  402. padding: 10px 35px 10px 35px;
  403. color: #ffffff;
  404. }
  405. .navbar-nav > li.active:after {
  406. top: 100%;
  407. left: 50%;
  408. border: solid transparent;
  409. content: " ";
  410. height: 0;
  411. width: 0;
  412. position: absolute;
  413. pointer-events: none;
  414. border-color: rgba(0, 0, 0, 0);
  415. border-top-color: #000000;
  416. border-width: 6px;
  417. margin-left: -6px;
  418. }
  419. .navbar-nav > li.active {
  420. background-color: #000000;
  421. position: relative;
  422. }
  423. .navbar-nav > li.active > a {
  424. color: #36a7c4;
  425. }
  426. /* Sub header */
  427. .subheader {
  428. background-color: #e8edf1;
  429. min-height: 60px;
  430. border-bottom: 1px solid #a4acb9;
  431. }
  432. .subheader > div > .btn-group {
  433. margin: 12px 15px 0px 0px;
  434. }
  435. .subheader h2 {
  436. font-family: 'Lato', sans-serif;
  437. color: #1a1a1a;
  438. font-size: 20px;
  439. font-weight: normal;
  440. padding: 19px 0px 5px 10px;
  441. margin-top: 0px;
  442. }
  443. .subheader .version {
  444. font-weight: bold;
  445. color: #36a7c4;
  446. font-size: 110%;
  447. padding-left: 5px;
  448. line-height: 1;
  449. padding-right: 5px;
  450. border-right: 1px solid #a4acb9;
  451. margin-right: 5px;
  452. }
  453. .subheader .btn {
  454. border-color: #e8edf1;
  455. }
  456. .subheader a.btn:hover, .subheader a.btn:focus {
  457. border-color: #e8edf1;
  458. color: #ffffff;
  459. }
  460. .subheader .dropdown-menu .detail {
  461. vertical-align:middle;
  462. color: #1a1a1a;
  463. }
  464. .subheader p {
  465. font-size: 14px;
  466. color: #1a1a1a;
  467. word-wrap:break-word;
  468. }
  469. .subheader p.hint a {
  470. cursor: pointer;
  471. color: #1a1a1a;
  472. }
  473. .subheader .details.subheader .details {
  474. margin-bottom: 5px;
  475. margin-left: -1px;
  476. border-right: 1px solid #a4acb9;
  477. border-left: 1px solid #a4acb9;
  478. padding: 0px 15px 5px 15px;
  479. }
  480. .subheader .details:first-child {
  481. border-left: none;
  482. }
  483. .subheader .details:last-child {
  484. border-right: none;
  485. }
  486. .subheader .details > span, span.detail {
  487. font-size: 13px;
  488. display: block;
  489. padding-bottom: 5px;
  490. }
  491. .subheader .details p {
  492. font-size: 13px;
  493. }
  494. .subheader .related {
  495. float: right;
  496. margin: 0 -10px 10px 10px;
  497. }
  498. .subheader .details span i, span.detail i {
  499. font-size: 90%;
  500. padding-right: 8px;
  501. }
  502. .subheader >div>.pull-right {
  503. margin-top: 12px;
  504. margin-right: 5px;
  505. }
  506. .subheader a.action {
  507. color: #1a1a1a;
  508. margin-right: 10px;
  509. line-height: 36px;
  510. text-decoration: underline;
  511. font-size: 14px;
  512. }
  513. .subheader a.action i {
  514. text-decoration: none;
  515. font-style: normal;
  516. }
  517. .subheader a:hover {
  518. color: #606b7d;
  519. }
  520. .subheader .highlight {
  521. color: #ffeeaa;
  522. }
  523. /** Custom icons **/
  524. .icon {
  525. position: relative;
  526. top: 1px;
  527. display: inline-block;
  528. font-family: 'cherokeeregular';
  529. font-style: normal;
  530. font-weight: 400;
  531. line-height: 1;
  532. -webkit-font-smoothing: antialiased;
  533. -moz-osx-font-smoothing: grayscale;
  534. }
  535. .icon-user-add:before {
  536. content: "\e008";
  537. }
  538. .icon-comment-add:before {
  539. content: "\e111";
  540. }
  541. .icon-diagram:before {
  542. content: "\e011";
  543. }
  544. .icon-caret-down:before {
  545. content: "\e114";
  546. }
  547. .icon-caret-left:before {
  548. content: "\e115";
  549. }
  550. .icon-caret-right:before {
  551. content: "\e116";
  552. }
  553. .icon-remove:before {
  554. content: "\e117";
  555. }
  556. .icon-pencil:before {
  557. content: "\270f";
  558. }
  559. .icon-caret-up:before {
  560. content: "\e118";
  561. }
  562. .icon-user:before {
  563. content: "\e119";
  564. }
  565. .icon-choice:before {
  566. content: "\e120";
  567. }
  568. .icon-move:before {
  569. content: "\e121";
  570. }
  571. .icon-mail:before {
  572. content: "\e122";
  573. }
  574. .icon-clock:before {
  575. content: "\e123";
  576. }
  577. .icon-download:before {
  578. content: "\e124";
  579. }
  580. .icon-word:before {
  581. content: "\e125";
  582. }
  583. .icon-excel:before {
  584. content: "\e126";
  585. }
  586. .icon-powerpoint:before {
  587. content: "\e127";
  588. }
  589. .icon-pdf:before {
  590. content: "\e128";
  591. }
  592. .icon-content:before {
  593. content: "\e129";
  594. }
  595. .icon-folder:before {
  596. content: "\e130";
  597. }
  598. .icon-image:before {
  599. content: "\e131";
  600. }
  601. .icon-bpmn-stencil:before {
  602. content: "\e132";
  603. }
  604. .icon-kickstart-stencil:before {
  605. content: "\e133";
  606. }
  607. .icon-form-stencil:before {
  608. content: "\e134";
  609. }
  610. .simple-list .icon-image, .related-content .icon-image {
  611. color: #484b84;
  612. }
  613. .simple-list .icon-pdf, .related-content .icon-pdf {
  614. color: #ac2020;
  615. }
  616. .simple-list .icon-powerpoint, .related-content .icon-powerpoint {
  617. color: #dc5b31;
  618. }
  619. .simple-list .icon-excel, .related-content .icon-excel {
  620. color: #13743d;
  621. }
  622. .simple-list .icon-word, .related-content .icon-word {
  623. color: #2974b8;
  624. }
  625. .simple-list .icon-content, .related-content .icon-content {
  626. color: #666666;
  627. }
  628. .loading {
  629. margin: 0px 15px;
  630. text-align: center;
  631. line-height: 34px;
  632. }
  633. .loading > div {
  634. width: 10px;
  635. height: 10px;
  636. background-color: #9fd7e5;
  637. margin: 1px;
  638. border-radius: 100%;
  639. display: inline-block;
  640. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  641. animation: bouncedelay 1.4s infinite ease-in-out;
  642. /* Prevent first frame from flickering when animation starts */
  643. -webkit-animation-fill-mode: both;
  644. animation-fill-mode: both;
  645. }
  646. .loading .l1 {
  647. -webkit-animation-delay: -0.32s;
  648. animation-delay: -0.32s;
  649. }
  650. .loading .l2 {
  651. -webkit-animation-delay: -0.16s;
  652. animation-delay: -0.16s;
  653. }
  654. .loading-box {
  655. text-align: center;
  656. margin: 50px auto 10px auto;
  657. padding: 20px 50px;
  658. max-width: 400px;
  659. }
  660. .loading-box span {
  661. font-size: 16px;
  662. color: #333333;
  663. }
  664. @-webkit-keyframes bouncedelay {
  665. 0%, 80%, 100% { -webkit-transform: scale(0.0) }
  666. 40% { -webkit-transform: scale(1.0) }
  667. }
  668. @keyframes bouncedelay {
  669. 0%, 80%, 100% {
  670. transform: scale(0.0);
  671. -webkit-transform: scale(0.0);
  672. } 40% {
  673. transform: scale(1.0);
  674. -webkit-transform: scale(1.0);
  675. }
  676. }
  677. /** Alerts */
  678. .alert-wrapper {
  679. }
  680. .alert-wrapper {
  681. position: fixed;
  682. top: 40px;
  683. left: 0;
  684. right: 0;
  685. z-index: 1010;
  686. }
  687. .alert-wrapper.no-header {
  688. top: 0px;
  689. }
  690. .alert {
  691. text-align: center;
  692. width: 100%;
  693. min-height: 20px;
  694. background-color: #eef4d7;
  695. background-color: rgba(238, 244, 215, .7);
  696. padding: 8px 10px;
  697. cursor: pointer;
  698. border: none;
  699. border-bottom: 1px solid #bcd35f;
  700. -moz-border-radius: 0px;
  701. -webkit-border-radius: 0px;
  702. border-radius: 0px;
  703. -webkit-transition: all .5s ease;
  704. -moz-transition: all .5s ease;
  705. -o-transition: all .5s ease;
  706. transition: all .5s ease;
  707. }
  708. .alert.ng-hide-remove {
  709. opacity: 1;
  710. display:block!important;
  711. }
  712. .alert.ng-hide {
  713. opacity: 0;
  714. }
  715. .alert .badge {
  716. background-color: #bcd35f;
  717. color: #ffffff;
  718. font-size: 12px;
  719. margin-top: 2px;
  720. margin-left: 10px;
  721. }
  722. .alert .glyphicon {
  723. padding-right: 8px;
  724. color: #bcd35f;
  725. }
  726. .alert span {
  727. color: #445016;
  728. font-size: 15px;
  729. }
  730. .alert.error {
  731. background-color: #e9af9f;
  732. border-color: #e4593d;
  733. background-color: rgba(228, 89, 61, .7);
  734. }
  735. .alert.error .glyphicon {
  736. color: #e4593d;
  737. }
  738. .alert.error span {
  739. color: #471313;
  740. }
  741. .alert.error .badge {
  742. background-color: #e4593d;
  743. color: #ffffff;
  744. }
  745. .wrapper {
  746. padding: 55px 15px 15px 15px;
  747. max-width: 1400px;
  748. min-width: 1024px;
  749. margin: 0 auto;
  750. }
  751. .wrapper.full {
  752. padding: 40px 0px 0px 0px;
  753. overflow: hidden;
  754. max-width: 100%;
  755. min-width: 100%;
  756. }
  757. .wrapper.no-header {
  758. padding-top: 10px;
  759. }
  760. /** Main list **/
  761. .main-list {
  762. position: relative;
  763. float: left;
  764. width: 400px;
  765. border: 1px solid #cccccc;
  766. background-color: #ffffff;
  767. margin-right: 20px;
  768. -webkit-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  769. -moz-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  770. box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  771. }
  772. .main-list .sort {
  773. position: absolute;
  774. top: 12px;
  775. right: 5px;
  776. }
  777. .list-header {
  778. position: absolute;
  779. top: 0;
  780. left: 0;
  781. right: 0;
  782. background-color: #ffffff;
  783. background-color: rgba(255, 255, 255, .9);
  784. border-bottom: 1px solid #cccccc;
  785. -webkit-box-shadow: 0px 1px 1px 0px rgba(220,220,220,0.65);
  786. -moz-box-shadow: 0px 1px 1px 0px rgba(220,220,220,0.65);
  787. box-shadow: 0px 1px 1px 0px rgba(220,220,220,0.65);
  788. z-index: 2;
  789. }
  790. .list-header .loading {
  791. position: absolute;
  792. left: 50%;
  793. margin-left: -15px;
  794. line-height: 30px;
  795. }
  796. .list-header .summary {
  797. cursor: pointer;
  798. padding: 10px 10px 10px 10px;
  799. min-height: 30px;
  800. }
  801. .list-header .summary > span {
  802. color: #373e48;
  803. }
  804. .list-header .summary .divider {
  805. content: '&bull';
  806. font-size: 70%;
  807. line-height: 1;
  808. font-style: normal;
  809. padding: 0 5px;
  810. }
  811. .list-header .form-group {
  812. margin-bottom: 10px;
  813. position: relative;
  814. }
  815. .selection {
  816. position: relative;
  817. margin: 0;
  818. padding: 6px 8px;
  819. border: 1px solid #cccccc;
  820. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  821. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  822. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  823. background-color: #ffffff;
  824. font-size: 14px;
  825. cursor: pointer;
  826. }
  827. .selection .glyphicon, .selection .icon {
  828. padding-right: 5px;
  829. }
  830. .selection .actions {
  831. float: right;
  832. }
  833. .selection .actions.no-upload {
  834. float: left;
  835. margin-right: 10px;
  836. }
  837. .selection.narrow {
  838. padding: 0;
  839. }
  840. .selection .pull-right {
  841. margin: 4px 4px 4px 0;
  842. }
  843. .selection.narrow .simple-list {
  844. margin-bottom: 0;
  845. padding-bottom: 0;
  846. }
  847. .selection.narrow .simple-list li {
  848. border-top: 1px dotted #eeeeee;
  849. }
  850. .selection.narrow .simple-list li:first-child {
  851. border-top: none;
  852. }
  853. .selection.narrow .no-results {
  854. padding: 6px 0 0 5px;
  855. }
  856. .selection.narrow .details {
  857. margin: 5px;
  858. border: none;
  859. }
  860. .selection.narrow .label {
  861. font-size: 13px;
  862. padding:0 10px 0 0;
  863. margin: 0;
  864. color: #666666;
  865. }
  866. .selection > .icon-caret-down {
  867. visibility: hidden;
  868. position: absolute;
  869. top: 8px;
  870. right: 5px;
  871. }
  872. .selection .empty {
  873. color: #666666;
  874. }
  875. .selection:hover > .icon-caret-down, button.selection:active > .icon-caret-down, button.selection:focus > .icon-caret-down {
  876. visibility: visible;
  877. }
  878. .selection[disabled]:hover > .icon-caret-down, button.selection[disabled]:active > .icon-caret-down, button[disabled].selection:focus > .icon-caret-down {
  879. visibility: hidden;
  880. }
  881. .selection[disabled] {
  882. background-color: #f6f6f7;
  883. color: #999999;
  884. }
  885. .selection+.dropdown-menu {
  886. width: 100%;
  887. }
  888. button.selection:active, button.selection:focus {
  889. outline: none;
  890. border-color: #acacac;
  891. }
  892. .selection.toggle {
  893. overflow: hidden;
  894. clear: both;
  895. padding: 0;
  896. }
  897. .selection.toggle .toggle-2 {
  898. width: 50%;
  899. float: left;
  900. }
  901. .selection.toggle .toggle-3 {
  902. width: 33.333%;
  903. float: left;
  904. }
  905. .selection.toggle .toggle-4 {
  906. width: 25%;
  907. float: left;
  908. }
  909. .selection.toggle .btn {
  910. border: none;
  911. border-right: 1px solid #bbbbbb;
  912. width: 100%;
  913. background-color: #eeeeee;
  914. -moz-border-radius: 0px;
  915. -webkit-border-radius: 0px;
  916. border-radius: 0px;
  917. color: #666666;
  918. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  919. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  920. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  921. }
  922. .selection.toggle .btn:active, .selection.toggle .btn:focus {
  923. outline: none;
  924. color: #1a1a1a;
  925. background-color: #f8f8f8;
  926. }
  927. .selection.toggle > .active .btn {
  928. background-color: #ffffff;
  929. color: #1a1a1a;
  930. -moz-box-shadow: none;
  931. -webkit-box-shadow: none;
  932. box-shadow: none;
  933. }
  934. .selection.toggle > div:last-child .btn {
  935. border: none;
  936. }
  937. .subtle-select {
  938. padding: 6px 8px;
  939. background-color: transparent;
  940. color: #1a1a1a;
  941. text-decoration: none;
  942. }
  943. .subtle-select .icon {
  944. visibility: hidden;
  945. }
  946. .subtle-select:hover .icon {
  947. visibility: visible;
  948. }
  949. .subtle-select:hover, .header .detail a.subtle-select:hover {
  950. background-color: #ffffff;
  951. text-decoration: none;
  952. color:#1a1a1a;
  953. }
  954. .list-header .summary label, .list-header .summary .filter-action {
  955. font-size: 11px;
  956. font-weight: normal;
  957. text-transform: uppercase;
  958. margin-bottom: 0;
  959. color: #1a1a1a;
  960. }
  961. .list-wrapper {
  962. overflow: auto;
  963. }
  964. .main-list {
  965. height: 100%;
  966. overflow: hidden;
  967. }
  968. .main-list .nothing-to-see {
  969. text-align: center;
  970. padding:50px 20px;
  971. }
  972. .main-list .nothing-to-see span {
  973. font-size: 17px;
  974. }
  975. .main-list .popover {
  976. width: 375px;
  977. }
  978. .list-header .summary .filter-action:hover {
  979. color: #36a7c4;
  980. }
  981. .main-list .list-subheader {
  982. margin-top: 40px;
  983. position: relative;
  984. z-index: 1;
  985. border-bottom: 1px solid #f2f2f2;
  986. }
  987. .main-list .list-subheader > .btn-group {
  988. margin: 10px 5px 10px 10px;
  989. }
  990. .full-list li.more {
  991. padding: 10px 15px;
  992. background-color: #ffffff;
  993. color: #666666;
  994. }
  995. .full-list li.more i.icon {
  996. font-size: 70%;
  997. }
  998. .full-list {
  999. list-style: none;
  1000. padding: 0;
  1001. margin-bottom: 0;
  1002. }
  1003. .full-list li {
  1004. position: relative;
  1005. display: block;
  1006. border-bottom: 1px solid #f5f5f5;
  1007. cursor: pointer;
  1008. padding: 2px 0px 2px 0px;
  1009. }
  1010. .full-list li .badge, .simple-list li .badge{
  1011. font-size: 12px;
  1012. line-height: 12px;
  1013. padding-right: 0;
  1014. border-radius: 3px;
  1015. background-color: #e8edf1;
  1016. color: #36a7c4;
  1017. background-color: transparent;
  1018. font-weight: normal;
  1019. }
  1020. .full-list li.active {
  1021. background-color: #fafafb;
  1022. }
  1023. .full-list li:hover {
  1024. background-color: #fafafb;
  1025. }
  1026. .full-list li > div:hover {
  1027. border-color: #d8dde1;
  1028. }
  1029. .full-list li > div {
  1030. margin: 0 6px 0 4px;
  1031. border-left: 4px solid #e8edf1;
  1032. min-height: 50px;
  1033. padding: 5px 5px 5px 5px;
  1034. }
  1035. .full-list li.active > div {
  1036. border-left-color: #36a7c4;
  1037. }
  1038. .full-list li .title {
  1039. font-size: 16px;
  1040. margin: 0 0 0 5px;
  1041. white-space: nowrap;
  1042. overflow: hidden;
  1043. text-overflow: ellipsis;
  1044. }
  1045. .full-list li .summary {
  1046. clear: both;
  1047. margin: 3px 5px 0px 5px;
  1048. font-size: 13px;
  1049. color: #1a1a1a;
  1050. white-space: nowrap;
  1051. width: 100%;
  1052. overflow: hidden;
  1053. text-overflow: ellipsis;
  1054. }
  1055. .full-list li .detail {
  1056. margin: 0 5px;
  1057. font-size: 12px;
  1058. color: #999999;
  1059. white-space: nowrap;
  1060. width: 100%;
  1061. overflow: hidden;
  1062. text-overflow: ellipsis;
  1063. }
  1064. .main-content {
  1065. border: 1px solid #cccccc;
  1066. height: 100%;
  1067. max-height: 100%;
  1068. overflow: hidden;
  1069. padding-bottom: 10px;
  1070. }
  1071. .main-content-wrapper {
  1072. height: 100%;
  1073. max-height: 100%;
  1074. overflow: hidden;
  1075. -webkit-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  1076. -moz-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  1077. box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  1078. }
  1079. .main-content > .header {
  1080. background-color: #e8edf1;
  1081. min-height: 60px;
  1082. border-bottom: 1px solid #a4acb9;
  1083. padding: 15px 15px;
  1084. }
  1085. .main-content > .header h2 {
  1086. margin: 0 0 5px 0;
  1087. font-size: 26px;
  1088. }
  1089. .main-content > .header .btn:hover, .main-content > .header .btn:focus {
  1090. border-color: #e8edf1;
  1091. color: #ffffff;
  1092. }
  1093. .modal-header .label, .header .label {
  1094. padding: 0 3px 0 15px;
  1095. color: #1a1a1a;
  1096. font-weight: normal;
  1097. font-size: 13px;
  1098. color: #666666;
  1099. }
  1100. .header > .detail >.label:first-child {
  1101. padding-left: 0;
  1102. }
  1103. .header .detail a {
  1104. color: #1a1a1a;
  1105. }
  1106. .header .detail a:hover {
  1107. color: #36a7c4;
  1108. text-decoration: underline;
  1109. }
  1110. .jumpers {
  1111. list-style: none inside;
  1112. padding: 0 10px 10px 10px;
  1113. margin: 5px 0px 0 0px;
  1114. border-bottom: 1px solid #eeeeee;
  1115. }
  1116. .jumpers li {
  1117. display: inline-block;
  1118. border: 1px solid #e8edf1;
  1119. margin: 5px 0 0 2px;
  1120. padding: 5px 25px;
  1121. -moz-border-radius: 2px;
  1122. -webkit-border-radius: 2px;
  1123. border-radius: 2px;
  1124. cursor: pointer;
  1125. }
  1126. .jumpers li.pending {
  1127. border: 1px dotted #d8dde1;
  1128. }
  1129. .jumpers li:hover {
  1130. background-color: #f8f8f9;
  1131. }
  1132. .jumpers li.selected {
  1133. color: white;
  1134. background-color: #36a7c4;
  1135. }
  1136. .jumpers li span {
  1137. background-color: #f2f2f2;
  1138. padding: 1px 5px;
  1139. margin-left: 5px;
  1140. -moz-border-radius: 2px;
  1141. -webkit-border-radius: 2px;
  1142. border-radius: 2px;
  1143. color: #999999;
  1144. }
  1145. .jumpers li:hover span {
  1146. background-color: #e2e2e2;
  1147. }
  1148. .section {
  1149. margin: 10px 0;
  1150. padding: 10px 0 0px 0;
  1151. min-height: 120px;
  1152. }
  1153. .section.pack {
  1154. min-height: inherit;
  1155. }
  1156. .col-xs-12.seperator {
  1157. height: 1px;
  1158. border-top: 1px solid #eeeeee;
  1159. margin: 5px 0;
  1160. }
  1161. .section > h3 {
  1162. position: relative;
  1163. margin: 0px;
  1164. font-size: 18px;
  1165. cursor: pointer;
  1166. }
  1167. .section > h3 .action > a {
  1168. font-weight: bold;
  1169. padding-left: 5px;
  1170. color: #999999;
  1171. }
  1172. .section > .form-group, .section > div > .form-group {
  1173. margin: 5px 0;
  1174. }
  1175. .modal-backdrop {
  1176. background-color: #999999; /** Non alpha-supporting browser fallback */
  1177. background-color: rgba(100, 100, 100, .75);
  1178. background-image: url('../../images/glasspane.png');
  1179. }
  1180. .modal-content {
  1181. -webkit-border-radius: 0;
  1182. -moz-border-radius: 0;
  1183. border-radius: 0;
  1184. border: none;
  1185. }
  1186. .modal-dialog.wide {
  1187. margin-left: auto;
  1188. margin-right: auto;
  1189. width: 80%;
  1190. max-width: 1200px;
  1191. }
  1192. .modal-body {
  1193. }
  1194. .modal .modal-header {
  1195. position: relative;
  1196. background-color: #e8edf1;
  1197. min-height: 60px;
  1198. border-bottom: 1px solid #a4acb9;
  1199. padding: 15px 15px;
  1200. }
  1201. .modal-header .actions {
  1202. margin-right: 20px;
  1203. }
  1204. .modal-body .form-actions {
  1205. border-top: 1px solid #eeeeee;
  1206. margin: 0 -30px;
  1207. padding: 10px 10px 10px 10px;
  1208. }
  1209. .modal-body.includes-footer {
  1210. padding-bottom: 0px;
  1211. }
  1212. .fullscreen .modal-header h3 {
  1213. margin: 0 0 5px 0px;
  1214. font-size: 22px;
  1215. }
  1216. .fullscreen .modal-header h3 .summary {
  1217. font-size: 13px;
  1218. }