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.

878 lines
17 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
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: 0px 0px 0px #b7caa7 inset;
  221. }
  222. .ui.table tr.positive td,
  223. .ui.table td.positive {
  224. background: #eeffe7 !important;
  225. color: #3c763d !important;
  226. }
  227. .ui.celled.table tr.positive:hover td,
  228. .ui.celled.table tr:hover td.positive {
  229. background: #e3ffd8 !important;
  230. color: #376c38 !important;
  231. }
  232. /*--------------
  233. Negative
  234. ---------------*/
  235. .ui.table tr.negative,
  236. .ui.table td.negative {
  237. box-shadow: 0px 0px 0px #dbb1b1 inset;
  238. }
  239. .ui.table tr.negative td,
  240. .ui.table td.negative {
  241. background: #fff0f0 !important;
  242. color: #cd2929 !important;
  243. }
  244. .ui.celled.table tr.negative:hover td,
  245. .ui.celled.table tr:hover td.negative {
  246. background: #ffe1e1 !important;
  247. color: #c02626 !important;
  248. }
  249. /*--------------
  250. Error
  251. ---------------*/
  252. .ui.table tr.error,
  253. .ui.table td.error {
  254. box-shadow: 0px 0px 0px #dbb1b1 inset;
  255. }
  256. .ui.table tr.error td,
  257. .ui.table td.error {
  258. background: #fff0f0 !important;
  259. color: #cd2929 !important;
  260. }
  261. .ui.celled.table tr.error:hover td,
  262. .ui.celled.table tr:hover td.error {
  263. background: #ffe1e1 !important;
  264. color: #c02626 !important;
  265. }
  266. /*--------------
  267. Warning
  268. ---------------*/
  269. .ui.table tr.warning,
  270. .ui.table td.warning {
  271. box-shadow: 0px 0px 0px #d9caab inset;
  272. }
  273. .ui.table tr.warning td,
  274. .ui.table td.warning {
  275. background: #fffbe6 !important;
  276. color: #7d6c00 !important;
  277. }
  278. .ui.celled.table tr.warning:hover td,
  279. .ui.celled.table tr:hover td.warning {
  280. background: #fff9d7 !important;
  281. color: #6e5f00 !important;
  282. }
  283. /*--------------
  284. Active
  285. ---------------*/
  286. .ui.table tr.active,
  287. .ui.table td.active {
  288. box-shadow: 0px 0px 0px rgba(50, 50, 50, 0.9) inset;
  289. }
  290. .ui.table tr.active td,
  291. .ui.table td.active {
  292. background: #e0e0e0 !important;
  293. color: rgba(50, 50, 50, 0.9) !important;
  294. }
  295. .ui.celled.table tr.active:hover td,
  296. .ui.celled.table tr:hover td.active {
  297. background: #e0e0e0 !important;
  298. color: rgba(50, 50, 50, 0.9) !important;
  299. }
  300. /*--------------
  301. Disabled
  302. ---------------*/
  303. .ui.table tr.disabled td,
  304. .ui.table tr td.disabled,
  305. .ui.table tr.disabled:hover td,
  306. .ui.table tr:hover td.disabled {
  307. pointer-events: none;
  308. color: rgba(40, 40, 40, 0.3);
  309. }
  310. /*******************************
  311. Variations
  312. *******************************/
  313. /*--------------
  314. Aligned
  315. ---------------*/
  316. .ui.table[class*="left aligned"],
  317. .ui.table [class*="left aligned"] {
  318. text-align: left;
  319. }
  320. .ui.table[class*="center aligned"],
  321. .ui.table [class*="center aligned"] {
  322. text-align: center;
  323. }
  324. .ui.table[class*="right aligned"],
  325. .ui.table [class*="right aligned"] {
  326. text-align: right;
  327. }
  328. /*--------------
  329. Collapsing
  330. ---------------*/
  331. .ui.table th.collapsing,
  332. .ui.table td.collapsing {
  333. width: 1px;
  334. white-space: nowrap;
  335. }
  336. /*--------------
  337. Attached
  338. ---------------*/
  339. /* All */
  340. .ui.attached.table {
  341. width: -webkit-calc(100% + 2px );
  342. width: calc(100% + 2px );
  343. margin: 0em -1px;
  344. border-radius: 0px;
  345. box-shadow: none;
  346. }
  347. /* Top */
  348. .ui[class*="top attached"].table {
  349. margin-top: 1em 0em;
  350. border-radius: 0.25rem 0.25rem 0em 0em;
  351. }
  352. .ui.table[class*="top attached"]:first-child {
  353. margin-top: 0em;
  354. }
  355. /* Bottom */
  356. .ui.table[class*="bottom attached"] {
  357. margin-top: 0em;
  358. margin-bottom: 1em 0em;
  359. border-radius: 0em 0em 0.25rem 0.25rem;
  360. }
  361. .ui.table[class*="bottom attached"]:last-child {
  362. margin-bottom: 0em;
  363. }
  364. /*--------------
  365. Striped
  366. ---------------*/
  367. /* Table Striping */
  368. .ui.striped.table > tr:nth-child(2n),
  369. .ui.striped.table tbody tr:nth-child(2n) {
  370. background-color: rgba(0, 0, 50, 0.03);
  371. }
  372. /* Stripes */
  373. .ui.inverted.striped.table > tr:nth-child(2n),
  374. .ui.inverted.striped.table tbody tr:nth-child(2n) {
  375. background-color: rgba(255, 255, 255, 0.06);
  376. }
  377. /*-------------------
  378. Colors
  379. --------------------*/
  380. .ui.black.table {
  381. border-top: 0.2em solid #1b1c1d;
  382. }
  383. .ui.blue.table {
  384. border-top: 0.2em solid #3b83c0;
  385. }
  386. .ui.green.table {
  387. border-top: 0.2em solid #5bbd72;
  388. }
  389. .ui.orange.table {
  390. border-top: 0.2em solid #e07b53;
  391. }
  392. .ui.pink.table {
  393. border-top: 0.2em solid #d9499a;
  394. }
  395. .ui.purple.table {
  396. border-top: 0.2em solid #564f8a;
  397. }
  398. .ui.red.table {
  399. border-top: 0.2em solid #d95c5c;
  400. }
  401. .ui.teal.table {
  402. border-top: 0.2em solid #00b5ad;
  403. }
  404. .ui.yellow.table {
  405. border-top: 0.2em solid #f2c61f;
  406. }
  407. /*-------------------
  408. Inverted Colors
  409. --------------------*/
  410. .ui.inverted.table,
  411. .ui.inverted.black.table {
  412. background-color: #1b1c1d !important;
  413. color: #ffffff !important;
  414. }
  415. .ui.inverted.blue.table {
  416. background-color: #3b83c0 !important;
  417. color: #ffffff !important;
  418. }
  419. .ui.inverted.green.table {
  420. background-color: #5bbd72 !important;
  421. color: #ffffff !important;
  422. }
  423. .ui.inverted.orange.table {
  424. background-color: #e07b53 !important;
  425. color: #ffffff !important;
  426. }
  427. .ui.inverted.pink.table {
  428. background-color: #d9499a !important;
  429. color: #ffffff !important;
  430. }
  431. .ui.inverted.purple.table {
  432. background-color: #564f8a !important;
  433. color: #ffffff !important;
  434. }
  435. .ui.inverted.red.table {
  436. background-color: #d95c5c !important;
  437. color: #ffffff !important;
  438. }
  439. .ui.inverted.teal.table {
  440. background-color: #00b5ad !important;
  441. color: #ffffff !important;
  442. }
  443. .ui.inverted.yellow.table {
  444. background-color: #f2c61f !important;
  445. color: #ffffff !important;
  446. }
  447. /*--------------
  448. Column Count
  449. ---------------*/
  450. /* Grid Based */
  451. .ui.one.column.table td {
  452. width: 100%;
  453. }
  454. .ui.two.column.table td {
  455. width: 50%;
  456. }
  457. .ui.three.column.table td {
  458. width: 33.33333333%;
  459. }
  460. .ui.four.column.table td {
  461. width: 25%;
  462. }
  463. .ui.five.column.table td {
  464. width: 20%;
  465. }
  466. .ui.six.column.table td {
  467. width: 16.66666667%;
  468. }
  469. .ui.seven.column.table td {
  470. width: 14.28571429%;
  471. }
  472. .ui.eight.column.table td {
  473. width: 12.5%;
  474. }
  475. .ui.nine.column.table td {
  476. width: 11.11111111%;
  477. }
  478. .ui.ten.column.table td {
  479. width: 10%;
  480. }
  481. .ui.eleven.column.table td {
  482. width: 9.09090909%;
  483. }
  484. .ui.twelve.column.table td {
  485. width: 8.33333333%;
  486. }
  487. .ui.thirteen.column.table td {
  488. width: 7.69230769%;
  489. }
  490. .ui.fourteen.column.table td {
  491. width: 7.14285714%;
  492. }
  493. .ui.fifteen.column.table td {
  494. width: 6.66666667%;
  495. }
  496. .ui.sixteen.column.table td {
  497. width: 6.25%;
  498. }
  499. /* Column Width */
  500. .ui.table th.one.wide,
  501. .ui.table td.one.wide {
  502. width: 6.25%;
  503. }
  504. .ui.table th.two.wide,
  505. .ui.table td.two.wide {
  506. width: 12.5%;
  507. }
  508. .ui.table th.three.wide,
  509. .ui.table td.three.wide {
  510. width: 18.75%;
  511. }
  512. .ui.table th.four.wide,
  513. .ui.table td.four.wide {
  514. width: 25%;
  515. }
  516. .ui.table th.five.wide,
  517. .ui.table td.five.wide {
  518. width: 31.25%;
  519. }
  520. .ui.table th.six.wide,
  521. .ui.table td.six.wide {
  522. width: 37.5%;
  523. }
  524. .ui.table th.seven.wide,
  525. .ui.table td.seven.wide {
  526. width: 43.75%;
  527. }
  528. .ui.table th.eight.wide,
  529. .ui.table td.eight.wide {
  530. width: 50%;
  531. }
  532. .ui.table th.nine.wide,
  533. .ui.table td.nine.wide {
  534. width: 56.25%;
  535. }
  536. .ui.table th.ten.wide,
  537. .ui.table td.ten.wide {
  538. width: 62.5%;
  539. }
  540. .ui.table th.eleven.wide,
  541. .ui.table td.eleven.wide {
  542. width: 68.75%;
  543. }
  544. .ui.table th.twelve.wide,
  545. .ui.table td.twelve.wide {
  546. width: 75%;
  547. }
  548. .ui.table th.thirteen.wide,
  549. .ui.table td.thirteen.wide {
  550. width: 81.25%;
  551. }
  552. .ui.table th.fourteen.wide,
  553. .ui.table td.fourteen.wide {
  554. width: 87.5%;
  555. }
  556. .ui.table th.fifteen.wide,
  557. .ui.table td.fifteen.wide {
  558. width: 93.75%;
  559. }
  560. .ui.table th.sixteen.wide,
  561. .ui.table td.sixteen.wide {
  562. width: 100%;
  563. }
  564. /*--------------
  565. Sortable
  566. ---------------*/
  567. .ui.sortable.table thead th {
  568. cursor: pointer;
  569. white-space: nowrap;
  570. border-left: 1px solid #d0d0d0;
  571. color: rgba(0, 0, 0, 0.8);
  572. }
  573. .ui.sortable.table thead th:first-child {
  574. border-left: none;
  575. }
  576. .ui.sortable.table thead th.sorted,
  577. .ui.sortable.table thead th.sorted:hover {
  578. -webkit-user-select: none;
  579. -moz-user-select: none;
  580. -ms-user-select: none;
  581. user-select: none;
  582. }
  583. .ui.sortable.table thead th:after {
  584. display: inline-block;
  585. content: '';
  586. width: 1em;
  587. height: 1em;
  588. opacity: 0.8;
  589. margin: 0em 0em 0em 0.5em;
  590. font-family: 'Icons';
  591. font-style: normal;
  592. font-weight: normal;
  593. text-decoration: inherit;
  594. }
  595. .ui.sortable.table thead th.ascending:after {
  596. content: '\f0d7';
  597. }
  598. .ui.sortable.table thead th.descending:after {
  599. content: '\f0d8';
  600. }
  601. /* Hover */
  602. .ui.sortable.table th.disabled:hover {
  603. cursor: auto;
  604. color: rgba(40, 40, 40, 0.3);
  605. }
  606. .ui.sortable.table thead th:hover {
  607. background: rgba(0, 0, 0, 0.05);
  608. color: rgba(0, 0, 0, 0.8);
  609. }
  610. /* Sorted */
  611. .ui.sortable.table thead th.sorted {
  612. background: rgba(0, 0, 0, 0.05);
  613. color: rgba(0, 0, 0, 0.8);
  614. }
  615. /* Sorted Hover */
  616. .ui.sortable.table thead th.sorted:hover {
  617. background: rgba(0, 0, 0, 0.05);
  618. color: rgba(0, 0, 0, 0.8);
  619. }
  620. /* Inverted */
  621. .ui.inverted.sortable.table thead th.sorted {
  622. background: rgba(255, 255, 255, 0.07) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  623. background: rgba(255, 255, 255, 0.07) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  624. color: #ffffff;
  625. }
  626. .ui.inverted.sortable.table thead th:hover {
  627. background: rgba(255, 255, 255, 0.05) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  628. background: rgba(255, 255, 255, 0.05) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  629. color: #ffffff;
  630. }
  631. .ui.inverted.sortable.table thead th {
  632. border-left-color: transparent;
  633. }
  634. /*--------------
  635. Inverted
  636. ---------------*/
  637. /* Text Color */
  638. .ui.inverted.table {
  639. background: #333333;
  640. color: #ffffff;
  641. border: none;
  642. }
  643. .ui.inverted.table th {
  644. background-color: rgba(0, 0, 0, 0.15);
  645. border-color: rgba(0, 0, 0, 0.2) !important;
  646. color: rgba(255, 255, 255, 0.9);
  647. }
  648. .ui.inverted.table tr td {
  649. border-color: rgba(0, 0, 0, 0.2) !important;
  650. }
  651. .ui.inverted.table tr.disabled td,
  652. .ui.inverted.table tr td.disabled,
  653. .ui.inverted.table tr.disabled:hover td,
  654. .ui.inverted.table tr:hover td.disabled {
  655. pointer-events: none;
  656. color: rgba(225, 225, 225, 0.3);
  657. }
  658. /* Definition */
  659. .ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
  660. .ui.inverted.definition.table thead:not(.full-width) th:first-child {
  661. background: #ffffff;
  662. }
  663. .ui.inverted.definition.table tr td:first-child {
  664. background: rgba(255, 255, 255, 0.02);
  665. color: #ffffff;
  666. }
  667. /*--------------
  668. Collapsing
  669. ---------------*/
  670. .ui.collapsing.table {
  671. width: auto;
  672. }
  673. /*--------------
  674. Basic
  675. ---------------*/
  676. .ui.basic.table {
  677. background: transparent;
  678. border: 1px solid #d0d0d0;
  679. box-shadow: none;
  680. }
  681. .ui.basic.table thead,
  682. .ui.basic.table tfoot {
  683. box-shadow: none;
  684. }
  685. .ui.basic.table th {
  686. background: transparent;
  687. border-left: none;
  688. }
  689. .ui.basic.table tbody tr {
  690. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  691. }
  692. .ui.basic.table td {
  693. background: transparent;
  694. }
  695. .ui.basic.striped.table tbody tr:nth-child(2n) {
  696. background-color: rgba(0, 0, 0, 0.05) !important;
  697. }
  698. /* Very Basic */
  699. .ui[class*="very basic"].table {
  700. border: none;
  701. }
  702. .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
  703. .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
  704. padding: 0.8em 0em;
  705. }
  706. .ui[class*="very basic"].table:not(.sortable):not(.striped) thead th {
  707. padding-top: 0em;
  708. }
  709. .ui[class*="very basic"].table:not(.sortable):not(.striped) tbody tr:last-child td {
  710. padding-bottom: 0em;
  711. }
  712. /*--------------
  713. Celled
  714. ---------------*/
  715. .ui.celled.table th,
  716. .ui.celled.table td {
  717. border-left: 1px solid #d4d4d5;
  718. }
  719. .ui.celled.table th:first-child,
  720. .ui.celled.table td:first-child {
  721. border-left: none;
  722. }
  723. /*--------------
  724. Padded
  725. ---------------*/
  726. .ui.padded.table th {
  727. padding-left: 1em;
  728. padding-right: 1em;
  729. }
  730. .ui.padded.table th,
  731. .ui.padded.table td {
  732. padding: 1em 1em;
  733. }
  734. /* Very */
  735. .ui[class*="very padded"].table th {
  736. padding-left: 1.5em;
  737. padding-right: 1.5em;
  738. }
  739. .ui[class*="very padded"].table td {
  740. padding: 1.5em 1.5em;
  741. }
  742. /*--------------
  743. Compact
  744. ---------------*/
  745. .ui.compact.table th {
  746. padding-left: 0.7em;
  747. padding-right: 0.7em;
  748. }
  749. .ui.compact.table td {
  750. padding: 0.5em 0.7em;
  751. }
  752. /* Very */
  753. .ui[class*="very compact"].table th {
  754. padding-left: 0.6em;
  755. padding-right: 0.6em;
  756. }
  757. .ui[class*="very compact"].table td {
  758. padding: 0.4em 0.6em;
  759. }
  760. /*--------------
  761. Sizes
  762. ---------------*/
  763. /* Small */
  764. .ui.small.table {
  765. font-size: 0.9em;
  766. }
  767. /* Standard */
  768. .ui.table {
  769. font-size: 1em;
  770. }
  771. /* Large */
  772. .ui.large.table {
  773. font-size: 1.1em;
  774. }
  775. /*******************************
  776. Theme Overrides
  777. *******************************/
  778. /*******************************
  779. Site Overrides
  780. *******************************/