ui.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html {
  6. font-size: 13px;
  7. font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif;
  8. -ms-text-size-adjust: 100%;
  9. -webkit-text-size-adjust: 100%;
  10. line-height: 24px;
  11. color: #444444;
  12. background-color: #fafafa;
  13. }
  14. input,
  15. textarea,
  16. select,
  17. option,
  18. button {
  19. font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif;
  20. }
  21. article,
  22. aside,
  23. details,
  24. figcaption,
  25. figure,
  26. footer,
  27. header,
  28. main,
  29. nav,
  30. section,
  31. summary,
  32. .block {
  33. display: block;
  34. }
  35. .inline {
  36. display: inline;
  37. }
  38. .inline-block {
  39. display: inline-block;
  40. }
  41. .dis-table {
  42. display: table;
  43. }
  44. .dis-table-cell {
  45. display: table-cell;
  46. }
  47. .dis-flex {
  48. display: flex;
  49. }
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. vertical-align: baseline;
  56. }
  57. audio:not([controls]) {
  58. display: none;
  59. height: 0;
  60. }
  61. [hidden],
  62. template,
  63. .hidden {
  64. display: none;
  65. }
  66. .opacity {
  67. opacity: 0;
  68. }
  69. .opacity-half {
  70. opacity: .5;
  71. }
  72. a,
  73. .text-link {
  74. color: #428bca;
  75. text-decoration: none;
  76. cursor: pointer;
  77. }
  78. a:hover,
  79. .text-link:hover {
  80. color: #399ade;
  81. text-decoration: none;
  82. }
  83. a:focus,
  84. .text-link:focus {
  85. outline: none;
  86. }
  87. b,
  88. strong,
  89. .text-bold {
  90. font-weight: bold;
  91. }
  92. dfn,
  93. .text-italic {
  94. font-style: italic;
  95. }
  96. h1,
  97. .text-h1 {
  98. font-size: 2em;
  99. margin-bottom: 0.67em;
  100. }
  101. h2,
  102. .text-h2 {
  103. font-size: 1.6em;
  104. margin-bottom: 0.625em;
  105. }
  106. h3,
  107. .text-h3 {
  108. font: 1.2em;
  109. margin-bottom: 0.5em;
  110. }
  111. h4,
  112. h5,
  113. h6,
  114. .text-h4,
  115. .text-h5,
  116. .text-h6 {
  117. font-size: 1em;
  118. margin-bottom: .3em;
  119. }
  120. small,
  121. .text-small {
  122. font-size: .8em;
  123. }
  124. sub,
  125. sup,
  126. .text-sup,
  127. .text-sub {
  128. font-size: .7em;
  129. line-height: 0;
  130. position: relative;
  131. vertical-align: baseline;
  132. }
  133. sup,
  134. .text-sup {
  135. top: -0.5em;
  136. }
  137. sub,
  138. .text-sub {
  139. bottom: -0.25em;
  140. }
  141. .figure,
  142. .blockquote {
  143. margin: 1em 1.5em;
  144. }
  145. pre {
  146. overflow: auto;
  147. margin: 0;
  148. padding: .4em 1em;
  149. }
  150. code,
  151. kbd,
  152. pre,
  153. samp {
  154. font-family: monospace;
  155. font-size: 1em;
  156. }
  157. .text-left {
  158. text-align: left;
  159. }
  160. .text-right {
  161. text-align: right;
  162. }
  163. .text-center {
  164. text-align: center;
  165. }
  166. .list-no-style {
  167. list-style: none;
  168. }
  169. img {
  170. border: none;
  171. }
  172. svg:not(:root) {
  173. overflow: hidden;
  174. }
  175. label {
  176. font-weight: bold;
  177. }
  178. textarea,
  179. input,
  180. .ipt {
  181. padding: .6em;
  182. line-height: normal;
  183. border: 1px solid #bbbbbb;
  184. }
  185. textarea:focus,
  186. input:focus,
  187. .ipt:focus {
  188. background-color: #f2fffc;
  189. outline: none;
  190. }
  191. button,
  192. .btn {
  193. overflow: visible;
  194. padding: .6em 1.2em;
  195. }
  196. button,
  197. select {
  198. text-transform: none;
  199. }
  200. button:focus,
  201. select:focus {
  202. outline: none;
  203. }
  204. button,
  205. input[type="button"],
  206. input[type="reset"],
  207. input[type="submit"] {
  208. -webkit-appearance: button;
  209. -moz-appearance: button;
  210. cursor: pointer;
  211. background-color: #888888;
  212. color: #fafafa;
  213. border: none;
  214. }
  215. button:hover,
  216. input[type="button"]:hover,
  217. input[type="reset"]:hover,
  218. input[type="submit"]:hover {
  219. background-color: #444444;
  220. color: #ffffff;
  221. }
  222. button[disabled],
  223. html input[disabled] {
  224. cursor: default;
  225. }
  226. button::-moz-focus-inner,
  227. input::-moz-focus-inner {
  228. border: 0;
  229. padding: 0;
  230. }
  231. input[type="checkbox"],
  232. input[type="radio"] {
  233. box-sizing: border-box;
  234. padding: 0;
  235. }
  236. input[type="search"] {
  237. -webkit-appearance: textfield;
  238. -moz-appearance: textfield;
  239. -moz-box-sizing: content-box;
  240. -webkit-box-sizing: content-box;
  241. box-sizing: content-box;
  242. }
  243. fieldset {
  244. border: 1px solid #bbbbbb;
  245. margin: 0 2px;
  246. padding: 0.4em 0.8em 0.8em;
  247. }
  248. legend {
  249. border: 0;
  250. padding: 0;
  251. }
  252. textarea {
  253. overflow: auto;
  254. border: 1px solid #bbbbbb;
  255. padding: .6em;
  256. }
  257. textarea:focus {
  258. background-color: #f2fffc;
  259. outline: none;
  260. }
  261. optgroup {
  262. font-weight: bold;
  263. }
  264. table {
  265. background-color: transparent;
  266. border-collapse: collapse;
  267. border-spacing: 0;
  268. }
  269. td,
  270. th {
  271. padding: 0;
  272. }
  273. hr {
  274. -moz-box-sizing: content-box;
  275. box-sizing: content-box;
  276. height: 0;
  277. border: none;
  278. border-bottom: 1px solid #dddddd;
  279. margin-bottom: .75em;
  280. }
  281. .radius {
  282. border-radius: .25em;
  283. }
  284. .text-truncate {
  285. overflow: hidden;
  286. text-overflow: ellipsis;
  287. white-space: nowrap;
  288. display: inline-block;
  289. vertical-align: top;
  290. }
  291. pre {
  292. line-height: 1.6;
  293. overflow: auto;
  294. padding: 0;
  295. }
  296. dt {
  297. font-weight: bold;
  298. }
  299. .left {
  300. float: left;
  301. }
  302. .right {
  303. float: right;
  304. }
  305. .clear::after {
  306. clear: both;
  307. content: " ";
  308. width: 0;
  309. height: 0;
  310. display: block;
  311. }
  312. .hide {
  313. display: none;
  314. }
  315. .grid-1-12 {
  316. width: 8.33%;
  317. }
  318. .grid-2-12,
  319. .grid-1-6 {
  320. width: 16.67%;
  321. }
  322. .grid-3-12,
  323. .grid-1-4 {
  324. width: 25%;
  325. }
  326. .grid-4-12,
  327. .grid-1-3 {
  328. width: 33%;
  329. }
  330. .grid-5-12 {
  331. width: 41.67%;
  332. }
  333. .grid-6-12,
  334. .grid-1-2 {
  335. width: 50%;
  336. }
  337. .grid-7-12 {
  338. width: 58.33%;
  339. }
  340. .grid-8-12,
  341. .grid-2-3 {
  342. width: 66.67%;
  343. }
  344. .grid-9-12,
  345. .grid-3-4 {
  346. width: 75%;
  347. }
  348. .grid-10-12,
  349. .grid-5-6 {
  350. width: 83.33%;
  351. }
  352. .grid-11-12 {
  353. width: 91.67%;
  354. }
  355. *[class*="grid-"] {
  356. box-sizing: content-box;
  357. }
  358. .grid-1-5 {
  359. width: 20%;
  360. }
  361. .grid-2-5 {
  362. width: 40%;
  363. }
  364. .grid-3-5 {
  365. width: 60%;
  366. }
  367. .grid-4-5 {
  368. width: 80%;
  369. }
  370. .btn {
  371. white-space: nowrap;
  372. }
  373. .btn-small {
  374. font-size: 10.8px;
  375. padding: .4em .9em;
  376. }
  377. .btn-medium {
  378. font-size: 12px;
  379. padding: .4em .9em;
  380. }
  381. .btn-large {
  382. font-size: 14.4px;
  383. padding: .4em .9em;
  384. }
  385. .btn-green {
  386. background-color: #65ad4e;
  387. border: 1px solid #65ad4e;
  388. }
  389. .btn-green:hover {
  390. background-color: #71bf57;
  391. color: #FFF;
  392. }
  393. .btn-blue {
  394. background-color: #428bca;
  395. border: 1px solid #428bca;
  396. }
  397. .btn-blue:hover {
  398. background-color: #539cdb;
  399. color: #FFF;
  400. }
  401. .btn-red {
  402. color: #FFF;
  403. background-color: #d9453d;
  404. border: 1px solid #d9453d;
  405. }
  406. .btn-red:hover {
  407. background-color: #ff635a;
  408. color: #FFF;
  409. }
  410. .btn-orange {
  411. background-color: #df7514;
  412. border: 1px solid #df7514;
  413. }
  414. .btn-orange:hover {
  415. background-color: #df8229;
  416. color: #FFF;
  417. }
  418. .btn-black {
  419. background-color: #444444;
  420. border: 1px solid #444444;
  421. }
  422. .btn-black:hover {
  423. background-color: #383838;
  424. color: #FFF;
  425. }
  426. .btn-gray {
  427. background-color: #f0f0f0;
  428. color: #444444;
  429. border: 1px solid #d0d0d0;
  430. }
  431. .btn-gray:hover {
  432. background-color: #fafafa;
  433. color: #444444;
  434. }
  435. .btn-white {
  436. background-color: #ffffff;
  437. color: #444444;
  438. border: 1px solid #c6c6c6;
  439. }
  440. .btn-white:hover {
  441. background-color: #e8e8e8;
  442. color: #444444;
  443. }
  444. .btn-white.active {
  445. background-color: #e8e8e8;
  446. color: #444444;
  447. }
  448. .btn-active {
  449. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset, 0 0 4px rgba(0, 0, 0, 0.15) inset;
  450. }
  451. .btn-header {
  452. margin-top: -1px;
  453. color: white;
  454. padding: 0 10px;
  455. }
  456. .btn-link {
  457. overflow: visible;
  458. color: white;
  459. padding: .6em 1.2em;
  460. }
  461. .btn-radius {
  462. border-radius: .25em;
  463. }
  464. .btn-left-radius {
  465. border-top-left-radius: .25em;
  466. border-bottom-left-radius: .25em;
  467. }
  468. .btn-right-radius {
  469. border-top-right-radius: .25em;
  470. border-bottom-right-radius: .25em;
  471. }
  472. .btn-block {
  473. display: block;
  474. width: 100%;
  475. box-sizing: content-box;
  476. text-align: center;
  477. }
  478. .btn-comb {
  479. margin-left: -1px;
  480. }
  481. .btn-disabled {
  482. opacity: .6;
  483. cursor: not-allowed;
  484. box-shadow: none;
  485. background-image: none !important;
  486. border: none;
  487. }
  488. .btn-disabled:hover {
  489. background-image: none !important;
  490. color: #ffffff;
  491. }
  492. .btn-group {
  493. display: inline-block;
  494. }
  495. .btn-group > .btn {
  496. position: relative;
  497. float: left;
  498. margin-right: -1px;
  499. }
  500. .btn-group > .btn:first-child {
  501. border-bottom-left-radius: .25em;
  502. border-top-left-radius: .25em;
  503. }
  504. .btn-group > .btn:last-child {
  505. border-bottom-right-radius: .25em;
  506. border-top-right-radius: .25em;
  507. }
  508. .ipt:focus {
  509. border-color: #428bca;
  510. }
  511. .ipt-radius {
  512. border-radius: .25em;
  513. }
  514. .ipt-small {
  515. font-size: 9.6px;
  516. }
  517. .ipt-large {
  518. font-size: 14.4px;
  519. }
  520. .ipt-textarea {
  521. height: auto !important;
  522. width: auto;
  523. }
  524. .ipt-disabled,
  525. input[disabled] {
  526. background-color: #f2f2f2 !important;
  527. color: #888;
  528. cursor: not-allowed;
  529. }
  530. .ipt-disabled:focus,
  531. input[disabled]:focus {
  532. background-color: #f2f2f2 !important;
  533. }
  534. .ipt-readonly:focus,
  535. input[readonly]:focus {
  536. background-color: #f2f2f2 !important;
  537. }
  538. .ipt-error {
  539. border-color: #b63b2c !important;
  540. background-color: #fff0f0 !important;
  541. }
  542. .form label {
  543. margin-right: 1em;
  544. }
  545. .form .help {
  546. color: #999999;
  547. padding-top: .6em;
  548. display: inline-block;
  549. }
  550. .form-stack label {
  551. display: block;
  552. }
  553. .form-stack .field {
  554. margin-bottom: 1em;
  555. }
  556. .form-align label,
  557. .form-align .form-label {
  558. display: inline-block;
  559. width: 120px;
  560. text-align: right;
  561. margin-right: 1em;
  562. }
  563. .form-align .field {
  564. margin-bottom: 1em;
  565. }
  566. label.text-left {
  567. text-align: left;
  568. }
  569. label.req:after {
  570. content: "*";
  571. color: #d9453d;
  572. }
  573. ul.menu > li {
  574. list-style: none;
  575. }
  576. ul.menu > li > a {
  577. padding: .8em 1.2em;
  578. }
  579. ul.menu > li > a:hover {
  580. background-color: #eaeaea;
  581. color: #444444;
  582. }
  583. ul.menu > li > a.active {
  584. background-color: #4183c4;
  585. color: #FFF;
  586. }
  587. ul.menu > li.current > a,
  588. ul.menu > li.hover > a {
  589. color: #444444;
  590. }
  591. ul.menu > li.head {
  592. font-weight: bold;
  593. padding: .8em 1.2em;
  594. }
  595. ul.menu > li.down:hover > ul.menu-down {
  596. display: block;
  597. }
  598. ul.menu > li.border-bottom {
  599. border-bottom: 1px solid #bbbbbb;
  600. height: 0;
  601. margin: .5em 0;
  602. }
  603. ul.menu-line > li,
  604. ul.menu-line > li > a {
  605. display: inline-block;
  606. }
  607. ul.menu-line > li.down {
  608. position: relative;
  609. }
  610. ul.menu-line > li.down > a:after {
  611. content: "\25BE";
  612. margin-left: .4em;
  613. }
  614. ul.menu-line > li.down > ul.menu-down {
  615. top: 2.1em;
  616. width: 150%;
  617. }
  618. ul.menu-line > li.hover {
  619. position: relative;
  620. }
  621. ul.menu-line > li.hover > a:after {
  622. position: absolute;
  623. content: "\25B4";
  624. left: 50%;
  625. bottom: -1.1em;
  626. margin-left: -4px;
  627. }
  628. ul.menu-vertical > li > a,
  629. ul.menu-down > li > a,
  630. ul.menu-vertical > li.head,
  631. ul.menu-down > li.head {
  632. display: block;
  633. padding: .4em 1.2em;
  634. }
  635. ul.menu-vertical > li.down,
  636. ul.menu-down > li.down {
  637. position: relative;
  638. }
  639. ul.menu-vertical > li.down > a:after,
  640. ul.menu-down > li.down > a:after {
  641. content: "\25B8";
  642. position: absolute;
  643. right: .6em;
  644. }
  645. ul.menu-vertical > li.hover,
  646. ul.menu-down > li.hover {
  647. position: relative;
  648. }
  649. ul.menu-vertical > li.hover > a:after,
  650. ul.menu-down > li.hover > a:after {
  651. content: "\25B8";
  652. position: absolute;
  653. left: .5em;
  654. }
  655. ul.menu-border,
  656. ul.menu-down {
  657. border: 1px solid #bbbbbb;
  658. }
  659. ul.menu-border > li.head,
  660. ul.menu-down > li.head {
  661. border-bottom: 1px solid #bbbbbb;
  662. }
  663. ul.menu-down {
  664. position: absolute;
  665. display: none;
  666. z-index: 99;
  667. box-shadow: 0 0 2px #666666;
  668. background-color: #ffffff;
  669. }
  670. ul.menu-down-show {
  671. position: absolute;
  672. z-index: 99;
  673. box-shadow: 0 0 2px #666666;
  674. background-color: #ffffff;
  675. }
  676. ul.menu-radius {
  677. border-radius: .3em;
  678. }
  679. ul.menu-radius > li:first-child {
  680. border-top-left-radius: .3em;
  681. border-top-right-radius: .3em;
  682. }
  683. ul.menu-radius > li:first-child > a {
  684. border-top-left-radius: .2em;
  685. border-top-right-radius: .2em;
  686. }
  687. ul.menu-radius > li:last-child {
  688. border-bottom-left-radius: .3em;
  689. border-bottom-right-radius: .3em;
  690. }
  691. ul.menu-radius > li:last-child > a {
  692. border-bottom-left-radius: .2em;
  693. border-bottom-right-radius: .2em;
  694. }
  695. .drop {
  696. position: relative;
  697. }
  698. .drop:hover > .drop-down {
  699. position: absolute;
  700. top: 0;
  701. left: 0;
  702. width: 200%;
  703. display: block;
  704. }
  705. .drop > .drop-down {
  706. display: none;
  707. border: 1px solid #bbbbbb;
  708. box-shadow: 0 0 3px #666666;
  709. background-color: #ffffff;
  710. }
  711. .drop-bottom:after {
  712. content: "\25BE";
  713. margin-left: .4em;
  714. }
  715. .drop-top:after {
  716. content: "\25B4";
  717. margin-left: .4em;
  718. }
  719. .panel {
  720. border: 1px solid #cccccc;
  721. }
  722. .panel .panel-header {
  723. font-size: 16px;
  724. padding: .6em 1.2em;
  725. background-color: #eeeeee;
  726. border-bottom: 1px solid #cccccc;
  727. }
  728. .panel .panel-body {
  729. background-color: white;
  730. }
  731. .panel .panel-body .panel-desc {
  732. padding: 0 40px 20px 40px;
  733. }
  734. .panel .panel-content {
  735. padding: 1em 1.2em;
  736. }
  737. .panel .panel-footer {
  738. padding: .6em 1.2em;
  739. background-color: #eeeeee;
  740. border-top: 1px solid #cccccc;
  741. }
  742. .panel.panel-radius {
  743. border-radius: .3em;
  744. }
  745. .panel.panel-radius .panel-header {
  746. border-top-left-radius: .3em;
  747. border-top-right-radius: .3em;
  748. }
  749. .panel.panel-radius .panel-footer {
  750. border-bottom-left-radius: .3em;
  751. border-bottom-right-radius: .3em;
  752. }
  753. .panel.panel-radius .panel-content {
  754. border-bottom-left-radius: .3em;
  755. border-bottom-right-radius: .3em;
  756. }
  757. .panel.panel-info {
  758. border-color: #85c5e5;
  759. }
  760. .panel.panel-info > .panel-header {
  761. color: #31708f;
  762. background-color: #d9edf7;
  763. border-color: #85c5e5;
  764. }
  765. .panel.panel-warning {
  766. border-color: #F0C36D;
  767. }
  768. .panel.panel-warning > .panel-header {
  769. background-color: #F9EDBE;
  770. border-color: #F0C36D;
  771. }
  772. .label {
  773. padding: .3em .6em .2em .6em;
  774. color: #ffffff;
  775. }
  776. .label-red {
  777. background-color: #d9453d;
  778. }
  779. .label-blue {
  780. background-color: #428bca;
  781. }
  782. .label-gray {
  783. background-color: #999999;
  784. }
  785. .label-green {
  786. background-color: #65ad4e;
  787. }
  788. .label-green:hover {
  789. background-color: #71bf57;
  790. color: #FFF;
  791. }
  792. .label-orange {
  793. background-color: #df7514;
  794. }
  795. .label-black {
  796. background-color: #444444;
  797. }
  798. .label-radius {
  799. border-radius: .2em;
  800. }
  801. .label-link {
  802. color: #ffffff;
  803. }
  804. .label-link:hover {
  805. color: #ffffff;
  806. }
  807. .breads .bread:after {
  808. content: "/";
  809. font-weight: bold;
  810. margin: 0 4px 0 7px;
  811. color: #444444;
  812. }
  813. .breads .bread:last-child:after {
  814. content: "";
  815. margin: 0;
  816. }
  817. .alert {
  818. padding: .6em 1.5em;
  819. margin-bottom: 10px;
  820. }
  821. .alert i {
  822. margin-right: 8px;
  823. }
  824. .alert-radius {
  825. border-radius: .25em;
  826. }
  827. .alert-red {
  828. color: #d9453d;
  829. border: 1px solid #be2d25;
  830. background-color: #fae9e8;
  831. }
  832. .alert-blue {
  833. color: #428bca;
  834. border: 1px solid #3071a9;
  835. background-color: #f5f9fc;
  836. }
  837. .alert-green {
  838. color: #65ad4e;
  839. border: 1px solid #508a3e;
  840. background-color: #edf6eb;
  841. }
  842. .alert-gray {
  843. color: #999999;
  844. border: 1px solid #808080;
  845. background-color: #f2f2f2;
  846. }
  847. .alert-orange {
  848. color: #df7514;
  849. border: 1px solid #b05c10;
  850. background-color: #fcecdd;
  851. }
  852. .white-popup-block {
  853. background: #FFF;
  854. padding: 20px 30px;
  855. text-align: left;
  856. max-width: 650px;
  857. margin: 40px auto;
  858. position: relative;
  859. }
  860. .white-popup-block p {
  861. font-size: 14px;
  862. }
  863. table th,
  864. table td {
  865. padding: .3em .6em;
  866. line-height: 30px;
  867. }
  868. .table-border {
  869. border: 1px solid #d6d6d6;
  870. }
  871. .table-border tr {
  872. border-top: 1px solid #eaeaea;
  873. }
  874. .table-border tr th,
  875. .table-border tr td {
  876. border-top: 1px solid #eaeaea;
  877. }
  878. .table-border tr:first-child {
  879. border-top: none;
  880. }
  881. .table-border thead {
  882. border-bottom: 1px solid #d6d6d6;
  883. }
  884. .table-block {
  885. width: 100%;
  886. box-sizing: border-box;
  887. }
  888. .table-radius {
  889. border-collapse: separate !important;
  890. border-radius: .3em;
  891. }
  892. .table-radius thead:first-child {
  893. border-top-left-radius: .3em;
  894. border-top-right-radius: .3em;
  895. }
  896. .table-radius thead:first-child tr:first-child {
  897. border-top-left-radius: .3em;
  898. }
  899. .table-radius thead:first-child tr:first-child > th:first-child {
  900. border-top-left-radius: .3em;
  901. }
  902. .table-radius thead:first-child tr:first-child > th:last-child {
  903. border-top-right-radius: .3em;
  904. }
  905. .table-radius tbody {
  906. border-bottom-left-radius: .3em;
  907. border-bottom-right-radius: .3em;
  908. }
  909. .table-radius tbody tr:last-child {
  910. border-bottom-left-radius: .3em;
  911. border-bottom-right-radius: .3em;
  912. }
  913. .table-radius tbody tr:last-child > td:first-child {
  914. border-bottom-left-radius: .3em;
  915. }
  916. .table-radius tbody tr:last-child > td:last-child {
  917. border-bottom-right-radius: .3em;
  918. }
  919. .pager .page {
  920. padding: .3em .5em .2em .5em;
  921. margin: 0 .3em;
  922. background-color: #cccccc;
  923. color: #444444;
  924. }
  925. .pager .page:hover,
  926. .pager .page.hover {
  927. background-color: #428bca;
  928. color: #ffffff;
  929. }
  930. .pager .prev,
  931. .pager .next {
  932. padding: .4em .6em;
  933. margin: 0 .3em;
  934. background-color: #505050;
  935. color: #fafafa;
  936. }
  937. .pager .prev.invalid,
  938. .pager .next.invalid {
  939. background-color: #eeeeee;
  940. color: #aaaaaa;
  941. cursor: not-allowed;
  942. }
  943. .pager .page-radius {
  944. border-radius: .2em;
  945. }