Zlsoft.UI.Control.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. body {
  2. margin: 8px;
  3. margin-bottom: 0px;
  4. padding-bottom: 0px;
  5. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  6. }
  7. .list-unstyled {
  8. padding-left: 0;
  9. list-style: none;
  10. }
  11. .errorInput {
  12. border: 1px solid #a94442 !important;
  13. }
  14. .page-breadcrumb {
  15. box-shadow: none;
  16. padding-right: 30px;
  17. padding-left: 8px;
  18. margin-top: 15px;
  19. margin-bottom: 25px;
  20. border: 0px !important;
  21. }
  22. .page-breadcrumb > li {
  23. display: inline-block;
  24. }
  25. .page-breadcrumb > li > a {
  26. color: #666;
  27. font-size: 14px;
  28. text-shadow: none;
  29. text-decoration: none;
  30. }
  31. .breadcrumb {
  32. padding: 8px 15px;
  33. margin-bottom: 20px;
  34. list-style: none;
  35. background-color: #f5f5f5;
  36. border-radius: 4px;
  37. }
  38. /** btn*/
  39. /* Button */
  40. /* Button */
  41. .btn.default {
  42. color: #333333;
  43. display: inline-block;
  44. background-color: #e5e5e5;
  45. border-color: #cccccc;
  46. border-width: 1px !important;
  47. border: 1px solid transparent;
  48. border-radius: 4px;
  49. padding: 6px 13px;
  50. }
  51. .btn.default:hover,
  52. .btn.default:focus,
  53. .btn.default:active,
  54. .btn.default.active {
  55. color: #333333;
  56. background-color: #d6d6d6;
  57. }
  58. .open .btn.default.dropdown-toggle {
  59. color: #333333;
  60. background-color: #d6d6d6;
  61. }
  62. .btn.default:active,
  63. .btn.default.active {
  64. background-image: none;
  65. }
  66. .open .btn.default.dropdown-toggle {
  67. background-image: none;
  68. }
  69. .btn.default.disabled,
  70. .btn.default.disabled:hover,
  71. .btn.default.disabled:focus,
  72. .btn.default.disabled:active,
  73. .btn.default.disabled.active,
  74. .btn.default[disabled],
  75. .btn.default[disabled]:hover,
  76. .btn.default[disabled]:focus,
  77. .btn.default[disabled]:active,
  78. .btn.default[disabled].active,
  79. fieldset[disabled] .btn.default,
  80. fieldset[disabled] .btn.default:hover,
  81. fieldset[disabled] .btn.default:focus,
  82. fieldset[disabled] .btn.default:active,
  83. fieldset[disabled] .btn.default.active {
  84. background-color: #e5e5e5;
  85. }
  86. .btn.default .badge {
  87. color: #e5e5e5;
  88. background-color: #333333;
  89. }
  90. /* Button */
  91. .yellow.btn {
  92. color: white;
  93. background-color: #ffb848;
  94. border-color: "";
  95. }
  96. .yellow.btn:hover,
  97. .yellow.btn:focus,
  98. .yellow.btn:active,
  99. .yellow.btn.active {
  100. color: white;
  101. background-color: #ffac29;
  102. }
  103. .open .yellow.btn.dropdown-toggle {
  104. color: white;
  105. background-color: #ffac29;
  106. }
  107. .yellow.btn:active,
  108. .yellow.btn.active {
  109. background-image: none;
  110. }
  111. .open .yellow.btn.dropdown-toggle {
  112. background-image: none;
  113. }
  114. .yellow.btn.disabled,
  115. .yellow.btn.disabled:hover,
  116. .yellow.btn.disabled:focus,
  117. .yellow.btn.disabled:active,
  118. .yellow.btn.disabled.active,
  119. .yellow.btn[disabled],
  120. .yellow.btn[disabled]:hover,
  121. .yellow.btn[disabled]:focus,
  122. .yellow.btn[disabled]:active,
  123. .yellow.btn[disabled].active,
  124. fieldset[disabled] .yellow.btn,
  125. fieldset[disabled] .yellow.btn:hover,
  126. fieldset[disabled] .yellow.btn:focus,
  127. fieldset[disabled] .yellow.btn:active,
  128. fieldset[disabled] .yellow.btn.active {
  129. background-color: #ffb848;
  130. }
  131. .yellow.btn .badge {
  132. color: #ffb848;
  133. background-color: white;
  134. }
  135. .btn-primary {
  136. color: white;
  137. background-color: #428bca;
  138. border-color: #357ebd;
  139. }
  140. .btn-primary:hover,
  141. .btn-primary:focus,
  142. .btn-primary:active,
  143. .btn-primary.active {
  144. color: white;
  145. background-color: #347cb9;
  146. border-color: #2a6496;
  147. }
  148. .open .btn-primary.dropdown-toggle {
  149. color: white;
  150. background-color: #347cb9;
  151. border-color: #2a6496;
  152. }
  153. .btn-primary:active,
  154. .btn-primary.active {
  155. background-image: none;
  156. }
  157. .open .btn-primary.dropdown-toggle {
  158. background-image: none;
  159. }
  160. .btn-primary.disabled,
  161. .btn-primary.disabled:hover,
  162. .btn-primary.disabled:focus,
  163. .btn-primary.disabled:active,
  164. .btn-primary.disabled.active,
  165. .btn-primary[disabled],
  166. .btn-primary[disabled]:hover,
  167. .btn-primary[disabled]:focus,
  168. .btn-primary[disabled]:active,
  169. .btn-primary[disabled].active,
  170. fieldset[disabled] .btn-primary,
  171. fieldset[disabled] .btn-primary:hover,
  172. fieldset[disabled] .btn-primary:focus,
  173. fieldset[disabled] .btn-primary:active,
  174. fieldset[disabled] .btn-primary.active {
  175. background-color: #428bca;
  176. border-color: #357ebd;
  177. }
  178. .btn-primary .badge {
  179. color: #428bca;
  180. background-color: white;
  181. }
  182. .btn-info {
  183. color: white;
  184. background-color: #89c4f4;
  185. border-color: #72b8f2;
  186. }
  187. .btn-info:hover,
  188. .btn-info:focus,
  189. .btn-info:active,
  190. .btn-info.active {
  191. color: white;
  192. background-color: #6db6f1;
  193. border-color: #43a1ed;
  194. }
  195. .open .btn-info.dropdown-toggle {
  196. color: white;
  197. background-color: #6db6f1;
  198. border-color: #43a1ed;
  199. }
  200. .btn-info:active,
  201. .btn-info.active {
  202. background-image: none;
  203. }
  204. .open .btn-info.dropdown-toggle {
  205. background-image: none;
  206. }
  207. .btn-info.disabled,
  208. .btn-info.disabled:hover,
  209. .btn-info.disabled:focus,
  210. .btn-info.disabled:active,
  211. .btn-info.disabled.active,
  212. .btn-info[disabled],
  213. .btn-info[disabled]:hover,
  214. .btn-info[disabled]:focus,
  215. .btn-info[disabled]:active,
  216. .btn-info[disabled].active,
  217. fieldset[disabled] .btn-info,
  218. fieldset[disabled] .btn-info:hover,
  219. fieldset[disabled] .btn-info:focus,
  220. fieldset[disabled] .btn-info:active,
  221. fieldset[disabled] .btn-info.active {
  222. background-color: #89c4f4;
  223. border-color: #72b8f2;
  224. }
  225. .btn-info .badge {
  226. color: #89c4f4;
  227. background-color: white;
  228. }
  229. /***
  230. Blue Madison
  231. ***/
  232. /* Button */
  233. .blue-madison.btn {
  234. color: white;
  235. background-color: #578ebe;
  236. border-color: "";
  237. }
  238. .blue-madison.btn:hover,
  239. .blue-madison.btn:focus,
  240. .blue-madison.btn:active,
  241. .blue-madison.btn.active {
  242. color: white;
  243. background-color: #457fb2;
  244. }
  245. .open .blue-madison.btn.dropdown-toggle {
  246. color: white;
  247. background-color: #457fb2;
  248. }
  249. .blue-madison.btn:active,
  250. .blue-madison.btn.active {
  251. background-image: none;
  252. }
  253. .open .blue-madison.btn.dropdown-toggle {
  254. background-image: none;
  255. }
  256. .blue-madison.btn.disabled,
  257. .blue-madison.btn.disabled:hover,
  258. .blue-madison.btn.disabled:focus,
  259. .blue-madison.btn.disabled:active,
  260. .blue-madison.btn.disabled.active,
  261. .blue-madison.btn[disabled],
  262. .blue-madison.btn[disabled]:hover,
  263. .blue-madison.btn[disabled]:focus,
  264. .blue-madison.btn[disabled]:active,
  265. .blue-madison.btn[disabled].active,
  266. fieldset[disabled] .blue-madison.btn,
  267. fieldset[disabled] .blue-madison.btn:hover,
  268. fieldset[disabled] .blue-madison.btn:focus,
  269. fieldset[disabled] .blue-madison.btn:active,
  270. fieldset[disabled] .blue-madison.btn.active {
  271. background-color: #578ebe;
  272. }
  273. .blue-madison.btn .badge {
  274. color: #578ebe;
  275. background-color: white;
  276. }
  277. .red.btn {
  278. color: white !important;
  279. background-color: #d84a38 !important;
  280. border-color: "" !important;
  281. }
  282. .red {
  283. color: white !important;
  284. background-color: #d84a38 !important;
  285. }
  286. .red.btn:hover,
  287. .red.btn:focus,
  288. .red.btn:active,
  289. .red.btn.active {
  290. color: white !important;
  291. background-color: #ca3a28 !important;
  292. }
  293. /***
  294. Grey Cascade
  295. ***/
  296. /* Button */
  297. .grey-cascade.btn {
  298. color: white;
  299. background-color: #95a5a6;
  300. border-color: "";
  301. }
  302. .grey-cascade.btn:hover,
  303. .grey-cascade.btn:focus,
  304. .grey-cascade.btn:active,
  305. .grey-cascade.btn.active {
  306. color: white;
  307. background-color: #849798;
  308. }
  309. .open .grey-cascade.btn.dropdown-toggle {
  310. color: white;
  311. background-color: #849798;
  312. }
  313. .grey-cascade.btn:active,
  314. .grey-cascade.btn.active {
  315. background-image: none;
  316. }
  317. .open .grey-cascade.btn.dropdown-toggle {
  318. background-image: none;
  319. }
  320. .grey-cascade.btn.disabled,
  321. .grey-cascade.btn.disabled:hover,
  322. .grey-cascade.btn.disabled:focus,
  323. .grey-cascade.btn.disabled:active,
  324. .grey-cascade.btn.disabled.active,
  325. .grey-cascade.btn[disabled],
  326. .grey-cascade.btn[disabled]:hover,
  327. .grey-cascade.btn[disabled]:focus,
  328. .grey-cascade.btn[disabled]:active,
  329. .grey-cascade.btn[disabled].active,
  330. fieldset[disabled] .grey-cascade.btn,
  331. fieldset[disabled] .grey-cascade.btn:hover,
  332. fieldset[disabled] .grey-cascade.btn:focus,
  333. fieldset[disabled] .grey-cascade.btn:active,
  334. fieldset[disabled] .grey-cascade.btn.active {
  335. background-color: #95a5a6;
  336. }
  337. .grey-cascade.btn .badge {
  338. color: #95a5a6;
  339. background-color: white;
  340. }
  341. /***********
  342. Green Colors
  343. ************/
  344. /* Bootstrap buttons */
  345. .btn-default {
  346. border-width: 1px;
  347. padding: 6px 13px;
  348. }
  349. .btn-default {
  350. color: #333333;
  351. background-color: #e5e5e5;
  352. border-color: #cccccc;
  353. }
  354. .btn-default:hover,
  355. .btn-default:focus,
  356. .btn-default:active,
  357. .btn-default.active {
  358. color: #333333;
  359. background-color: #f0f0f0;
  360. border-color: #b3b3b3;
  361. }
  362. .open .btn-default.dropdown-toggle {
  363. color: #333333;
  364. background-color: #f0f0f0;
  365. border-color: #b3b3b3;
  366. }
  367. .btn-default:active,
  368. .btn-default.active {
  369. background-image: none;
  370. }
  371. .open .btn-default.dropdown-toggle {
  372. background-image: none;
  373. }
  374. .btn-default.disabled,
  375. .btn-default.disabled:hover,
  376. .btn-default.disabled:focus,
  377. .btn-default.disabled:active,
  378. .btn-default.disabled.active,
  379. .btn-default[disabled],
  380. .btn-default[disabled]:hover,
  381. .btn-default[disabled]:focus,
  382. .btn-default[disabled]:active,
  383. .btn-default[disabled].active,
  384. fieldset[disabled] .btn-default,
  385. fieldset[disabled] .btn-default:hover,
  386. fieldset[disabled] .btn-default:focus,
  387. fieldset[disabled] .btn-default:active,
  388. fieldset[disabled] .btn-default.active {
  389. background-color: white;
  390. border-color: #cccccc;
  391. }
  392. .btn-default .badge {
  393. color: white;
  394. background-color: #333333;
  395. }
  396. /***
  397. Green Default
  398. ***/
  399. /* Button */
  400. .green.btn {
  401. color: white;
  402. background-color: #5FB878;
  403. border-color: "";
  404. }
  405. .green {
  406. color: white;
  407. background-color: #5FB878;
  408. }
  409. .green.btn:hover,
  410. .green.btn:focus,
  411. .green.btn:active,
  412. .green.btn.active {
  413. color: white;
  414. background-color: #2e933d;
  415. }
  416. .open .green.btn.dropdown-toggle {
  417. color: white;
  418. background-color: #2e933d;
  419. }
  420. .green.btn:active,
  421. .green.btn.active {
  422. background-image: none;
  423. }
  424. .open .green.btn.dropdown-toggle {
  425. background-image: none;
  426. }
  427. .green.btn.disabled,
  428. .green.btn.disabled:hover,
  429. .green.btn.disabled:focus,
  430. .green.btn.disabled:active,
  431. .green.btn.disabled.active,
  432. .green.btn[disabled],
  433. .green.btn[disabled]:hover,
  434. .green.btn[disabled]:focus,
  435. .green.btn[disabled]:active,
  436. .green.btn[disabled].active,
  437. fieldset[disabled] .green.btn,
  438. fieldset[disabled] .green.btn:hover,
  439. fieldset[disabled] .green.btn:focus,
  440. fieldset[disabled] .green.btn:active,
  441. fieldset[disabled] .green.btn.active {
  442. background-color: #5FB878;
  443. }
  444. .green.btn .badge {
  445. color: #5FB878;
  446. background-color: white;
  447. }
  448. /***********
  449. Purple Colors
  450. ************/
  451. /***
  452. Purple Default
  453. ***/
  454. /* Button */
  455. .purple.btn {
  456. color: white;
  457. background-color: #8e44ad;
  458. border-color: "";
  459. }
  460. .purple.btn:hover,
  461. .purple.btn:focus,
  462. .purple.btn:active,
  463. .purple.btn.active {
  464. color: white;
  465. background-color: #7c3b97;
  466. }
  467. .open .purple.btn.dropdown-toggle {
  468. color: white;
  469. background-color: #7c3b97;
  470. }
  471. .purple.btn:active,
  472. .purple.btn.active {
  473. background-image: none;
  474. }
  475. .open .purple.btn.dropdown-toggle {
  476. background-image: none;
  477. }
  478. .purple.btn.disabled,
  479. .purple.btn.disabled:hover,
  480. .purple.btn.disabled:focus,
  481. .purple.btn.disabled:active,
  482. .purple.btn.disabled.active,
  483. .purple.btn[disabled],
  484. .purple.btn[disabled]:hover,
  485. .purple.btn[disabled]:focus,
  486. .purple.btn[disabled]:active,
  487. .purple.btn[disabled].active,
  488. fieldset[disabled] .purple.btn,
  489. fieldset[disabled] .purple.btn:hover,
  490. fieldset[disabled] .purple.btn:focus,
  491. fieldset[disabled] .purple.btn:active,
  492. fieldset[disabled] .purple.btn.active {
  493. background-color: #8e44ad;
  494. }
  495. .purple.btn .badge {
  496. color: #8e44ad;
  497. background-color: white;
  498. }
  499. /* Button Strip */
  500. .btn.purple-stripe {
  501. border-left: 3px solid #8e44ad;
  502. }
  503. /***
  504. Blue Hoki
  505. ***/
  506. /* Button */
  507. .blue-hoki.btn {
  508. color: white;
  509. background-color: #67809f;
  510. border-color: "";
  511. }
  512. .blue-hoki.btn:hover,
  513. .blue-hoki.btn:focus,
  514. .blue-hoki.btn:active,
  515. .blue-hoki.btn.active {
  516. color: white;
  517. background-color: #5a718e;
  518. }
  519. .open .blue-hoki.btn.dropdown-toggle {
  520. color: white;
  521. background-color: #5a718e;
  522. }
  523. .blue-hoki.btn:active,
  524. .blue-hoki.btn.active {
  525. background-image: none;
  526. }
  527. .open .blue-hoki.btn.dropdown-toggle {
  528. background-image: none;
  529. }
  530. .blue-hoki.btn.disabled,
  531. .blue-hoki.btn.disabled:hover,
  532. .blue-hoki.btn.disabled:focus,
  533. .blue-hoki.btn.disabled:active,
  534. .blue-hoki.btn.disabled.active,
  535. .blue-hoki.btn[disabled],
  536. .blue-hoki.btn[disabled]:hover,
  537. .blue-hoki.btn[disabled]:focus,
  538. .blue-hoki.btn[disabled]:active,
  539. .blue-hoki.btn[disabled].active,
  540. fieldset[disabled] .blue-hoki.btn,
  541. fieldset[disabled] .blue-hoki.btn:hover,
  542. fieldset[disabled] .blue-hoki.btn:focus,
  543. fieldset[disabled] .blue-hoki.btn:active,
  544. fieldset[disabled] .blue-hoki.btn.active {
  545. background-color: #67809f;
  546. }
  547. .blue-hoki.btn .badge {
  548. color: #67809f;
  549. background-color: white;
  550. }
  551. /* Button Strip */
  552. .btn.blue-hoki-stripe {
  553. border-left: 3px solid #67809f;
  554. }
  555. /* Portlet */
  556. .portlet > .portlet-body.blue-hoki,
  557. .portlet.blue-hoki {
  558. background-color: #67809f;
  559. }
  560. .portlet.solid.blue-hoki > .portlet-title,
  561. .portlet.solid.blue-hoki > .portlet-body {
  562. border: 0;
  563. color: white;
  564. }
  565. .portlet.solid.blue-hoki > .portlet-title > .caption > i {
  566. color: white;
  567. }
  568. .portlet.box.blue-hoki {
  569. border: 1px solid #869ab3;
  570. border-top: 0;
  571. }
  572. .portlet.box.blue-hoki > .portlet-title {
  573. background-color: #67809f;
  574. }
  575. .portlet.box.blue-hoki > .portlet-title > .caption > i {
  576. color: white;
  577. }
  578. .portlet.box.blue-hoki > .portlet-title > .actions .btn-default {
  579. background: transparent !important;
  580. background-color: transparent !important;
  581. border: 1px solid #acb9ca;
  582. color: #bbc7d4;
  583. }
  584. .portlet.box.blue-hoki > .portlet-title > .actions .btn-default:hover,
  585. .portlet.box.blue-hoki > .portlet-title > .actions .btn-default:focus,
  586. .portlet.box.blue-hoki > .portlet-title > .actions .btn-default:active,
  587. .portlet.box.blue-hoki > .portlet-title > .actions .btn-default.active {
  588. border: 1px solid #cbd4de;
  589. color: #dbe1e8;
  590. }
  591. /* Statistic Block */
  592. .dashboard-stat.blue-hoki {
  593. background-color: #67809f;
  594. }
  595. .dashboard-stat.blue-hoki .visual > i {
  596. color: white;
  597. opacity: 0.3;
  598. filter: alpha(opacity=30);
  599. }
  600. .dashboard-stat.blue-hoki .details .number {
  601. color: white;
  602. }
  603. .dashboard-stat.blue-hoki .details .desc {
  604. color: white;
  605. opacity: 0.8;
  606. filter: alpha(opacity=80);
  607. }
  608. .dashboard-stat.blue-hoki .more {
  609. color: white;
  610. background-color: #5e7694;
  611. }
  612. /* General Element */
  613. .bg-blue-hoki {
  614. border-color: #67809f !important;
  615. background-image: none !important;
  616. background-color: #67809f !important;
  617. color: white !important;
  618. }
  619. /* General Text & Icon Font Colors */
  620. .font-blue-hoki {
  621. color: #67809f !important;
  622. }
  623. .btn {
  624. position: relative;
  625. float: left;
  626. border-width: 0;
  627. padding: 7px 8px;
  628. font-size: 14px;
  629. outline: none !important;
  630. background-image: none !important;
  631. filter: none;
  632. -webkit-box-shadow: none;
  633. -moz-box-shadow: none;
  634. box-shadow: none;
  635. text-shadow: none;
  636. margin-left: -1px;
  637. border: 1px solid transparent;
  638. /*border-radius: 4px;*/
  639. cursor: pointer;
  640. width: 101px;
  641. }
  642. .padBtn {
  643. padding: 6px 8px;
  644. margin-left: 6px;
  645. }
  646. /**********
  647. Blue Colors
  648. ***********/
  649. /***
  650. Blue Default
  651. ***/
  652. /* Button */
  653. .blue.btn {
  654. color: white;
  655. background-color: #4b8df8;
  656. border-color: "";
  657. }
  658. .blue.btn:hover,
  659. .blue.btn:focus,
  660. .blue.btn:active,
  661. .blue.btn.active {
  662. color: white;
  663. background-color: #2e7af7;
  664. }
  665. .open .blue.btn.dropdown-toggle {
  666. color: white;
  667. background-color: #2e7af7;
  668. }
  669. .blue.btn:active,
  670. .blue.btn.active {
  671. background-image: none;
  672. }
  673. .open .blue.btn.dropdown-toggle {
  674. background-image: none;
  675. }
  676. .blue.btn.disabled,
  677. .blue.btn.disabled:hover,
  678. .blue.btn.disabled:focus,
  679. .blue.btn.disabled:active,
  680. .blue.btn.disabled.active,
  681. .blue.btn[disabled],
  682. .blue.btn[disabled]:hover,
  683. .blue.btn[disabled]:focus,
  684. .blue.btn[disabled]:active,
  685. .blue.btn[disabled].active,
  686. fieldset[disabled] .blue.btn,
  687. fieldset[disabled] .blue.btn:hover,
  688. fieldset[disabled] .blue.btn:focus,
  689. fieldset[disabled] .blue.btn:active,
  690. fieldset[disabled] .blue.btn.active {
  691. background-color: #4b8df8;
  692. }
  693. .blue.btn .badge {
  694. color: #4b8df8;
  695. background-color: white;
  696. }
  697. .btn-success {
  698. color: white;
  699. background-color: #45b6af;
  700. border-color: #45b6af;
  701. }
  702. .btn-success:hover,
  703. .btn-success:focus,
  704. .btn-success:active,
  705. .btn-success.active {
  706. color: white;
  707. background-color: #3da09a;
  708. border-color: #307f7a;
  709. }
  710. .open .btn-success.dropdown-toggle {
  711. color: white;
  712. background-color: #3da09a;
  713. border-color: #307f7a;
  714. }
  715. .btn-success:active,
  716. .btn-success.active {
  717. background-image: none;
  718. }
  719. .open .btn-success.dropdown-toggle {
  720. background-image: none;
  721. }
  722. .btn-success.disabled,
  723. .btn-success.disabled:hover,
  724. .btn-success.disabled:focus,
  725. .btn-success.disabled:active,
  726. .btn-success.disabled.active,
  727. .btn-success[disabled],
  728. .btn-success[disabled]:hover,
  729. .btn-success[disabled]:focus,
  730. .btn-success[disabled]:active,
  731. .btn-success[disabled].active,
  732. fieldset[disabled] .btn-success,
  733. fieldset[disabled] .btn-success:hover,
  734. fieldset[disabled] .btn-success:focus,
  735. fieldset[disabled] .btn-success:active,
  736. fieldset[disabled] .btn-success.active {
  737. background-color: #45b6af;
  738. border-color: #3ea49d;
  739. }
  740. .btn-success .badge {
  741. color: #45b6af;
  742. background-color: white;
  743. }
  744. /***
  745. Green Meadow
  746. ***/
  747. /* Button */
  748. .green-meadow.btn {
  749. color: white;
  750. background-color: #1bbc9b;
  751. border-color: "";
  752. }
  753. .green-meadow.btn:hover,
  754. .green-meadow.btn:focus,
  755. .green-meadow.btn:active,
  756. .green-meadow.btn.active {
  757. color: white;
  758. background-color: #17a185;
  759. }
  760. .open .green-meadow.btn.dropdown-toggle {
  761. color: white;
  762. background-color: #17a185;
  763. }
  764. .green-meadow.btn:active,
  765. .green-meadow.btn.active {
  766. background-image: none;
  767. }
  768. .open .green-meadow.btn.dropdown-toggle {
  769. background-image: none;
  770. }
  771. .green-meadow.btn.disabled,
  772. .green-meadow.btn.disabled:hover,
  773. .green-meadow.btn.disabled:focus,
  774. .green-meadow.btn.disabled:active,
  775. .green-meadow.btn.disabled.active,
  776. .green-meadow.btn[disabled],
  777. .green-meadow.btn[disabled]:hover,
  778. .green-meadow.btn[disabled]:focus,
  779. .green-meadow.btn[disabled]:active,
  780. .green-meadow.btn[disabled].active,
  781. fieldset[disabled] .green-meadow.btn,
  782. fieldset[disabled] .green-meadow.btn:hover,
  783. fieldset[disabled] .green-meadow.btn:focus,
  784. fieldset[disabled] .green-meadow.btn:active,
  785. fieldset[disabled] .green-meadow.btn.active {
  786. background-color: #1bbc9b;
  787. }
  788. .green-meadow.btn .badge {
  789. color: #1bbc9b;
  790. background-color: white;
  791. }
  792. /* Button Strip */
  793. .btn.green-meadow-stripe {
  794. border-left: 3px solid #1bbc9b;
  795. }
  796. /* Portlet */
  797. .portlet > .portlet-body.green-meadow,
  798. .portlet.green-meadow {
  799. background-color: #1bbc9b;
  800. }
  801. .portlet.solid.green-meadow > .portlet-title,
  802. .portlet.solid.green-meadow > .portlet-body {
  803. border: 0;
  804. color: white;
  805. }
  806. .portlet.solid.green-meadow > .portlet-title > .caption > i {
  807. color: white;
  808. }
  809. .portlet.box.green-meadow {
  810. border: 1px solid #2ae0bb;
  811. border-top: 0;
  812. }
  813. .portlet.box.green-meadow > .portlet-title {
  814. background-color: #1bbc9b;
  815. }
  816. .portlet.box.green-meadow > .portlet-title > .caption > i {
  817. color: white;
  818. }
  819. .portlet.box.green-meadow > .portlet-title > .actions .btn-default {
  820. background: transparent !important;
  821. background-color: transparent !important;
  822. border: 1px solid #5fe8cc;
  823. color: #75ebd3;
  824. }
  825. .portlet.box.green-meadow > .portlet-title > .actions .btn-default:hover,
  826. .portlet.box.green-meadow > .portlet-title > .actions .btn-default:focus,
  827. .portlet.box.green-meadow > .portlet-title > .actions .btn-default:active,
  828. .portlet.box.green-meadow > .portlet-title > .actions .btn-default.active {
  829. border: 1px solid #8ceeda;
  830. color: #a2f2e1;
  831. }
  832. /* Statistic Block */
  833. .dashboard-stat.green-meadow {
  834. background-color: #1bbc9b;
  835. }
  836. .dashboard-stat.green-meadow .visual > i {
  837. color: white;
  838. opacity: 0.3;
  839. filter: alpha(opacity=30);
  840. }
  841. .dashboard-stat.green-meadow .details .number {
  842. color: white;
  843. }
  844. .dashboard-stat.green-meadow .details .desc {
  845. color: white;
  846. opacity: 0.8;
  847. filter: alpha(opacity=80);
  848. }
  849. .dashboard-stat.green-meadow .more {
  850. color: white;
  851. background-color: #18aa8c;
  852. }
  853. /* General Element */
  854. .bg-green-meadow {
  855. border-color: #1bbc9b !important;
  856. background-image: none !important;
  857. background-color: #1bbc9b !important;
  858. color: white !important;
  859. }
  860. /* General Text & Icon Font Colors */
  861. .font-green-meadow {
  862. color: #1bbc9b !important;
  863. }
  864. .TopToolbar {
  865. height: 45px;
  866. }
  867. .checkD {
  868. position: relative;
  869. }
  870. .checkD span {
  871. display: inline-block;
  872. position: absolute;
  873. }
  874. .checkD a {
  875. line-height: 1.42857143;
  876. position: relative;
  877. display: block;
  878. text-shadow: none;
  879. color: #424242;
  880. font-size: 15px;
  881. padding: 9px 15px;
  882. text-decoration: none;
  883. text-align: right;
  884. }
  885. .checkD input {
  886. position: absolute;
  887. left: 0;
  888. top: 0;
  889. bottom: 0;
  890. right: 0;
  891. opacity: 0;
  892. margin: 0;
  893. width: 100%;
  894. height: 100%;
  895. cursor: pointer;
  896. }
  897. .checkD i.checkI {
  898. line-height: 1.62857;
  899. z-index: 1;
  900. position: absolute;
  901. top: 9px;
  902. left: 10px;
  903. display: inline-block;
  904. width: 12px;
  905. height: 12px;
  906. vertical-align: -2px;
  907. border-radius: 3px;
  908. font-size: 20px;
  909. }
  910. .checkD input:checked + span {
  911. background-color: #5cb95c;
  912. border-color: #5cb95c;
  913. }
  914. .checkD input:checked + span i {
  915. border-color: #fff;
  916. text-align: center;
  917. }
  918. .checkD span i:after {
  919. content: "\f096";
  920. color: #444;
  921. position: absolute;
  922. left: -1px;
  923. top: -4px;
  924. width: 12px;
  925. height: 12px;
  926. font-weight: 700;
  927. font-style: normal;
  928. transform-origin: center bottom;
  929. }
  930. .checkD input:checked + span i:after {
  931. content: "\f046";
  932. animation: move 0.2s ease-in;
  933. animation-fill-mode: forwards;
  934. }
  935. .btn-group {
  936. position: relative;
  937. display: inline-block;
  938. vertical-align: middle;
  939. padding-left: 2px;
  940. margin-top: 5px;
  941. white-space: nowrap;
  942. }
  943. .btn-group > .btn:first-child {
  944. margin-left: 0;
  945. }
  946. .btn-group lable {
  947. text-align: center;
  948. cursor: pointer;
  949. }
  950. .btn-group lable span {
  951. display: inline-block;
  952. }
  953. .btn-group lable input {
  954. position: absolute;
  955. left: 0;
  956. top: 0;
  957. bottom: 0;
  958. right: 0;
  959. opacity: 0;
  960. margin: 0;
  961. width: 100%;
  962. height: 100%;
  963. cursor: pointer;
  964. z-index: 55;
  965. }
  966. .btn-group lable i.checkI {
  967. position: absolute;
  968. top: 9px;
  969. left: 10px;
  970. display: inline-block;
  971. width: 12px;
  972. height: 12px;
  973. vertical-align: -2px;
  974. border-radius: 3px;
  975. font-size: 20px;
  976. }
  977. .btn-group lable input:checked + span {
  978. background-color: #5cb95c;
  979. border-color: #5cb95c;
  980. }
  981. .btn-group lable input:checked + span i {
  982. border-color: #fff;
  983. text-align: center;
  984. }
  985. .btn-group lable span i:after {
  986. content: "\f096";
  987. color: #fff;
  988. position: absolute;
  989. left: -1px;
  990. top: -4px;
  991. width: 12px;
  992. height: 12px;
  993. font-weight: 700;
  994. font-style: normal;
  995. transform-origin: center bottom;
  996. }
  997. .btn-group lable input:checked + span i:after {
  998. content: "\f046";
  999. animation: move 0.2s ease-in;
  1000. animation-fill-mode: forwards;
  1001. }
  1002. .btn-group .btn.dropdown-toggle,
  1003. .btn-group .btn-group .btn.dropdown-toggle,
  1004. .btn-group .btn:hover,
  1005. .btn-group .btn:disabled,
  1006. .btn-group .btn[disabled],
  1007. .btn-group .btn:focus,
  1008. .btn-group .btn:active,
  1009. .btn-group .btn.active {
  1010. outline: none !important;
  1011. background-image: none !important;
  1012. filter: none;
  1013. -webkit-box-shadow: none;
  1014. -moz-box-shadow: none;
  1015. box-shadow: none;
  1016. text-shadow: none;
  1017. }
  1018. .btn-group > li {
  1019. /*float: left;*/
  1020. display: inline-block;
  1021. list-style: none;
  1022. margin-left: 10px;
  1023. line-height: 17px;
  1024. }
  1025. .btn-group > li i.icocI {
  1026. position: absolute;
  1027. left: 10px;
  1028. top: 8px;
  1029. }
  1030. > li:first-child {
  1031. margin-left: 0px;
  1032. }
  1033. .search-form-default {
  1034. margin-top: 0px;
  1035. margin-bottom: 10px;
  1036. background: #f0f6fa;
  1037. padding: 12px 14px;
  1038. margin-right: 2px;
  1039. }
  1040. .input-group {
  1041. position: relative;
  1042. display: table;
  1043. border-collapse: separate;
  1044. width: 100%;
  1045. }
  1046. .input-group .form-control {
  1047. display: table-cell;
  1048. width: 99%;
  1049. font-size: 16px;
  1050. padding: 6px 12px;
  1051. box-sizing: border-box;
  1052. height: 34px;
  1053. }
  1054. .input-group .input-group-btn {
  1055. position: relative;
  1056. font-size: 0;
  1057. display: table-cell;
  1058. width: 1%;
  1059. white-space: nowrap;
  1060. vertical-align: middle;
  1061. }
  1062. .input-group .input-group-btn button {
  1063. margin-left: 0px;
  1064. width: 100px;
  1065. margin-right: 5px !important;
  1066. height: 34px;
  1067. }
  1068. .input-group .input-group-btn:last-of-type button {
  1069. margin-right: 0px !important;
  1070. }
  1071. .input-group-addon {
  1072. border-color: #e5e5e5;
  1073. background: #e5e5e5;
  1074. min-width: 20px;
  1075. display: table-cell;
  1076. padding: 6px 12px;
  1077. font-size: 14px;
  1078. font-weight: 400;
  1079. line-height: 1;
  1080. color: #555;
  1081. text-align: center;
  1082. border: 1px solid #ccc;
  1083. border-radius: 0px;
  1084. border-right: 0;
  1085. width: 1%;
  1086. white-space: nowrap;
  1087. vertical-align: middle;
  1088. }
  1089. .spanvertical {
  1090. border-left: 1px solid #ccc;
  1091. margin: 0px 5px;
  1092. float: left;
  1093. height: 32px;
  1094. }
  1095. .MainTable {
  1096. width: 100%;
  1097. border-collapse: collapse;
  1098. background-color: #f0f6fa;
  1099. table-layout: fixed;
  1100. }
  1101. .MainTable tbody td {
  1102. padding-bottom: 10px;
  1103. text-align: left;
  1104. }
  1105. .MainTable tbody td > div {
  1106. padding-right: 10px;
  1107. }
  1108. .MainTable tbody td input[type=text] {
  1109. outline: none;
  1110. width: 100%;
  1111. }
  1112. .MainTable tbody tr td:first-child {
  1113. padding-left: 15px;
  1114. }
  1115. /***tab***/
  1116. .tabbable-custom {
  1117. margin-bottom: 15px;
  1118. padding: 0px;
  1119. overflow: hidden;
  1120. /* justified tabs */
  1121. /* boxless tabs */
  1122. /* below justified tabs */
  1123. /* full width tabs */
  1124. /* below tabs */
  1125. }
  1126. .nav {
  1127. margin-bottom: 0;
  1128. padding-left: 0;
  1129. list-style: none;
  1130. display: table;
  1131. white-space: nowrap;
  1132. width: 10000px;
  1133. }
  1134. .nav-tabs > li {
  1135. float: left;
  1136. margin-bottom: -1px;
  1137. }
  1138. .nav-tabs > li > a {
  1139. line-height: 1.42857143;
  1140. position: relative;
  1141. display: block;
  1142. text-shadow: none;
  1143. color: #424242;
  1144. font-size: 15px;
  1145. padding: 9px 15px;
  1146. text-decoration: none;
  1147. }
  1148. .nav-tabs > li.active > a,
  1149. .nav-tabs > li.active > a:hover,
  1150. .nav-tabs > li.active > a:focus {
  1151. color: #555;
  1152. background-color: #fff;
  1153. border: 1px solid #ddd;
  1154. border-bottom-color: transparent;
  1155. cursor: default;
  1156. }
  1157. .nav-tabs > li.active > label > a,
  1158. .nav-tabs > li.active > label > a:hover,
  1159. .nav-tabs > li.active > label > a:focus {
  1160. color: #555;
  1161. background-color: #fff;
  1162. border: 1px solid #ddd;
  1163. border-bottom-color: transparent;
  1164. cursor: default;
  1165. }
  1166. .tabbable-custom > .nav-tabs {
  1167. border: none;
  1168. margin: 0px;
  1169. }
  1170. .tabbable-custom > .nav-tabs > li {
  1171. margin-right: 2px;
  1172. border-top: 2px solid transparent;
  1173. }
  1174. .tabbable-custom > .nav-tabs > li > a {
  1175. margin-right: 0;
  1176. }
  1177. .tabbable-custom > .nav-tabs > li > a:hover {
  1178. background: none;
  1179. border-color: transparent;
  1180. }
  1181. .tabbable-custom > .nav-tabs > li.active {
  1182. border-top: 3px solid #f3565d;
  1183. margin-top: 0;
  1184. position: relative;
  1185. }
  1186. .tabbable-custom > .nav-tabs > li.active > a {
  1187. border-top: none;
  1188. font-weight: 400;
  1189. }
  1190. .tabbable-custom > .nav-tabs > li.active > a:hover {
  1191. border-top: none;
  1192. background: #fff;
  1193. border-color: #d4d4d4 #d4d4d4 transparent;
  1194. }
  1195. .tabbable-custom > .tab-content {
  1196. background-color: #fff;
  1197. border: 1px solid #ddd;
  1198. -webkit-border-radius: 0;
  1199. -moz-border-radius: 0;
  1200. border-radius: 0;
  1201. padding: 10px;
  1202. }
  1203. .tab-content > .tab-pane {
  1204. display: none;
  1205. }
  1206. .tab-content > .tab-pane.active {
  1207. display: block;
  1208. }
  1209. .tabbable-custom.nav-justified .tab-content {
  1210. margin-top: -1px;
  1211. }
  1212. .tabbable-custom.boxless > .tab-content {
  1213. padding: 15px 0;
  1214. border-left: none;
  1215. border-right: none;
  1216. border-bottom: none;
  1217. }
  1218. .tabbable-custom.tabs-below.nav-justified .tab-content {
  1219. margin-top: 0px;
  1220. margin-bottom: -2px;
  1221. }
  1222. .tabbable-custom.tabbable-full-width .nav-tabs > li > a {
  1223. color: #424242;
  1224. font-size: 15px;
  1225. padding: 9px 15px;
  1226. }
  1227. .tabbable-custom.tabbable-full-width > .tab-content {
  1228. padding: 15px 0;
  1229. border-left: none;
  1230. border-right: none;
  1231. border-bottom: none;
  1232. }
  1233. .tabbable-custom.tabs-below .nav-tabs > li > a {
  1234. border-top: none;
  1235. border-bottom: 2px solid transparent;
  1236. margin-top: -1px;
  1237. }
  1238. .tabbable-custom.tabs-below .nav-tabs > li.active {
  1239. border-top: none;
  1240. border-bottom: 3px solid #d12610;
  1241. margin-bottom: 0;
  1242. position: relative;
  1243. }
  1244. .tabbable-custom.tabs-below .nav-tabs > li.active > a {
  1245. border-bottom: none;
  1246. }
  1247. .tabbable-custom.tabs-below .nav-tabs > li.active > a:hover {
  1248. background: #fff;
  1249. border-color: #d4d4d4 #d4d4d4 transparent;
  1250. }
  1251. .DivTr {
  1252. display: table;
  1253. }
  1254. .DivTd {
  1255. display: table-cell;
  1256. }
  1257. .DivTd input[type=text] {
  1258. outline: none;
  1259. width: 100%;
  1260. line-height: 24px;
  1261. color: #2a6496;
  1262. font-size: 14px;
  1263. }
  1264. .Disabled {
  1265. cursor: not-allowed !important;
  1266. background-color: #eeeeee;
  1267. }
  1268. input[type="text"] {
  1269. outline: 0;
  1270. box-sizing: border-box;
  1271. border: 1px solid #e5e5e5;
  1272. padding-left: 3px;
  1273. }
  1274. input[type=text]:focus {
  1275. border: 1px solid #999999;
  1276. -webkit-box-shadow: none;
  1277. box-shadow: none;
  1278. }
  1279. .dropdown-toggle span {
  1280. width: 94px;
  1281. display: block;
  1282. overflow: hidden;
  1283. position: absolute;
  1284. line-height: 32px;
  1285. top: 0;
  1286. }
  1287. .dropdown-toggle i {
  1288. position: absolute;
  1289. right: 5px;
  1290. top: 0;
  1291. line-height: 32px;
  1292. }
  1293. .dropdown-menu.open {
  1294. display: block;
  1295. }
  1296. .dropdown-menu {
  1297. position: absolute;
  1298. top: 100%;
  1299. min-width: 100%;
  1300. left: -1px;
  1301. z-index: 1000;
  1302. display: none;
  1303. float: left;
  1304. list-style: none;
  1305. text-shadow: none;
  1306. padding: 0px;
  1307. margin: 0px;
  1308. background-color: #ffffff;
  1309. box-shadow: 5px 5px rgba(102, 102, 102, 0.1);
  1310. border: 1px solid #e9e8e8;
  1311. font-size: 14px;
  1312. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1313. max-height: 300px;
  1314. overflow-y: auto;
  1315. overflow-x: hidden;
  1316. }
  1317. .dropdown-menu li {
  1318. text-align: center;
  1319. line-height: 30px;
  1320. margin-right: 0;
  1321. }
  1322. .dropdown-menu li > a {
  1323. padding: 6px 17px;
  1324. color: #333;
  1325. text-decoration: none;
  1326. clear: both;
  1327. line-height: 18px;
  1328. white-space: nowrap;
  1329. display: block;
  1330. font-weight: normal;
  1331. text-align: left;
  1332. position: relative;
  1333. }
  1334. .dropdown-menu li > a:hover {
  1335. background-color: #eee;
  1336. }
  1337. .dropdown-menu li[class="Ligroup"] > a {
  1338. font-weight: bold;
  1339. padding-left: 2px;
  1340. }
  1341. .dropdownLi span {
  1342. width: 94px;
  1343. display: block;
  1344. overflow: hidden;
  1345. position: absolute;
  1346. line-height: 32px;
  1347. top: 0;
  1348. }
  1349. .dropdownLi .fa-angle-down {
  1350. position: absolute;
  1351. right: 5px;
  1352. top: 0;
  1353. line-height: 32px;
  1354. }
  1355. .dropdownLi + ul > li > a {
  1356. padding-left: 35px;
  1357. }
  1358. .circle {
  1359. width: 20px;
  1360. height: 20px;
  1361. border-radius: 10px;
  1362. display: inline;
  1363. padding-left: 3px;
  1364. padding-right: 3px;
  1365. padding-bottom: 1px;
  1366. color: #fff;
  1367. font-size: 10px !important;
  1368. }
  1369. .progress {
  1370. height: 13px;
  1371. overflow: hidden;
  1372. background-color: #e2e2e2;
  1373. border-radius: 4px;
  1374. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  1375. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  1376. }
  1377. .progress-bar {
  1378. float: left;
  1379. width: 0;
  1380. height: 100%;
  1381. font-size: 12px;
  1382. line-height: 20px;
  1383. color: #fff;
  1384. text-align: center;
  1385. background-color: #428bca;
  1386. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  1387. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  1388. -webkit-transition: width .6s ease;
  1389. transition: width .6s ease;
  1390. }
  1391. .progress-noneimg {
  1392. background-image: none !important;
  1393. }
  1394. .progress-striped .progress-bar {
  1395. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1396. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1397. background-size: 40px 40px;
  1398. }
  1399. .progress.active .progress-bar {
  1400. -webkit-animation: progress-bar-stripes 2s linear infinite;
  1401. animation: progress-bar-stripes 2s linear infinite;
  1402. }
  1403. .progress-bar-success {
  1404. background-color: #5cb85c;
  1405. }
  1406. .progress-striped .progress-bar-success {
  1407. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1408. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1409. }
  1410. .progress-bar-info {
  1411. background-color: #5bc0de;
  1412. }
  1413. .progress-striped .progress-bar-info {
  1414. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1415. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1416. }
  1417. .progress-bar-warning {
  1418. background-color: #f0ad4e;
  1419. }
  1420. .progress-striped .progress-bar-warning {
  1421. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1422. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1423. }
  1424. .progress-bar-danger {
  1425. background-color: #d9534f;
  1426. }
  1427. .progress-striped .progress-bar-danger {
  1428. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1429. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1430. }
  1431. .progressSpan {
  1432. position: absolute;
  1433. top: -5px;
  1434. right: 4px;
  1435. font-weight: initial !important;
  1436. }
  1437. .icontool {
  1438. background: url();
  1439. font-family: FontAwesome;
  1440. color: #333;
  1441. text-decoration: none !important;
  1442. }
  1443. .panel-body-noheader {
  1444. border-top-width: 0 !important;
  1445. }
  1446. /***
  1447. Custom vertical inline menu
  1448. ***/
  1449. .ver-inline-menu {
  1450. padding: 0;
  1451. margin: 0;
  1452. list-style: none;
  1453. }
  1454. .ver-inline-menu li {
  1455. position: relative;
  1456. /*margin-bottom: 1px;*/
  1457. border-bottom: 1px solid white;
  1458. line-height: 37px;
  1459. }
  1460. .ver-inline-menu li i {
  1461. display: inline-block;
  1462. font-size: 15px;
  1463. color: #b9cbd5;
  1464. line-height: 37px;
  1465. width: 37px;
  1466. text-align: center;
  1467. background: #e0eaf0 !important;
  1468. }
  1469. .ver-inline-menu li a {
  1470. color: #557386;
  1471. display: block;
  1472. background: #f0f6fa;
  1473. border-left: solid 2px #c4d5df;
  1474. font-size: 14px;
  1475. text-decoration: none;
  1476. cursor: pointer;
  1477. }
  1478. .ver-inline-menu li:hover a {
  1479. background: #e0eaf0;
  1480. text-decoration: none;
  1481. }
  1482. .ver-inline-menu li:hover i {
  1483. color: #fff;
  1484. background: #c4d5df !important;
  1485. }
  1486. .ver-inline-menu li.active a {
  1487. border-left: solid 2px #0c91e5;
  1488. }
  1489. .ver-inline-menu li.active i {
  1490. background: #0c91e5 !important;
  1491. }
  1492. .ver-inline-menu li.active a,
  1493. .ver-inline-menu li.active i {
  1494. color: #fff;
  1495. background: #169ef4;
  1496. text-decoration: none;
  1497. }
  1498. .ver-inline-menu li.active a,
  1499. .ver-inline-menu li:hover a {
  1500. font-size: 14px;
  1501. }
  1502. .ver-inline-menu li.active:after {
  1503. content: '';
  1504. display: inline-block;
  1505. border-bottom: 6px solid transparent;
  1506. border-top: 6px solid transparent;
  1507. border-left: 6px solid #169ef4;
  1508. position: absolute;
  1509. top: 12px;
  1510. right: -5px;
  1511. }
  1512. .tab-content .tab-pane {
  1513. display: none;
  1514. }
  1515. .tab-content .active {
  1516. display: block;
  1517. }
  1518. /**Notes**/
  1519. .note {
  1520. margin: 5px;
  1521. padding: 1px 2px 1px 1px;
  1522. border-left: 5px solid #eee;
  1523. }
  1524. .note h1,
  1525. .note h2,
  1526. .note h3,
  1527. .note h4,
  1528. .note h5,
  1529. .note h6 {
  1530. margin-top: 0;
  1531. }
  1532. .note p:last-child {
  1533. /*margin-bottom: 0;*/
  1534. }
  1535. .note code,
  1536. .note .highlight {
  1537. background-color: #fff;
  1538. }
  1539. .note.note-default {
  1540. background-color: lightgray;
  1541. border-color: #a0a0a0;
  1542. color: #333333;
  1543. }
  1544. .note.note-primary {
  1545. background-color: #5697d0;
  1546. border-color: #2a7696;
  1547. color: #d8e3f2;
  1548. }
  1549. .note.note-success {
  1550. background-color: #eef7ea;
  1551. border-color: #bbdba1;
  1552. color: #3c763d;
  1553. }
  1554. .note.note-info {
  1555. background-color: #eef7fb;
  1556. border-color: #91d9e8;
  1557. color: #31708f;
  1558. }
  1559. .note.note-warning {
  1560. background-color: #fcf8e3;
  1561. border-color: #f2cf87;
  1562. color: #8a6d3b;
  1563. }
  1564. .note.note-danger {
  1565. background-color: #f9f0f0;
  1566. border-color: #dca7b0;
  1567. color: #a94442;
  1568. }
  1569. /***MyTitle*/
  1570. .UlTitle {
  1571. position: relative;
  1572. display: inline-block;
  1573. vertical-align: middle;
  1574. padding-left: 2px;
  1575. margin-top: 5px;
  1576. width: 100%;
  1577. }
  1578. .UlTitle > li {
  1579. float: left;
  1580. list-style: none;
  1581. margin-right: 10px;
  1582. background-color: #fafafa;
  1583. width: 30%;
  1584. height: 72px;
  1585. overflow: hidden;
  1586. position: relative;
  1587. margin-bottom: 3px;
  1588. }
  1589. .UlTitle > li > div {
  1590. position: absolute;
  1591. bottom: 0;
  1592. top: 0;
  1593. left: 0;
  1594. right: 0;
  1595. border: 2px solid #eee;
  1596. text-align: center;
  1597. }
  1598. .UlTitle > li > div:hover {
  1599. border-color: #e26a6a;
  1600. }
  1601. .UlTitle h3,
  1602. h4 {
  1603. margin: 0;
  1604. line-height: normal;
  1605. }
  1606. .UlTitle-head > .h3Span {
  1607. display: block;
  1608. color: #fafafa;
  1609. padding: 5px 0;
  1610. font-size: 15px;
  1611. background: #e26a6a;
  1612. border-bottom: solid 1px #d84a38;
  1613. }
  1614. .UlTitle-content li {
  1615. text-align: left;
  1616. padding-left: 3px;
  1617. }
  1618. .UlTitle-footer {
  1619. margin-bottom: 3px;
  1620. }
  1621. .UlTitle2 {
  1622. position: relative;
  1623. display: inline-block;
  1624. vertical-align: middle;
  1625. padding-left: 2px;
  1626. margin-top: 5px;
  1627. width: 100%;
  1628. }
  1629. .UlTitle2 > li {
  1630. float: left;
  1631. list-style: none;
  1632. width: 32%;
  1633. overflow: hidden;
  1634. position: relative;
  1635. margin-bottom: 3px;
  1636. margin-right: 3px;
  1637. }
  1638. .UlTitle2 > li > div {
  1639. border: 2px solid #e26a6a;
  1640. line-height: 28px;
  1641. }
  1642. .UlTitle2 > li > div .CMtype {
  1643. color: #478fca;
  1644. text-shadow: 0 1px 1px #EEE !important;
  1645. font-size: 15px;
  1646. margin-left: 5px;
  1647. font-weight: bold;
  1648. }
  1649. .UlTitle2 > li > div .CMValueDefult {
  1650. font-size: 15px;
  1651. background-color: #45b6af !important;
  1652. position: absolute;
  1653. right: 0;
  1654. bottom: 0;
  1655. top: 2px;
  1656. display: inline-block;
  1657. width: 60px;
  1658. text-align: center;
  1659. color: white;
  1660. }
  1661. .UlTitle2 > li > div .CMValueError {
  1662. font-size: 15px;
  1663. background-color: #e26a6a !important;
  1664. position: absolute;
  1665. right: 0;
  1666. bottom: 0;
  1667. top: 2px;
  1668. display: inline-block;
  1669. width: 60px;
  1670. text-align: center;
  1671. color: white;
  1672. }
  1673. .UlTitle2 > li > div.Defult {
  1674. border: 2px solid #45b6af;
  1675. }
  1676. /***
  1677. Responsive & Scrollable Tables
  1678. ***/
  1679. .table-scrollable {
  1680. width: 100%;
  1681. overflow-x: auto;
  1682. overflow-y: hidden;
  1683. border: 1px solid #dddddd;
  1684. margin: 10px 0 !important;
  1685. }
  1686. .table-scrollable thead th {
  1687. border-left: 1px solid #ddd;
  1688. border-top: 1px solid #ddd;
  1689. font-size: 14px;
  1690. font-weight: 600;
  1691. line-height: 25px;
  1692. padding: 5px;
  1693. background-color: #fff;
  1694. }
  1695. .table-scrollable tbody td {
  1696. border-left: 1px solid #ddd;
  1697. border-top: 1px solid #ddd;
  1698. padding: 5px;
  1699. background-color: #fff;
  1700. }
  1701. .table-scrollable > .table-bordered > thead > tr > th:first-child,
  1702. .table-scrollable > .table-bordered > tbody > tr > th:first-child,
  1703. .table-scrollable > .table-bordered > tfoot > tr > th:first-child,
  1704. .table-scrollable > .table-bordered > thead > tr > td:first-child,
  1705. .table-scrollable > .table-bordered > tbody > tr > td:first-child,
  1706. .table-scrollable > .table-bordered > tfoot > tr > td:first-child {
  1707. border-left: 0;
  1708. }
  1709. .table > caption + thead > tr:first-child > th,
  1710. .table > colgroup + thead > tr:first-child > th,
  1711. .table > thead:first-child > tr:first-child > th,
  1712. .table > caption + thead > tr:first-child > td,
  1713. .table > colgroup + thead > tr:first-child > td,
  1714. .table > thead:first-child > tr:first-child > td {
  1715. border-top: 0;
  1716. }
  1717. /****人群标签颜色*/
  1718. .CrowdET {
  1719. background-color: #4b8df8;
  1720. }
  1721. .CrowdYCF {
  1722. background-color: #45b6af;
  1723. }
  1724. .CrowdFN {
  1725. background-color: #45b6af;
  1726. }
  1727. .CrowdGXY {
  1728. background-color: #ca3a28;
  1729. }
  1730. .CrowdTNB {
  1731. background-color: #7c3b97;
  1732. }
  1733. .CrowdLNR {
  1734. background-color: #35aa47;
  1735. }
  1736. .CrowdDefault {
  1737. background-color: #35aa47;
  1738. }
  1739. .CrowdNone {
  1740. background-color: #666;
  1741. }
  1742. .CrowdJSB {
  1743. background-color: #e08283;
  1744. }
  1745. .packageA {
  1746. background-color: #33CCFF;
  1747. }
  1748. .packageB {
  1749. background-color: #667FFF;
  1750. }
  1751. .packageC {
  1752. background-color: #FF33CC;
  1753. }
  1754. .packageD {
  1755. background-color: #FF6633;
  1756. }
  1757. .DataGridA {
  1758. color: #428bca;
  1759. }
  1760. .watermark {
  1761. position: absolute;
  1762. left: 0;
  1763. right: 0;
  1764. top: 20%;
  1765. bottom: 0;
  1766. font-size: 20px;
  1767. pointer-events: none;
  1768. z-index: 1;
  1769. text-align: center;
  1770. vertical-align: middle;
  1771. }
  1772. .watermark span {
  1773. display: block;
  1774. transform: rotate(-21deg);
  1775. -ms-transform: rotate(-21deg);
  1776. /* Internet Explorer */
  1777. -moz-transform: rotate(-21deg);
  1778. /* Firefox */
  1779. -webkit-transform: rotate(-21deg);
  1780. /* Safari 和 Chrome */
  1781. -o-transform: rotate(-21deg);
  1782. /* Opera */
  1783. font-size: 100px;
  1784. color: #e5e3e3;
  1785. filter: alpha(opacity=40);
  1786. /*IE滤镜,透明度50%*/
  1787. -moz-opacity: 0.4;
  1788. /*Firefox私有,透明度50%*/
  1789. opacity: 0.4;
  1790. /*其他,透明度50%*/
  1791. }