You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

881 lines
17 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*
  2. * # Semantic UI
  3. * https://github.com/Semantic-Org/Semantic-UI
  4. * http://beta.semantic-ui.com/
  5. *
  6. * Copyright 2014 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Table
  13. *******************************/
  14. /* Prototype */
  15. .ui.table {
  16. width: 100%;
  17. background: #ffffff;
  18. margin: 1em 0em;
  19. border: 1px solid #d0d0d0;
  20. box-shadow: none;
  21. border-radius: 0.25rem;
  22. color: rgba(0, 0, 0, 0.8);
  23. border-collapse: separate;
  24. border-spacing: 0px;
  25. }
  26. .ui.table:first-child {
  27. margin-top: 0em;
  28. }
  29. .ui.table:last-child {
  30. margin-bottom: 0em;
  31. }
  32. /*******************************
  33. Parts
  34. *******************************/
  35. /* Table Content */
  36. .ui.table th,
  37. .ui.table td {
  38. -webkit-transition: all 0.2s ease;
  39. transition: all 0.2s ease;
  40. }
  41. /* Headers */
  42. .ui.table thead {
  43. box-shadow: none;
  44. }
  45. .ui.table thead th {
  46. cursor: auto;
  47. background: #f0f0f0;
  48. text-align: left;
  49. color: rgba(0, 0, 0, 0.8);
  50. padding: 0.7em 0.8em;
  51. vertical-align: middle;
  52. font-style: none;
  53. font-weight: bold;
  54. text-transform: none;
  55. border-bottom: 1px solid #d4d4d5;
  56. border-left: none;
  57. }
  58. .ui.table thead th:first-child {
  59. border-radius: 0.25rem 0em 0em 0em;
  60. border-left: none;
  61. }
  62. .ui.table thead th:last-child {
  63. border-radius: 0em 0.25rem 0em 0em;
  64. }
  65. .ui.table thead th:only-child {
  66. border-radius: 0.25rem 0.25rem 0em 0em;
  67. }
  68. /* Footer */
  69. .ui.table tfoot {
  70. box-shadow: none;
  71. }
  72. .ui.table tfoot th {
  73. cursor: auto;
  74. border-top: 1px solid #d4d4d5;
  75. background: #ffffff;
  76. text-align: left;
  77. color: rgba(0, 0, 0, 0.8);
  78. padding: 0.7em 0.8em;
  79. vertical-align: middle;
  80. font-style: normal;
  81. font-weight: normal;
  82. text-transform: none;
  83. }
  84. .ui.table tfoot th:first-child {
  85. border-radius: 0em 0em 0em 0.25rem;
  86. }
  87. .ui.table tfoot th:last-child {
  88. border-radius: 0em 0em 0.25rem 0em;
  89. }
  90. .ui.table tfoot th:only-child {
  91. border-radius: 0em 0em 0.25rem 0.25rem;
  92. }
  93. /* Table Row */
  94. .ui.table tr td {
  95. border-top: 1px solid #d4d4d5;
  96. }
  97. .ui.table tr:first-child td {
  98. border-top: none;
  99. }
  100. /* Table Cells */
  101. .ui.table td {
  102. padding: 0.7em 0.8em;
  103. text-align: left;
  104. vertical-align: middle;
  105. }
  106. /* Icons */
  107. .ui.table > .icon {
  108. vertical-align: baseline;
  109. }
  110. .ui.table > .icon:only-child {
  111. margin: 0em;
  112. }
  113. /* Table Segment */
  114. .ui.table.segment {
  115. padding: 0em;
  116. }
  117. .ui.table.segment:after {
  118. display: none;
  119. }
  120. .ui.table.segment.stacked:after {
  121. display: block;
  122. }
  123. /* Responsive */
  124. @media only screen and (max-width: 768px) {
  125. .ui.table {
  126. display: block;
  127. padding: 0em;
  128. }
  129. .ui.table thead {
  130. display: block;
  131. }
  132. .ui.table tfoot {
  133. display: block;
  134. }
  135. .ui.table tbody {
  136. display: block;
  137. }
  138. .ui.table tr {
  139. display: block;
  140. }
  141. .ui.table tr > th,
  142. .ui.table tr > td {
  143. background: none;
  144. width: 100% !important;
  145. display: block;
  146. border: none !important;
  147. padding: 0.25em 0.75em;
  148. box-shadow: none;
  149. }
  150. .ui.table th:first-child,
  151. .ui.table td:first-child {
  152. font-weight: bold;
  153. padding-top: 1em;
  154. }
  155. .ui.table th:last-child,
  156. .ui.table td:last-child {
  157. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
  158. padding-bottom: 1em;
  159. }
  160. /* Clear BG Colors */
  161. .ui.table tr > td.warning,
  162. .ui.table tr > td.error,
  163. .ui.table tr > td.active,
  164. .ui.table tr > td.positive,
  165. .ui.table tr > td.negative {
  166. background-color: transparent !important;
  167. }
  168. }
  169. /*******************************
  170. Types
  171. *******************************/
  172. /*--------------
  173. Definition
  174. ---------------*/
  175. .ui.definition.table thead:not(.full-width) th:first-child {
  176. pointer-events: none;
  177. background: transparent;
  178. font-weight: normal;
  179. color: rgba(0, 0, 0, 0.4);
  180. box-shadow: -1px -1px 0px 1px #ffffff;
  181. }
  182. .ui.definition.table tfoot:not(.full-width) th:first-child {
  183. pointer-events: none;
  184. background: transparent;
  185. font-weight: rgba(0, 0, 0, 0.4);
  186. color: normal;
  187. box-shadow: 1px 1px 0px 1px #ffffff;
  188. }
  189. /* Remove Border */
  190. .ui.celled.definition.table thead:not(.full-width) th:first-child {
  191. box-shadow: 0px -1px 0px 1px #ffffff;
  192. }
  193. .ui.celled.definition.table tfoot:not(.full-width) th:first-child {
  194. box-shadow: 0px 1px 0px 1px #ffffff;
  195. }
  196. /* Highlight Defining Column */
  197. .ui.definition.table tr td:first-child {
  198. background: rgba(0, 0, 0, 0.03);
  199. font-weight: bold;
  200. color: rgba(0, 0, 0, 0.8);
  201. }
  202. /* Fix 2nd Column */
  203. .ui.definition.table thead:not(.full-width) th:nth-child(2) {
  204. border-left: 1px solid #d0d0d0;
  205. }
  206. .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
  207. border-left: 1px solid #d0d0d0;
  208. }
  209. .ui.definition.table td:nth-child(2) {
  210. border-left: 1px solid #d0d0d0;
  211. }
  212. /*******************************
  213. States
  214. *******************************/
  215. /*--------------
  216. Positive
  217. ---------------*/
  218. .ui.table tr.positive,
  219. .ui.table td.positive {
  220. box-shadow: 2px 0px 0px #119000 inset;
  221. }
  222. .ui.table tr.positive td,
  223. .ui.table td.positive {
  224. background: #f2f8f0 !important;
  225. color: #119000 !important;
  226. }
  227. .ui.celled.table tr.positive:hover td,
  228. .ui.celled.table tr:hover td.positive,
  229. .ui.table tr.positive:hover td,
  230. .ui.table td:hover.positive,
  231. .ui.table th:hover.positive {
  232. background: #ecf5e9 !important;
  233. color: #119000 !important;
  234. }
  235. /*--------------
  236. Negative
  237. ---------------*/
  238. .ui.table tr.negative,
  239. .ui.table td.negative {
  240. box-shadow: 2px 0px 0px #cd2929 inset;
  241. }
  242. .ui.table tr.negative td,
  243. .ui.table td.negative {
  244. background: #f9f4f4 !important;
  245. color: #cd2929 !important;
  246. }
  247. .ui.celled.table tr.negative:hover td,
  248. .ui.celled.table tr:hover td.negative {
  249. background: #f2e8e8 !important;
  250. color: #cd2929 !important;
  251. }
  252. /*--------------
  253. Error
  254. ---------------*/
  255. .ui.table tr.error,
  256. .ui.table td.error {
  257. box-shadow: 2px 0px 0px #cd2929 inset;
  258. }
  259. .ui.table tr.error td,
  260. .ui.table td.error {
  261. background: #f9f4f4 !important;
  262. color: #cd2929 !important;
  263. }
  264. .ui.celled.table tr.error:hover td,
  265. .ui.celled.table tr:hover td.error {
  266. background: #f2e8e8 !important;
  267. color: #cd2929 !important;
  268. }
  269. /*--------------
  270. Warning
  271. ---------------*/
  272. .ui.table tr.warning,
  273. .ui.table td.warning {
  274. box-shadow: 2px 0px 0px #7d6c00 inset;
  275. }
  276. .ui.table tr.warning td,
  277. .ui.table td.warning {
  278. background: #fbf6e9 !important;
  279. color: #7d6c00 !important;
  280. }
  281. .ui.celled.table tr.warning:hover td,
  282. .ui.celled.table tr:hover td.warning {
  283. background: #f3eddc !important;
  284. color: #cd2929 !important;
  285. }
  286. /*--------------
  287. Active
  288. ---------------*/
  289. .ui.table tr.active,
  290. .ui.table td.active {
  291. box-shadow: 2px 0px 0px rgba(50, 50, 50, 0.9) inset;
  292. }
  293. .ui.table tr.active td,
  294. .ui.table td.active {
  295. background: #e0e0e0 !important;
  296. color: rgba(50, 50, 50, 0.9) !important;
  297. }
  298. .ui.celled.table tr.active:hover td,
  299. .ui.celled.table tr:hover td.active {
  300. background: #e0e0e0 !important;
  301. color: rgba(50, 50, 50, 0.9) !important;
  302. }
  303. /*--------------
  304. Disabled
  305. ---------------*/
  306. .ui.table tr.disabled td,
  307. .ui.table tr td.disabled,
  308. .ui.table tr.disabled:hover td,
  309. .ui.table tr:hover td.disabled {
  310. pointer-events: none;
  311. color: rgba(40, 40, 40, 0.3);
  312. }
  313. /*******************************
  314. Variations
  315. *******************************/
  316. /*--------------
  317. Aligned
  318. ---------------*/
  319. .ui.table[class*="left aligned"],
  320. .ui.table [class*="left aligned"] {
  321. text-align: left;
  322. }
  323. .ui.table[class*="center aligned"],
  324. .ui.table [class*="center aligned"] {
  325. text-align: center;
  326. }
  327. .ui.table[class*="right aligned"],
  328. .ui.table [class*="right aligned"] {
  329. text-align: right;
  330. }
  331. /*--------------
  332. Collapsing
  333. ---------------*/
  334. .ui.table th.collapsing,
  335. .ui.table td.collapsing {
  336. width: 1px;
  337. white-space: nowrap;
  338. }
  339. /*--------------
  340. Attached
  341. ---------------*/
  342. /* All */
  343. .ui.attached.table {
  344. width: -webkit-calc(100% + 2px );
  345. width: calc(100% + 2px );
  346. margin: 0em -1px;
  347. border-radius: 0px;
  348. box-shadow: none;
  349. }
  350. /* Top */
  351. .ui[class*="top attached"].table {
  352. margin-top: 1em 0em;
  353. border-radius: 0.25rem 0.25rem 0em 0em;
  354. }
  355. .ui.table[class*="top attached"]:first-child {
  356. margin-top: 0em;
  357. }
  358. /* Bottom */
  359. .ui.table[class*="bottom attached"] {
  360. margin-top: 0em;
  361. margin-bottom: 1em 0em;
  362. border-radius: 0em 0em 0.25rem 0.25rem;
  363. }
  364. .ui.table[class*="bottom attached"]:last-child {
  365. margin-bottom: 0em;
  366. }
  367. /*--------------
  368. Striped
  369. ---------------*/
  370. /* Table Striping */
  371. .ui.striped.table > tr:nth-child(2n),
  372. .ui.striped.table tbody tr:nth-child(2n) {
  373. background-color: rgba(0, 0, 50, 0.03);
  374. }
  375. /* Stripes */
  376. .ui.inverted.striped.table > tr:nth-child(2n),
  377. .ui.inverted.striped.table tbody tr:nth-child(2n) {
  378. background-color: rgba(255, 255, 255, 0.06);
  379. }
  380. /*-------------------
  381. Colors
  382. --------------------*/
  383. .ui.black.table {
  384. border-top: 0.2em solid #1b1c1d;
  385. }
  386. .ui.blue.table {
  387. border-top: 0.2em solid #3b83c0;
  388. }
  389. .ui.green.table {
  390. border-top: 0.2em solid #5bbd72;
  391. }
  392. .ui.orange.table {
  393. border-top: 0.2em solid #e07b53;
  394. }
  395. .ui.pink.table {
  396. border-top: 0.2em solid #d9499a;
  397. }
  398. .ui.purple.table {
  399. border-top: 0.2em solid #564f8a;
  400. }
  401. .ui.red.table {
  402. border-top: 0.2em solid #d95c5c;
  403. }
  404. .ui.teal.table {
  405. border-top: 0.2em solid #00b5ad;
  406. }
  407. .ui.yellow.table {
  408. border-top: 0.2em solid #f2c61f;
  409. }
  410. /*-------------------
  411. Inverted Colors
  412. --------------------*/
  413. .ui.inverted.table,
  414. .ui.inverted.black.table {
  415. background-color: #1b1c1d !important;
  416. color: #ffffff !important;
  417. }
  418. .ui.inverted.blue.table {
  419. background-color: #3b83c0 !important;
  420. color: #ffffff !important;
  421. }
  422. .ui.inverted.green.table {
  423. background-color: #5bbd72 !important;
  424. color: #ffffff !important;
  425. }
  426. .ui.inverted.orange.table {
  427. background-color: #e07b53 !important;
  428. color: #ffffff !important;
  429. }
  430. .ui.inverted.pink.table {
  431. background-color: #d9499a !important;
  432. color: #ffffff !important;
  433. }
  434. .ui.inverted.purple.table {
  435. background-color: #564f8a !important;
  436. color: #ffffff !important;
  437. }
  438. .ui.inverted.red.table {
  439. background-color: #d95c5c !important;
  440. color: #ffffff !important;
  441. }
  442. .ui.inverted.teal.table {
  443. background-color: #00b5ad !important;
  444. color: #ffffff !important;
  445. }
  446. .ui.inverted.yellow.table {
  447. background-color: #f2c61f !important;
  448. color: #ffffff !important;
  449. }
  450. /*--------------
  451. Column Count
  452. ---------------*/
  453. /* Grid Based */
  454. .ui.one.column.table td {
  455. width: 100%;
  456. }
  457. .ui.two.column.table td {
  458. width: 50%;
  459. }
  460. .ui.three.column.table td {
  461. width: 33.33333333%;
  462. }
  463. .ui.four.column.table td {
  464. width: 25%;
  465. }
  466. .ui.five.column.table td {
  467. width: 20%;
  468. }
  469. .ui.six.column.table td {
  470. width: 16.66666667%;
  471. }
  472. .ui.seven.column.table td {
  473. width: 14.28571429%;
  474. }
  475. .ui.eight.column.table td {
  476. width: 12.5%;
  477. }
  478. .ui.nine.column.table td {
  479. width: 11.11111111%;
  480. }
  481. .ui.ten.column.table td {
  482. width: 10%;
  483. }
  484. .ui.eleven.column.table td {
  485. width: 9.09090909%;
  486. }
  487. .ui.twelve.column.table td {
  488. width: 8.33333333%;
  489. }
  490. .ui.thirteen.column.table td {
  491. width: 7.69230769%;
  492. }
  493. .ui.fourteen.column.table td {
  494. width: 7.14285714%;
  495. }
  496. .ui.fifteen.column.table td {
  497. width: 6.66666667%;
  498. }
  499. .ui.sixteen.column.table td {
  500. width: 6.25%;
  501. }
  502. /* Column Width */
  503. .ui.table th.one.wide,
  504. .ui.table td.one.wide {
  505. width: 6.25%;
  506. }
  507. .ui.table th.two.wide,
  508. .ui.table td.two.wide {
  509. width: 12.5%;
  510. }
  511. .ui.table th.three.wide,
  512. .ui.table td.three.wide {
  513. width: 18.75%;
  514. }
  515. .ui.table th.four.wide,
  516. .ui.table td.four.wide {
  517. width: 25%;
  518. }
  519. .ui.table th.five.wide,
  520. .ui.table td.five.wide {
  521. width: 31.25%;
  522. }
  523. .ui.table th.six.wide,
  524. .ui.table td.six.wide {
  525. width: 37.5%;
  526. }
  527. .ui.table th.seven.wide,
  528. .ui.table td.seven.wide {
  529. width: 43.75%;
  530. }
  531. .ui.table th.eight.wide,
  532. .ui.table td.eight.wide {
  533. width: 50%;
  534. }
  535. .ui.table th.nine.wide,
  536. .ui.table td.nine.wide {
  537. width: 56.25%;
  538. }
  539. .ui.table th.ten.wide,
  540. .ui.table td.ten.wide {
  541. width: 62.5%;
  542. }
  543. .ui.table th.eleven.wide,
  544. .ui.table td.eleven.wide {
  545. width: 68.75%;
  546. }
  547. .ui.table th.twelve.wide,
  548. .ui.table td.twelve.wide {
  549. width: 75%;
  550. }
  551. .ui.table th.thirteen.wide,
  552. .ui.table td.thirteen.wide {
  553. width: 81.25%;
  554. }
  555. .ui.table th.fourteen.wide,
  556. .ui.table td.fourteen.wide {
  557. width: 87.5%;
  558. }
  559. .ui.table th.fifteen.wide,
  560. .ui.table td.fifteen.wide {
  561. width: 93.75%;
  562. }
  563. .ui.table th.sixteen.wide,
  564. .ui.table td.sixteen.wide {
  565. width: 100%;
  566. }
  567. /*--------------
  568. Sortable
  569. ---------------*/
  570. .ui.sortable.table thead th {
  571. cursor: pointer;
  572. white-space: nowrap;
  573. border-left: 1px solid #d0d0d0;
  574. color: rgba(0, 0, 0, 0.8);
  575. }
  576. .ui.sortable.table thead th:first-child {
  577. border-left: none;
  578. }
  579. .ui.sortable.table thead th.sorted,
  580. .ui.sortable.table thead th.sorted:hover {
  581. -webkit-user-select: none;
  582. -moz-user-select: none;
  583. -ms-user-select: none;
  584. user-select: none;
  585. }
  586. .ui.sortable.table thead th:after {
  587. display: inline-block;
  588. content: '';
  589. width: 1em;
  590. height: 1em;
  591. opacity: 0.8;
  592. margin: 0em 0em 0em 0.5em;
  593. font-family: 'Icons';
  594. font-style: normal;
  595. font-weight: normal;
  596. text-decoration: inherit;
  597. }
  598. .ui.sortable.table thead th.ascending:after {
  599. content: '\f0d7';
  600. }
  601. .ui.sortable.table thead th.descending:after {
  602. content: '\f0d8';
  603. }
  604. /* Hover */
  605. .ui.sortable.table th.disabled:hover {
  606. cursor: auto;
  607. color: rgba(40, 40, 40, 0.3);
  608. }
  609. .ui.sortable.table thead th:hover {
  610. background: rgba(0, 0, 0, 0.05);
  611. color: rgba(0, 0, 0, 0.8);
  612. }
  613. /* Sorted */
  614. .ui.sortable.table thead th.sorted {
  615. background: rgba(0, 0, 0, 0.05);
  616. color: rgba(0, 0, 0, 0.8);
  617. }
  618. /* Sorted Hover */
  619. .ui.sortable.table thead th.sorted:hover {
  620. background: rgba(0, 0, 0, 0.05);
  621. color: rgba(0, 0, 0, 0.8);
  622. }
  623. /* Inverted */
  624. .ui.inverted.sortable.table thead th.sorted {
  625. background: rgba(255, 255, 255, 0.07) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  626. background: rgba(255, 255, 255, 0.07) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  627. color: #ffffff;
  628. }
  629. .ui.inverted.sortable.table thead th:hover {
  630. background: rgba(255, 255, 255, 0.05) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  631. background: rgba(255, 255, 255, 0.05) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  632. color: #ffffff;
  633. }
  634. .ui.inverted.sortable.table thead th {
  635. border-left-color: transparent;
  636. }
  637. /*--------------
  638. Inverted
  639. ---------------*/
  640. /* Text Color */
  641. .ui.inverted.table {
  642. background: #333333;
  643. color: #ffffff;
  644. border: none;
  645. }
  646. .ui.inverted.table th {
  647. background-color: rgba(0, 0, 0, 0.15);
  648. border-color: rgba(0, 0, 0, 0.2) !important;
  649. color: rgba(255, 255, 255, 0.9);
  650. }
  651. .ui.inverted.table tr td {
  652. border-color: rgba(0, 0, 0, 0.2) !important;
  653. }
  654. .ui.inverted.table tr.disabled td,
  655. .ui.inverted.table tr td.disabled,
  656. .ui.inverted.table tr.disabled:hover td,
  657. .ui.inverted.table tr:hover td.disabled {
  658. pointer-events: none;
  659. color: rgba(225, 225, 225, 0.3);
  660. }
  661. /* Definition */
  662. .ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
  663. .ui.inverted.definition.table thead:not(.full-width) th:first-child {
  664. background: #ffffff;
  665. }
  666. .ui.inverted.definition.table tr td:first-child {
  667. background: rgba(255, 255, 255, 0.02);
  668. color: #ffffff;
  669. }
  670. /*--------------
  671. Collapsing
  672. ---------------*/
  673. .ui.collapsing.table {
  674. width: auto;
  675. }
  676. /*--------------
  677. Basic
  678. ---------------*/
  679. .ui.basic.table {
  680. background: transparent;
  681. border: 1px solid #d0d0d0;
  682. box-shadow: none;
  683. }
  684. .ui.basic.table thead,
  685. .ui.basic.table tfoot {
  686. box-shadow: none;
  687. }
  688. .ui.basic.table th {
  689. background: transparent;
  690. border-left: none;
  691. }
  692. .ui.basic.table tbody tr {
  693. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  694. }
  695. .ui.basic.table td {
  696. background: transparent;
  697. }
  698. .ui.basic.striped.table tbody tr:nth-child(2n) {
  699. background-color: rgba(0, 0, 0, 0.05) !important;
  700. }
  701. /* Very Basic */
  702. .ui[class*="very basic"].table {
  703. border: none;
  704. }
  705. .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
  706. .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
  707. padding: 0.8em 0em;
  708. }
  709. .ui[class*="very basic"].table:not(.sortable):not(.striped) thead th {
  710. padding-top: 0em;
  711. }
  712. .ui[class*="very basic"].table:not(.sortable):not(.striped) tbody tr:last-child td {
  713. padding-bottom: 0em;
  714. }
  715. /*--------------
  716. Celled
  717. ---------------*/
  718. .ui.celled.table th,
  719. .ui.celled.table td {
  720. border-left: 1px solid #d4d4d5;
  721. }
  722. .ui.celled.table th:first-child,
  723. .ui.celled.table td:first-child {
  724. border-left: none;
  725. }
  726. /*--------------
  727. Padded
  728. ---------------*/
  729. .ui.padded.table th {
  730. padding-left: 1em;
  731. padding-right: 1em;
  732. }
  733. .ui.padded.table th,
  734. .ui.padded.table td {
  735. padding: 1em 1em;
  736. }
  737. /* Very */
  738. .ui[class*="very padded"].table th {
  739. padding-left: 1.5em;
  740. padding-right: 1.5em;
  741. }
  742. .ui[class*="very padded"].table td {
  743. padding: 1.5em 1.5em;
  744. }
  745. /*--------------
  746. Compact
  747. ---------------*/
  748. .ui.compact.table th {
  749. padding-left: 0.7em;
  750. padding-right: 0.7em;
  751. }
  752. .ui.compact.table td {
  753. padding: 0.5em 0.7em;
  754. }
  755. /* Very */
  756. .ui[class*="very compact"].table th {
  757. padding-left: 0.6em;
  758. padding-right: 0.6em;
  759. }
  760. .ui[class*="very compact"].table td {
  761. padding: 0.4em 0.6em;
  762. }
  763. /*--------------
  764. Sizes
  765. ---------------*/
  766. /* Small */
  767. .ui.small.table {
  768. font-size: 0.9em;
  769. }
  770. /* Standard */
  771. .ui.table {
  772. font-size: 1em;
  773. }
  774. /* Large */
  775. .ui.large.table {
  776. font-size: 1.1em;
  777. }
  778. /*******************************
  779. Theme Overrides
  780. *******************************/
  781. /*******************************
  782. Site Overrides
  783. *******************************/