style-common.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519
  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: 220px;
  394. font-weight:800;
  395. }
  396. .navbar-nav {
  397. height: 40px;
  398. }
  399. .navbar-nav > li > a {
  400. line-height: 20px;
  401. padding: 10px;
  402. font-size: 17px;
  403. padding: 10px 35px 10px 35px;
  404. color: #ffffff;
  405. }
  406. .navbar-nav > li.active:after {
  407. top: 100%;
  408. left: 50%;
  409. border: solid transparent;
  410. content: " ";
  411. height: 0;
  412. width: 0;
  413. position: absolute;
  414. pointer-events: none;
  415. border-color: rgba(0, 0, 0, 0);
  416. border-top-color: #000000;
  417. border-width: 6px;
  418. margin-left: -6px;
  419. }
  420. .navbar-nav > li.active {
  421. background-color: #000000;
  422. position: relative;
  423. }
  424. .navbar-nav > li.active > a {
  425. color: #36a7c4;
  426. }
  427. /* Sub header */
  428. .subheader {
  429. background-color: #e8edf1;
  430. min-height: 60px;
  431. border-bottom: 1px solid #a4acb9;
  432. }
  433. .subheader > div > .btn-group {
  434. margin: 12px 15px 0px 0px;
  435. }
  436. .subheader h2 {
  437. font-family: 'Lato', sans-serif;
  438. color: #1a1a1a;
  439. font-size: 20px;
  440. font-weight: normal;
  441. padding: 19px 0px 5px 10px;
  442. margin-top: 0px;
  443. }
  444. .subheader .version {
  445. font-weight: bold;
  446. color: #36a7c4;
  447. font-size: 110%;
  448. padding-left: 5px;
  449. line-height: 1;
  450. padding-right: 5px;
  451. border-right: 1px solid #a4acb9;
  452. margin-right: 5px;
  453. }
  454. .subheader .btn {
  455. border-color: #e8edf1;
  456. }
  457. .subheader a.btn:hover, .subheader a.btn:focus {
  458. border-color: #e8edf1;
  459. color: #ffffff;
  460. }
  461. .subheader .dropdown-menu .detail {
  462. vertical-align:middle;
  463. color: #1a1a1a;
  464. }
  465. .subheader p {
  466. font-size: 14px;
  467. color: #1a1a1a;
  468. word-wrap:break-word;
  469. }
  470. .subheader p.hint a {
  471. cursor: pointer;
  472. color: #1a1a1a;
  473. }
  474. .subheader .details.subheader .details {
  475. margin-bottom: 5px;
  476. margin-left: -1px;
  477. border-right: 1px solid #a4acb9;
  478. border-left: 1px solid #a4acb9;
  479. padding: 0px 15px 5px 15px;
  480. }
  481. .subheader .details:first-child {
  482. border-left: none;
  483. }
  484. .subheader .details:last-child {
  485. border-right: none;
  486. }
  487. .subheader .details > span, span.detail {
  488. font-size: 13px;
  489. display: block;
  490. padding-bottom: 5px;
  491. }
  492. .subheader .details p {
  493. font-size: 13px;
  494. }
  495. .subheader .related {
  496. float: right;
  497. margin: 0 -10px 10px 10px;
  498. }
  499. .subheader .details span i, span.detail i {
  500. font-size: 90%;
  501. padding-right: 8px;
  502. }
  503. .subheader >div>.pull-right {
  504. margin-top: 12px;
  505. margin-right: 5px;
  506. }
  507. .subheader a.action {
  508. color: #1a1a1a;
  509. margin-right: 10px;
  510. line-height: 36px;
  511. text-decoration: underline;
  512. font-size: 14px;
  513. }
  514. .subheader a.action i {
  515. text-decoration: none;
  516. font-style: normal;
  517. }
  518. .subheader a:hover {
  519. color: #606b7d;
  520. }
  521. .subheader .highlight {
  522. color: #ffeeaa;
  523. }
  524. /** Custom icons **/
  525. .icon {
  526. position: relative;
  527. top: 1px;
  528. display: inline-block;
  529. font-family: 'cherokeeregular';
  530. font-style: normal;
  531. font-weight: 400;
  532. line-height: 1;
  533. -webkit-font-smoothing: antialiased;
  534. -moz-osx-font-smoothing: grayscale;
  535. }
  536. .icon-user-add:before {
  537. content: "\e008";
  538. }
  539. .icon-comment-add:before {
  540. content: "\e111";
  541. }
  542. .icon-diagram:before {
  543. content: "\e011";
  544. }
  545. .icon-caret-down:before {
  546. content: "\e114";
  547. }
  548. .icon-caret-left:before {
  549. content: "\e115";
  550. }
  551. .icon-caret-right:before {
  552. content: "\e116";
  553. }
  554. .icon-remove:before {
  555. content: "\e117";
  556. }
  557. .icon-pencil:before {
  558. content: "\270f";
  559. }
  560. .icon-caret-up:before {
  561. content: "\e118";
  562. }
  563. .icon-user:before {
  564. content: "\e119";
  565. }
  566. .icon-choice:before {
  567. content: "\e120";
  568. }
  569. .icon-move:before {
  570. content: "\e121";
  571. }
  572. .icon-mail:before {
  573. content: "\e122";
  574. }
  575. .icon-clock:before {
  576. content: "\e123";
  577. }
  578. .icon-download:before {
  579. content: "\e124";
  580. }
  581. .icon-word:before {
  582. content: "\e125";
  583. }
  584. .icon-excel:before {
  585. content: "\e126";
  586. }
  587. .icon-powerpoint:before {
  588. content: "\e127";
  589. }
  590. .icon-pdf:before {
  591. content: "\e128";
  592. }
  593. .icon-content:before {
  594. content: "\e129";
  595. }
  596. .icon-folder:before {
  597. content: "\e130";
  598. }
  599. .icon-image:before {
  600. content: "\e131";
  601. }
  602. .icon-bpmn-stencil:before {
  603. content: "\e132";
  604. }
  605. .icon-kickstart-stencil:before {
  606. content: "\e133";
  607. }
  608. .icon-form-stencil:before {
  609. content: "\e134";
  610. }
  611. .simple-list .icon-image, .related-content .icon-image {
  612. color: #484b84;
  613. }
  614. .simple-list .icon-pdf, .related-content .icon-pdf {
  615. color: #ac2020;
  616. }
  617. .simple-list .icon-powerpoint, .related-content .icon-powerpoint {
  618. color: #dc5b31;
  619. }
  620. .simple-list .icon-excel, .related-content .icon-excel {
  621. color: #13743d;
  622. }
  623. .simple-list .icon-word, .related-content .icon-word {
  624. color: #2974b8;
  625. }
  626. .simple-list .icon-content, .related-content .icon-content {
  627. color: #666666;
  628. }
  629. .loading {
  630. margin: 0px 15px;
  631. text-align: center;
  632. line-height: 34px;
  633. }
  634. .loading > div {
  635. width: 10px;
  636. height: 10px;
  637. background-color: #9fd7e5;
  638. margin: 1px;
  639. border-radius: 100%;
  640. display: inline-block;
  641. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  642. animation: bouncedelay 1.4s infinite ease-in-out;
  643. /* Prevent first frame from flickering when animation starts */
  644. -webkit-animation-fill-mode: both;
  645. animation-fill-mode: both;
  646. }
  647. .loading .l1 {
  648. -webkit-animation-delay: -0.32s;
  649. animation-delay: -0.32s;
  650. }
  651. .loading .l2 {
  652. -webkit-animation-delay: -0.16s;
  653. animation-delay: -0.16s;
  654. }
  655. .loading-box {
  656. text-align: center;
  657. margin: 50px auto 10px auto;
  658. padding: 20px 50px;
  659. max-width: 400px;
  660. }
  661. .loading-box span {
  662. font-size: 16px;
  663. color: #333333;
  664. }
  665. @-webkit-keyframes bouncedelay {
  666. 0%, 80%, 100% { -webkit-transform: scale(0.0) }
  667. 40% { -webkit-transform: scale(1.0) }
  668. }
  669. @keyframes bouncedelay {
  670. 0%, 80%, 100% {
  671. transform: scale(0.0);
  672. -webkit-transform: scale(0.0);
  673. } 40% {
  674. transform: scale(1.0);
  675. -webkit-transform: scale(1.0);
  676. }
  677. }
  678. /** Alerts */
  679. .alert-wrapper {
  680. }
  681. .alert-wrapper {
  682. position: fixed;
  683. top: 40px;
  684. left: 0;
  685. right: 0;
  686. z-index: 1010;
  687. }
  688. .alert-wrapper.no-header {
  689. top: 0px;
  690. }
  691. .alert {
  692. text-align: center;
  693. width: 100%;
  694. min-height: 20px;
  695. background-color: #eef4d7;
  696. background-color: rgba(238, 244, 215, .7);
  697. padding: 8px 10px;
  698. cursor: pointer;
  699. border: none;
  700. border-bottom: 1px solid #bcd35f;
  701. -moz-border-radius: 0px;
  702. -webkit-border-radius: 0px;
  703. border-radius: 0px;
  704. -webkit-transition: all .5s ease;
  705. -moz-transition: all .5s ease;
  706. -o-transition: all .5s ease;
  707. transition: all .5s ease;
  708. }
  709. .alert.ng-hide-remove {
  710. opacity: 1;
  711. display:block!important;
  712. }
  713. .alert.ng-hide {
  714. opacity: 0;
  715. }
  716. .alert .badge {
  717. background-color: #bcd35f;
  718. color: #ffffff;
  719. font-size: 12px;
  720. margin-top: 2px;
  721. margin-left: 10px;
  722. }
  723. .alert .glyphicon {
  724. padding-right: 8px;
  725. color: #bcd35f;
  726. }
  727. .alert span {
  728. color: #445016;
  729. font-size: 15px;
  730. }
  731. .alert.error {
  732. background-color: #e9af9f;
  733. border-color: #e4593d;
  734. background-color: rgba(228, 89, 61, .7);
  735. }
  736. .alert.error .glyphicon {
  737. color: #e4593d;
  738. }
  739. .alert.error span {
  740. color: #471313;
  741. }
  742. .alert.error .badge {
  743. background-color: #e4593d;
  744. color: #ffffff;
  745. }
  746. .wrapper {
  747. padding: 55px 15px 15px 15px;
  748. max-width: 1400px;
  749. min-width: 1024px;
  750. margin: 0 auto;
  751. }
  752. .wrapper.full {
  753. padding: 0px 0px 0px 0px;
  754. overflow: hidden;
  755. max-width: 100%;
  756. min-width: 100%;
  757. }
  758. .wrapper.no-header {
  759. padding-top: 10px;
  760. }
  761. /** Main list **/
  762. .main-list {
  763. position: relative;
  764. float: left;
  765. width: 400px;
  766. border: 1px solid #cccccc;
  767. background-color: #ffffff;
  768. margin-right: 20px;
  769. -webkit-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  770. -moz-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  771. box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  772. }
  773. .main-list .sort {
  774. position: absolute;
  775. top: 12px;
  776. right: 5px;
  777. }
  778. .list-header {
  779. position: absolute;
  780. top: 0;
  781. left: 0;
  782. right: 0;
  783. background-color: #ffffff;
  784. background-color: rgba(255, 255, 255, .9);
  785. border-bottom: 1px solid #cccccc;
  786. -webkit-box-shadow: 0px 1px 1px 0px rgba(220,220,220,0.65);
  787. -moz-box-shadow: 0px 1px 1px 0px rgba(220,220,220,0.65);
  788. box-shadow: 0px 1px 1px 0px rgba(220,220,220,0.65);
  789. z-index: 2;
  790. }
  791. .list-header .loading {
  792. position: absolute;
  793. left: 50%;
  794. margin-left: -15px;
  795. line-height: 30px;
  796. }
  797. .list-header .summary {
  798. cursor: pointer;
  799. padding: 10px 10px 10px 10px;
  800. min-height: 30px;
  801. }
  802. .list-header .summary > span {
  803. color: #373e48;
  804. }
  805. .list-header .summary .divider {
  806. content: '&bull';
  807. font-size: 70%;
  808. line-height: 1;
  809. font-style: normal;
  810. padding: 0 5px;
  811. }
  812. .list-header .form-group {
  813. margin-bottom: 10px;
  814. position: relative;
  815. }
  816. .selection {
  817. position: relative;
  818. margin: 0;
  819. padding: 6px 8px;
  820. border: 1px solid #cccccc;
  821. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  822. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  823. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  824. background-color: #ffffff;
  825. font-size: 14px;
  826. cursor: pointer;
  827. }
  828. .selection .glyphicon, .selection .icon {
  829. padding-right: 5px;
  830. }
  831. .selection .actions {
  832. float: right;
  833. }
  834. .selection .actions.no-upload {
  835. float: left;
  836. margin-right: 10px;
  837. }
  838. .selection.narrow {
  839. padding: 0;
  840. }
  841. .selection .pull-right {
  842. margin: 4px 4px 4px 0;
  843. }
  844. .selection.narrow .simple-list {
  845. margin-bottom: 0;
  846. padding-bottom: 0;
  847. }
  848. .selection.narrow .simple-list li {
  849. border-top: 1px dotted #eeeeee;
  850. }
  851. .selection.narrow .simple-list li:first-child {
  852. border-top: none;
  853. }
  854. .selection.narrow .no-results {
  855. padding: 6px 0 0 5px;
  856. }
  857. .selection.narrow .details {
  858. margin: 5px;
  859. border: none;
  860. }
  861. .selection.narrow .label {
  862. font-size: 13px;
  863. padding:0 10px 0 0;
  864. margin: 0;
  865. color: #666666;
  866. }
  867. .selection > .icon-caret-down {
  868. visibility: hidden;
  869. position: absolute;
  870. top: 8px;
  871. right: 5px;
  872. }
  873. .selection .empty {
  874. color: #666666;
  875. }
  876. .selection:hover > .icon-caret-down, button.selection:active > .icon-caret-down, button.selection:focus > .icon-caret-down {
  877. visibility: visible;
  878. }
  879. .selection[disabled]:hover > .icon-caret-down, button.selection[disabled]:active > .icon-caret-down, button[disabled].selection:focus > .icon-caret-down {
  880. visibility: hidden;
  881. }
  882. .selection[disabled] {
  883. background-color: #f6f6f7;
  884. color: #999999;
  885. }
  886. .selection+.dropdown-menu {
  887. width: 100%;
  888. }
  889. button.selection:active, button.selection:focus {
  890. outline: none;
  891. border-color: #acacac;
  892. }
  893. .selection.toggle {
  894. overflow: hidden;
  895. clear: both;
  896. padding: 0;
  897. }
  898. .selection.toggle .toggle-2 {
  899. width: 50%;
  900. float: left;
  901. }
  902. .selection.toggle .toggle-3 {
  903. width: 33.333%;
  904. float: left;
  905. }
  906. .selection.toggle .toggle-4 {
  907. width: 25%;
  908. float: left;
  909. }
  910. .selection.toggle .btn {
  911. border: none;
  912. border-right: 1px solid #bbbbbb;
  913. width: 100%;
  914. background-color: #eeeeee;
  915. -moz-border-radius: 0px;
  916. -webkit-border-radius: 0px;
  917. border-radius: 0px;
  918. color: #666666;
  919. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  920. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  921. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  922. }
  923. .selection.toggle .btn:active, .selection.toggle .btn:focus {
  924. outline: none;
  925. color: #1a1a1a;
  926. background-color: #f8f8f8;
  927. }
  928. .selection.toggle > .active .btn {
  929. background-color: #ffffff;
  930. color: #1a1a1a;
  931. -moz-box-shadow: none;
  932. -webkit-box-shadow: none;
  933. box-shadow: none;
  934. }
  935. .selection.toggle > div:last-child .btn {
  936. border: none;
  937. }
  938. .subtle-select {
  939. padding: 6px 8px;
  940. background-color: transparent;
  941. color: #1a1a1a;
  942. text-decoration: none;
  943. }
  944. .subtle-select .icon {
  945. visibility: hidden;
  946. }
  947. .subtle-select:hover .icon {
  948. visibility: visible;
  949. }
  950. .subtle-select:hover, .header .detail a.subtle-select:hover {
  951. background-color: #ffffff;
  952. text-decoration: none;
  953. color:#1a1a1a;
  954. }
  955. .list-header .summary label, .list-header .summary .filter-action {
  956. font-size: 11px;
  957. font-weight: normal;
  958. text-transform: uppercase;
  959. margin-bottom: 0;
  960. color: #1a1a1a;
  961. }
  962. .list-wrapper {
  963. overflow: auto;
  964. }
  965. .main-list {
  966. height: 100%;
  967. overflow: hidden;
  968. }
  969. .main-list .nothing-to-see {
  970. text-align: center;
  971. padding:50px 20px;
  972. }
  973. .main-list .nothing-to-see span {
  974. font-size: 17px;
  975. }
  976. .main-list .popover {
  977. width: 375px;
  978. }
  979. .list-header .summary .filter-action:hover {
  980. color: #36a7c4;
  981. }
  982. .main-list .list-subheader {
  983. margin-top: 40px;
  984. position: relative;
  985. z-index: 1;
  986. border-bottom: 1px solid #f2f2f2;
  987. }
  988. .main-list .list-subheader > .btn-group {
  989. margin: 10px 5px 10px 10px;
  990. }
  991. .full-list li.more {
  992. padding: 10px 15px;
  993. background-color: #ffffff;
  994. color: #666666;
  995. }
  996. .full-list li.more i.icon {
  997. font-size: 70%;
  998. }
  999. .full-list {
  1000. list-style: none;
  1001. padding: 0;
  1002. margin-bottom: 0;
  1003. }
  1004. .full-list li {
  1005. position: relative;
  1006. display: block;
  1007. border-bottom: 1px solid #f5f5f5;
  1008. cursor: pointer;
  1009. padding: 2px 0px 2px 0px;
  1010. }
  1011. .full-list li .badge, .simple-list li .badge{
  1012. font-size: 12px;
  1013. line-height: 12px;
  1014. padding-right: 0;
  1015. border-radius: 3px;
  1016. background-color: #e8edf1;
  1017. color: #36a7c4;
  1018. background-color: transparent;
  1019. font-weight: normal;
  1020. }
  1021. .full-list li.active {
  1022. background-color: #fafafb;
  1023. }
  1024. .full-list li:hover {
  1025. background-color: #fafafb;
  1026. }
  1027. .full-list li > div:hover {
  1028. border-color: #d8dde1;
  1029. }
  1030. .full-list li > div {
  1031. margin: 0 6px 0 4px;
  1032. border-left: 4px solid #e8edf1;
  1033. min-height: 50px;
  1034. padding: 5px 5px 5px 5px;
  1035. }
  1036. .full-list li.active > div {
  1037. border-left-color: #36a7c4;
  1038. }
  1039. .full-list li .title {
  1040. font-size: 16px;
  1041. margin: 0 0 0 5px;
  1042. white-space: nowrap;
  1043. overflow: hidden;
  1044. text-overflow: ellipsis;
  1045. }
  1046. .full-list li .summary {
  1047. clear: both;
  1048. margin: 3px 5px 0px 5px;
  1049. font-size: 13px;
  1050. color: #1a1a1a;
  1051. white-space: nowrap;
  1052. width: 100%;
  1053. overflow: hidden;
  1054. text-overflow: ellipsis;
  1055. }
  1056. .full-list li .detail {
  1057. margin: 0 5px;
  1058. font-size: 12px;
  1059. color: #999999;
  1060. white-space: nowrap;
  1061. width: 100%;
  1062. overflow: hidden;
  1063. text-overflow: ellipsis;
  1064. }
  1065. .main-content {
  1066. border: 1px solid #cccccc;
  1067. height: 100%;
  1068. max-height: 100%;
  1069. overflow: hidden;
  1070. padding-bottom: 10px;
  1071. }
  1072. .main-content-wrapper {
  1073. height: 100%;
  1074. max-height: 100%;
  1075. overflow: hidden;
  1076. -webkit-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  1077. -moz-box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  1078. box-shadow: 2px 2px 2px 0px rgba(220,220,220,0.50);
  1079. }
  1080. .main-content > .header {
  1081. background-color: #e8edf1;
  1082. min-height: 60px;
  1083. border-bottom: 1px solid #a4acb9;
  1084. padding: 15px 15px;
  1085. }
  1086. .main-content > .header h2 {
  1087. margin: 0 0 5px 0;
  1088. font-size: 26px;
  1089. }
  1090. .main-content > .header .btn:hover, .main-content > .header .btn:focus {
  1091. border-color: #e8edf1;
  1092. color: #ffffff;
  1093. }
  1094. .modal-header .label, .header .label {
  1095. padding: 0 3px 0 15px;
  1096. color: #1a1a1a;
  1097. font-weight: normal;
  1098. font-size: 13px;
  1099. color: #666666;
  1100. }
  1101. .header > .detail >.label:first-child {
  1102. padding-left: 0;
  1103. }
  1104. .header .detail a {
  1105. color: #1a1a1a;
  1106. }
  1107. .header .detail a:hover {
  1108. color: #36a7c4;
  1109. text-decoration: underline;
  1110. }
  1111. .jumpers {
  1112. list-style: none inside;
  1113. padding: 0 10px 10px 10px;
  1114. margin: 5px 0px 0 0px;
  1115. border-bottom: 1px solid #eeeeee;
  1116. }
  1117. .jumpers li {
  1118. display: inline-block;
  1119. border: 1px solid #e8edf1;
  1120. margin: 5px 0 0 2px;
  1121. padding: 5px 25px;
  1122. -moz-border-radius: 2px;
  1123. -webkit-border-radius: 2px;
  1124. border-radius: 2px;
  1125. cursor: pointer;
  1126. }
  1127. .jumpers li.pending {
  1128. border: 1px dotted #d8dde1;
  1129. }
  1130. .jumpers li:hover {
  1131. background-color: #f8f8f9;
  1132. }
  1133. .jumpers li.selected {
  1134. color: white;
  1135. background-color: #36a7c4;
  1136. }
  1137. .jumpers li span {
  1138. background-color: #f2f2f2;
  1139. padding: 1px 5px;
  1140. margin-left: 5px;
  1141. -moz-border-radius: 2px;
  1142. -webkit-border-radius: 2px;
  1143. border-radius: 2px;
  1144. color: #999999;
  1145. }
  1146. .jumpers li:hover span {
  1147. background-color: #e2e2e2;
  1148. }
  1149. .section {
  1150. margin: 10px 0;
  1151. padding: 10px 0 0px 0;
  1152. min-height: 120px;
  1153. }
  1154. .section.pack {
  1155. min-height: inherit;
  1156. }
  1157. .col-xs-12.seperator {
  1158. height: 1px;
  1159. border-top: 1px solid #eeeeee;
  1160. margin: 5px 0;
  1161. }
  1162. .section > h3 {
  1163. position: relative;
  1164. margin: 0px;
  1165. font-size: 18px;
  1166. cursor: pointer;
  1167. }
  1168. .section > h3 .action > a {
  1169. font-weight: bold;
  1170. padding-left: 5px;
  1171. color: #999999;
  1172. }
  1173. .section > .form-group, .section > div > .form-group {
  1174. margin: 5px 0;
  1175. }
  1176. .modal-backdrop {
  1177. background-color: #999999; /** Non alpha-supporting browser fallback */
  1178. background-color: rgba(100, 100, 100, .75);
  1179. background-image: url('../../images/glasspane.png');
  1180. }
  1181. .modal-content {
  1182. -webkit-border-radius: 0;
  1183. -moz-border-radius: 0;
  1184. border-radius: 0;
  1185. border: none;
  1186. }
  1187. .modal-dialog.wide {
  1188. margin-left: auto;
  1189. margin-right: auto;
  1190. width: 80%;
  1191. max-width: 1200px;
  1192. }
  1193. .modal-body {
  1194. }
  1195. .modal .modal-header {
  1196. position: relative;
  1197. background-color: #e8edf1;
  1198. min-height: 60px;
  1199. border-bottom: 1px solid #a4acb9;
  1200. padding: 15px 15px;
  1201. }
  1202. .modal-header .actions {
  1203. margin-right: 20px;
  1204. }
  1205. .modal-body .form-actions {
  1206. border-top: 1px solid #eeeeee;
  1207. margin: 0 -30px;
  1208. padding: 10px 10px 10px 10px;
  1209. }
  1210. .modal-body.includes-footer {
  1211. padding-bottom: 0px;
  1212. }
  1213. .fullscreen .modal-header h3 {
  1214. margin: 0 0 5px 0px;
  1215. font-size: 22px;
  1216. }
  1217. .fullscreen .modal-header h3 .summary {
  1218. font-size: 13px;
  1219. }