1
0

table.css 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408
  1. /*!
  2. * # Fomantic-UI - Table
  3. * http://github.com/fomantic/Fomantic-UI/
  4. *
  5. *
  6. * Released under the MIT license
  7. * http://opensource.org/licenses/MIT
  8. *
  9. */
  10. /*******************************
  11. Table
  12. *******************************/
  13. /* Prototype */
  14. .ui.table {
  15. width: 100%;
  16. background: #FFFFFF;
  17. margin: 1em 0;
  18. border: 1px solid rgba(34, 36, 38, 0.15);
  19. -webkit-box-shadow: none;
  20. box-shadow: none;
  21. border-radius: 0.28571429rem;
  22. text-align: left;
  23. vertical-align: middle;
  24. color: #AAAAAA;
  25. border-collapse: separate;
  26. border-spacing: 0;
  27. }
  28. .ui.table:first-child {
  29. margin-top: 0;
  30. }
  31. .ui.table:last-child {
  32. margin-bottom: 0;
  33. }
  34. .ui.table > thead,
  35. .ui.table > tbody {
  36. text-align: inherit;
  37. vertical-align: inherit;
  38. }
  39. /*******************************
  40. Parts
  41. *******************************/
  42. /* Table Content */
  43. .ui.table th,
  44. .ui.table td {
  45. -webkit-transition: background 0.1s ease, color 0.1s ease;
  46. transition: background 0.1s ease, color 0.1s ease;
  47. }
  48. /* Headers */
  49. .ui.table > thead {
  50. -webkit-box-shadow: none;
  51. box-shadow: none;
  52. }
  53. .ui.table > thead > tr > th {
  54. cursor: auto;
  55. background: #F9FAFB;
  56. text-align: inherit;
  57. color: #AAAAAA;
  58. padding: 0.92857143em 0.78571429em;
  59. vertical-align: inherit;
  60. font-style: none;
  61. font-weight: bold;
  62. text-transform: none;
  63. border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  64. border-left: none;
  65. }
  66. .ui.table > thead > tr > th:first-child {
  67. border-left: none;
  68. }
  69. .ui.table > thead > tr:first-child > th:first-child {
  70. border-radius: 0.28571429rem 0 0 0;
  71. }
  72. .ui.table > thead > tr:first-child > th:last-child {
  73. border-radius: 0 0.28571429rem 0 0;
  74. }
  75. .ui.table > thead > tr:first-child > th:only-child {
  76. border-radius: 0.28571429rem 0.28571429rem 0 0;
  77. }
  78. /* Footer */
  79. .ui.table > tfoot {
  80. -webkit-box-shadow: none;
  81. box-shadow: none;
  82. }
  83. .ui.table > tfoot > tr > th {
  84. cursor: auto;
  85. border-top: 1px solid rgba(34, 36, 38, 0.15);
  86. background: #F9FAFB;
  87. text-align: inherit;
  88. color: #AAAAAA;
  89. padding: 0.78571429em 0.78571429em;
  90. vertical-align: middle;
  91. font-style: normal;
  92. font-weight: normal;
  93. text-transform: none;
  94. }
  95. .ui.table > tfoot > tr > th:first-child {
  96. border-left: none;
  97. }
  98. .ui.table > tfoot > tr:first-child > th:first-child {
  99. border-radius: 0 0 0 0.28571429rem;
  100. }
  101. .ui.table > tfoot > tr:first-child > th:last-child {
  102. border-radius: 0 0 0.28571429rem 0;
  103. }
  104. .ui.table > tfoot > tr:first-child > th:only-child {
  105. border-radius: 0 0 0.28571429rem 0.28571429rem;
  106. }
  107. /* Table Row */
  108. .ui.table > tr > td,
  109. .ui.table > tbody > tr > td {
  110. border-top: 1px solid rgba(34, 36, 38, 0.1);
  111. }
  112. .ui.table > tr:first-child > td,
  113. .ui.table > tbody > tr:first-child > td {
  114. border-top: none;
  115. }
  116. /* Repeated tbody */
  117. .ui.table > tbody + tbody tr:first-child > td {
  118. border-top: 1px solid rgba(34, 36, 38, 0.1);
  119. }
  120. /* Table Cells */
  121. .ui.table > tbody > tr > td,
  122. .ui.table > tr > td {
  123. padding: 0.78571429em 0.78571429em;
  124. text-align: inherit;
  125. }
  126. /* Icons */
  127. .ui.table > .icon {
  128. vertical-align: baseline;
  129. }
  130. .ui.table > .icon:only-child {
  131. margin: 0;
  132. }
  133. /* Table Segment */
  134. .ui.table.segment {
  135. padding: 0;
  136. }
  137. .ui.table.segment:after {
  138. display: none;
  139. }
  140. .ui.table.segment.stacked:after {
  141. display: block;
  142. }
  143. /* Responsive */
  144. @media only screen and (max-width: 767.98px) {
  145. .ui.table:not(.unstackable) {
  146. width: 100%;
  147. padding: 0;
  148. }
  149. .ui.table:not(.unstackable) > thead,
  150. .ui.table:not(.unstackable) > thead > tr,
  151. .ui.table:not(.unstackable) > tfoot,
  152. .ui.table:not(.unstackable) > tfoot > tr,
  153. .ui.table:not(.unstackable) > tbody,
  154. .ui.table:not(.unstackable) > tr,
  155. .ui.table:not(.unstackable) > tbody > tr,
  156. .ui.table:not(.unstackable) > tr > th,
  157. .ui.table:not(.unstackable) > thead > tr > th,
  158. .ui.table:not(.unstackable) > tbody > tr > th,
  159. .ui.table:not(.unstackable) > tfoot > tr > th,
  160. .ui.table:not(.unstackable) > tr > td,
  161. .ui.table:not(.unstackable) > tbody > tr > td {
  162. display: block !important;
  163. width: auto !important;
  164. }
  165. .ui.table:not(.unstackable) > thead {
  166. display: block;
  167. }
  168. .ui.table:not(.unstackable) > tfoot {
  169. display: block;
  170. }
  171. .ui.table:not(.unstackable) > tr,
  172. .ui.table:not(.unstackable) > thead > tr,
  173. .ui.table:not(.unstackable) > tbody > tr,
  174. .ui.table:not(.unstackable) > tfoot > tr {
  175. padding-top: 1em;
  176. padding-bottom: 1em;
  177. -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
  178. box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
  179. }
  180. .ui.ui.ui.ui.table:not(.unstackable) > tr > th,
  181. .ui.ui.ui.ui.table:not(.unstackable) > thead > tr > th,
  182. .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > th,
  183. .ui.ui.ui.ui.table:not(.unstackable) > tfoot > tr > th,
  184. .ui.ui.ui.ui.table:not(.unstackable) > tr > td,
  185. .ui.ui.ui.ui.table:not(.unstackable) > tbody > tr > td {
  186. background: none;
  187. border: none;
  188. padding: 0.25em 0.75em;
  189. -webkit-box-shadow: none !important;
  190. box-shadow: none !important;
  191. }
  192. .ui.table:not(.unstackable) > tr > th:first-child,
  193. .ui.table:not(.unstackable) > thead > tr > th:first-child,
  194. .ui.table:not(.unstackable) > tbody > tr > th:first-child,
  195. .ui.table:not(.unstackable) > tfoot > tr > th:first-child,
  196. .ui.table:not(.unstackable) > tr > td:first-child,
  197. .ui.table:not(.unstackable) > tbody > tr > td:first-child {
  198. font-weight: bold;
  199. }
  200. /* Definition Table */
  201. .ui.definition.table:not(.unstackable) > thead > tr > th:first-child {
  202. -webkit-box-shadow: none !important;
  203. box-shadow: none !important;
  204. }
  205. }
  206. /*******************************
  207. Coupling
  208. *******************************/
  209. /* UI Image */
  210. .ui.table .collapsing .image,
  211. .ui.table .collapsing .image img {
  212. max-width: none;
  213. }
  214. /*******************************
  215. Types
  216. *******************************/
  217. /*--------------
  218. Complex
  219. ---------------*/
  220. .ui.structured.table {
  221. border-collapse: collapse;
  222. }
  223. .ui.structured.table > thead > tr > th {
  224. border-left: none;
  225. border-right: none;
  226. }
  227. .ui.structured.sortable.table > thead > tr > th {
  228. border-left: 1px solid rgba(34, 36, 38, 0.15);
  229. border-right: 1px solid rgba(34, 36, 38, 0.15);
  230. }
  231. .ui.structured.basic.table > tr > th,
  232. .ui.structured.basic.table > thead > tr > th,
  233. .ui.structured.basic.table > tbody > tr > th,
  234. .ui.structured.basic.table > tfoot > tr > th {
  235. border-left: none;
  236. border-right: none;
  237. }
  238. .ui.structured.celled.table > tr > th,
  239. .ui.structured.celled.table > thead > tr > th,
  240. .ui.structured.celled.table > tbody > tr > th,
  241. .ui.structured.celled.table > tfoot > tr > th,
  242. .ui.structured.celled.table > tr > td,
  243. .ui.structured.celled.table > tbody > tr > td {
  244. border-left: 1px solid rgba(34, 36, 38, 0.1);
  245. border-right: 1px solid rgba(34, 36, 38, 0.1);
  246. }
  247. /*--------------
  248. Definition
  249. ---------------*/
  250. .ui.definition.table > thead:not(.full-width) > tr > th:first-child {
  251. pointer-events: none;
  252. background: #FFFFFF;
  253. font-weight: normal;
  254. color: rgba(0, 0, 0, 0.4);
  255. -webkit-box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
  256. box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
  257. -moz-transform: scale(1);
  258. }
  259. .ui.definition.table > tfoot:not(.full-width) > tr > th:first-child {
  260. pointer-events: none;
  261. background: #FFFFFF;
  262. font-weight: normal;
  263. color: rgba(0, 0, 0, 0.4);
  264. -webkit-box-shadow: -0.1em 0.2em 0 0.1em #FFFFFF;
  265. box-shadow: -0.1em 0.2em 0 0.1em #FFFFFF;
  266. -moz-transform: scale(1);
  267. }
  268. /* Highlight Defining Column */
  269. .ui.definition.table > tr > td:first-child:not(.ignored),
  270. .ui.definition.table > tbody > tr > td:first-child:not(.ignored),
  271. .ui.definition.table tr td.definition {
  272. background: rgba(0, 0, 0, 0.03);
  273. font-weight: bold;
  274. color: rgba(0, 0, 0, 0.95);
  275. text-transform: '';
  276. -webkit-box-shadow: '';
  277. box-shadow: '';
  278. text-align: '';
  279. font-size: 1em;
  280. padding-left: '';
  281. padding-right: '';
  282. }
  283. /* Fix 2nd Column */
  284. .ui.definition.table > thead:not(.full-width) > tr > th:nth-child(2) {
  285. border-left: 1px solid rgba(34, 36, 38, 0.15);
  286. }
  287. .ui.definition.table > tfoot:not(.full-width) > tr > th:nth-child(2) {
  288. border-left: 1px solid rgba(34, 36, 38, 0.15);
  289. }
  290. .ui.definition.table > tr > td:nth-child(2),
  291. .ui.definition.table > tbody > tr > td:nth-child(2) {
  292. border-left: 1px solid rgba(34, 36, 38, 0.15);
  293. }
  294. /*******************************
  295. States
  296. *******************************/
  297. /*--------------
  298. Positive
  299. ---------------*/
  300. .ui.ui.ui.ui.table tr.positive,
  301. .ui.ui.table td.positive {
  302. -webkit-box-shadow: 0 0 0 #A3C293 inset;
  303. box-shadow: 0 0 0 #A3C293 inset;
  304. background: #FCFFF5;
  305. color: #2C662D;
  306. }
  307. /*--------------
  308. Negative
  309. ---------------*/
  310. .ui.ui.ui.ui.table tr.negative,
  311. .ui.ui.table td.negative {
  312. -webkit-box-shadow: 0 0 0 #E0B4B4 inset;
  313. box-shadow: 0 0 0 #E0B4B4 inset;
  314. background: #FFF6F6;
  315. color: #9F3A38;
  316. }
  317. /*--------------
  318. Error
  319. ---------------*/
  320. .ui.ui.ui.ui.table tr.error,
  321. .ui.ui.table td.error {
  322. -webkit-box-shadow: 0 0 0 #E0B4B4 inset;
  323. box-shadow: 0 0 0 #E0B4B4 inset;
  324. background: #FFF6F6;
  325. color: #9F3A38;
  326. }
  327. /*--------------
  328. Warning
  329. ---------------*/
  330. .ui.ui.ui.ui.table tr.warning,
  331. .ui.ui.table td.warning {
  332. -webkit-box-shadow: 0 0 0 #C9BA9B inset;
  333. box-shadow: 0 0 0 #C9BA9B inset;
  334. background: #FFFAF3;
  335. color: #573A08;
  336. }
  337. /*--------------
  338. Active
  339. ---------------*/
  340. .ui.ui.ui.ui.table tr.active,
  341. .ui.ui.table td.active {
  342. -webkit-box-shadow: 0 0 0 #AAAAAA inset;
  343. box-shadow: 0 0 0 #AAAAAA inset;
  344. background: #E0E0E0;
  345. color: #AAAAAA;
  346. }
  347. /*--------------
  348. Disabled
  349. ---------------*/
  350. .ui.table tr.disabled td,
  351. .ui.table tr td.disabled,
  352. .ui.table tr.disabled:hover,
  353. .ui.table tr:hover td.disabled {
  354. pointer-events: none;
  355. color: rgba(40, 40, 40, 0.3);
  356. }
  357. /*******************************
  358. Variations
  359. *******************************/
  360. /*--------------
  361. Stackable
  362. ---------------*/
  363. @media only screen and (max-width: 991.98px) {
  364. .ui[class*="tablet stackable"].table,
  365. .ui[class*="tablet stackable"].table > thead,
  366. .ui[class*="tablet stackable"].table > thead > tr,
  367. .ui[class*="tablet stackable"].table > tfoot,
  368. .ui[class*="tablet stackable"].table > tfoot > tr,
  369. .ui[class*="tablet stackable"].table > tbody,
  370. .ui[class*="tablet stackable"].table > tbody > tr,
  371. .ui[class*="tablet stackable"].table > tr,
  372. .ui[class*="tablet stackable"].table > thead > tr > th,
  373. .ui[class*="tablet stackable"].table > tbody > tr > th,
  374. .ui[class*="tablet stackable"].table > tfoot > tr > th,
  375. .ui[class*="tablet stackable"].table > tr > th,
  376. .ui[class*="tablet stackable"].table > tbody > tr > td,
  377. .ui[class*="tablet stackable"].table > tr > td {
  378. display: block !important;
  379. width: 100% !important;
  380. }
  381. .ui[class*="tablet stackable"].table {
  382. padding: 0;
  383. }
  384. .ui[class*="tablet stackable"].table > thead {
  385. display: block;
  386. }
  387. .ui[class*="tablet stackable"].table > tfoot {
  388. display: block;
  389. }
  390. .ui[class*="tablet stackable"].table > thead > tr,
  391. .ui[class*="tablet stackable"].table > tbody > tr,
  392. .ui[class*="tablet stackable"].table > tfoot > tr,
  393. .ui[class*="tablet stackable"].table > tr {
  394. padding-top: 1em;
  395. padding-bottom: 1em;
  396. -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
  397. box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
  398. }
  399. .ui[class*="tablet stackable"].table > thead > tr > th,
  400. .ui[class*="tablet stackable"].table > tbody > tr > th,
  401. .ui[class*="tablet stackable"].table > tfoot > tr > th,
  402. .ui[class*="tablet stackable"].table > tr > th,
  403. .ui[class*="tablet stackable"].table > tbody > tr > td,
  404. .ui[class*="tablet stackable"].table > tr > td {
  405. background: none;
  406. border: none !important;
  407. padding: 0.25em 0.75em;
  408. -webkit-box-shadow: none !important;
  409. box-shadow: none !important;
  410. }
  411. /* Definition Table */
  412. .ui.definition[class*="tablet stackable"].table > thead > tr > th:first-child {
  413. -webkit-box-shadow: none !important;
  414. box-shadow: none !important;
  415. }
  416. }
  417. /*--------------
  418. Text Alignment
  419. ---------------*/
  420. .ui.table[class*="left aligned"],
  421. .ui.table [class*="left aligned"] {
  422. text-align: left;
  423. }
  424. .ui.table[class*="center aligned"],
  425. .ui.table [class*="center aligned"] {
  426. text-align: center;
  427. }
  428. .ui.table[class*="right aligned"],
  429. .ui.table [class*="right aligned"] {
  430. text-align: right;
  431. }
  432. /*------------------
  433. Vertical Alignment
  434. ------------------*/
  435. .ui.table[class*="top aligned"],
  436. .ui.table [class*="top aligned"] {
  437. vertical-align: top;
  438. }
  439. .ui.table[class*="middle aligned"],
  440. .ui.table [class*="middle aligned"] {
  441. vertical-align: middle;
  442. }
  443. .ui.table[class*="bottom aligned"],
  444. .ui.table [class*="bottom aligned"] {
  445. vertical-align: bottom;
  446. }
  447. /*--------------
  448. Collapsing
  449. ---------------*/
  450. .ui.table th.collapsing,
  451. .ui.table td.collapsing {
  452. width: 1px;
  453. white-space: nowrap;
  454. }
  455. /*--------------
  456. Fixed
  457. ---------------*/
  458. .ui.fixed.table {
  459. table-layout: fixed;
  460. }
  461. .ui.fixed.table th,
  462. .ui.fixed.table td {
  463. overflow: hidden;
  464. text-overflow: ellipsis;
  465. }
  466. /*--------------
  467. Selectable
  468. ---------------*/
  469. .ui.ui.selectable.table > tbody > tr:hover,
  470. .ui.table tbody tr td.selectable:hover {
  471. background: rgba(0, 0, 0, 0.05);
  472. color: rgba(0, 0, 0, 0.95);
  473. }
  474. .ui.ui.selectable.inverted.table > tbody > tr:hover,
  475. .ui.inverted.table tbody tr td.selectable:hover {
  476. background: rgba(255, 255, 255, 0.08);
  477. color: #ffffff;
  478. }
  479. /* Selectable Cell Link */
  480. .ui.table tbody tr td.selectable {
  481. padding: 0;
  482. }
  483. .ui.table tbody tr td.selectable > a:not(.ui) {
  484. display: block;
  485. color: inherit;
  486. padding: 0.78571429em 0.78571429em;
  487. }
  488. .ui.table > tr > td.selectable,
  489. .ui.table > tbody > tr > td.selectable,
  490. .ui.selectable.table > tbody > tr,
  491. .ui.selectable.table > tr {
  492. cursor: pointer;
  493. }
  494. /* Other States */
  495. .ui.ui.selectable.table tr.error:hover,
  496. .ui.table tr td.selectable.error:hover,
  497. .ui.selectable.table tr:hover td.error {
  498. background: #ffe7e7;
  499. color: #943634;
  500. }
  501. .ui.ui.selectable.table tr.warning:hover,
  502. .ui.table tr td.selectable.warning:hover,
  503. .ui.selectable.table tr:hover td.warning {
  504. background: #fff4e4;
  505. color: #493107;
  506. }
  507. .ui.ui.selectable.table tr.active:hover,
  508. .ui.table tr td.selectable.active:hover,
  509. .ui.selectable.table tr:hover td.active {
  510. background: #E0E0E0;
  511. color: #AAAAAA;
  512. }
  513. .ui.ui.selectable.table tr.positive:hover,
  514. .ui.table tr td.selectable.positive:hover,
  515. .ui.selectable.table tr:hover td.positive {
  516. background: #f7ffe6;
  517. color: #275b28;
  518. }
  519. .ui.ui.selectable.table tr.negative:hover,
  520. .ui.table tr td.selectable.negative:hover,
  521. .ui.selectable.table tr:hover td.negative {
  522. background: #ffe7e7;
  523. color: #943634;
  524. }
  525. /*-------------------
  526. Attached
  527. --------------------*/
  528. /* Middle */
  529. .ui.attached.table {
  530. top: 0;
  531. bottom: 0;
  532. border-radius: 0;
  533. margin: 0 -1px;
  534. width: calc(100% + 2px);
  535. max-width: calc(100% + 2px);
  536. -webkit-box-shadow: none;
  537. box-shadow: none;
  538. border: 1px solid #D4D4D5;
  539. }
  540. .ui.attached + .ui.attached.table:not(.top) {
  541. border-top: none;
  542. }
  543. /* Top */
  544. .ui[class*="top attached"].table {
  545. bottom: 0;
  546. margin-bottom: 0;
  547. top: 0;
  548. margin-top: 1em;
  549. border-radius: 0.28571429rem 0.28571429rem 0 0;
  550. }
  551. .ui.table[class*="top attached"]:first-child {
  552. margin-top: 0;
  553. }
  554. /* Bottom */
  555. .ui[class*="bottom attached"].table {
  556. bottom: 0;
  557. margin-top: 0;
  558. top: 0;
  559. margin-bottom: 1em;
  560. -webkit-box-shadow: none, none;
  561. box-shadow: none, none;
  562. border-radius: 0 0 0.28571429rem 0.28571429rem;
  563. }
  564. .ui[class*="bottom attached"].table:last-child {
  565. margin-bottom: 0;
  566. }
  567. /*--------------
  568. Striped
  569. ---------------*/
  570. /* Table Striping */
  571. .ui.striped.table > tr:nth-child(2n),
  572. .ui.striped.table > tbody > tr:nth-child(2n) {
  573. background-color: rgba(0, 0, 50, 0.02);
  574. }
  575. /* Stripes */
  576. .ui.inverted.striped.table > tr:nth-child(2n),
  577. .ui.inverted.striped.table > tbody > tr:nth-child(2n) {
  578. background-color: rgba(255, 255, 255, 0.05);
  579. }
  580. /* Allow striped active hover */
  581. .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
  582. background: #EFEFEF;
  583. color: rgba(0, 0, 0, 0.95);
  584. }
  585. /*--------------
  586. Single Line
  587. ---------------*/
  588. .ui.table[class*="single line"],
  589. .ui.table [class*="single line"] {
  590. white-space: nowrap;
  591. }
  592. /*-------------------
  593. Colors
  594. --------------------*/
  595. .ui.primary.table {
  596. border-top: 0.2em solid #2185D0;
  597. }
  598. .ui.inverted.primary.table {
  599. background-color: #2185D0;
  600. color: #FFFFFF;
  601. }
  602. .ui.ui.ui.ui.table tr.primary,
  603. .ui.ui.table td.primary {
  604. -webkit-box-shadow: 0 0 0 #1a69a4 inset;
  605. box-shadow: 0 0 0 #1a69a4 inset;
  606. background: #ddf4ff;
  607. color: rgba(255, 255, 255, 0.9);
  608. }
  609. .ui.ui.selectable.table tr.primary:hover,
  610. .ui.table tr td.selectable.primary:hover,
  611. .ui.selectable.table tr:hover td.primary {
  612. background: #d3f1ff;
  613. color: rgba(255, 255, 255, 0.9);
  614. }
  615. .ui.secondary.table {
  616. border-top: 0.2em solid #1B1C1D;
  617. }
  618. .ui.inverted.secondary.table {
  619. background-color: #1B1C1D;
  620. color: #FFFFFF;
  621. }
  622. .ui.ui.ui.ui.table tr.secondary,
  623. .ui.ui.table td.secondary {
  624. -webkit-box-shadow: 0 0 0 #020203 inset;
  625. box-shadow: 0 0 0 #020203 inset;
  626. background: #dddddd;
  627. color: rgba(255, 255, 255, 0.9);
  628. }
  629. .ui.ui.selectable.table tr.secondary:hover,
  630. .ui.table tr td.selectable.secondary:hover,
  631. .ui.selectable.table tr:hover td.secondary {
  632. background: #e2e2e2;
  633. color: rgba(255, 255, 255, 0.9);
  634. }
  635. .ui.red.table {
  636. border-top: 0.2em solid #DB2828;
  637. }
  638. .ui.inverted.red.table {
  639. background-color: #DB2828;
  640. color: #FFFFFF;
  641. }
  642. .ui.ui.ui.ui.table tr.red,
  643. .ui.ui.table td.red {
  644. -webkit-box-shadow: 0 0 0 #b21e1e inset;
  645. box-shadow: 0 0 0 #b21e1e inset;
  646. background: #ffe1df;
  647. color: #DB2828;
  648. }
  649. .ui.ui.selectable.table tr.red:hover,
  650. .ui.table tr td.selectable.red:hover,
  651. .ui.selectable.table tr:hover td.red {
  652. background: #ffd7d5;
  653. color: #DB2828;
  654. }
  655. .ui.orange.table {
  656. border-top: 0.2em solid #F2711C;
  657. }
  658. .ui.inverted.orange.table {
  659. background-color: #F2711C;
  660. color: #FFFFFF;
  661. }
  662. .ui.ui.ui.ui.table tr.orange,
  663. .ui.ui.table td.orange {
  664. -webkit-box-shadow: 0 0 0 #cf590c inset;
  665. box-shadow: 0 0 0 #cf590c inset;
  666. background: #ffe7d1;
  667. color: #F2711C;
  668. }
  669. .ui.ui.selectable.table tr.orange:hover,
  670. .ui.table tr td.selectable.orange:hover,
  671. .ui.selectable.table tr:hover td.orange {
  672. background: #fae1cc;
  673. color: #F2711C;
  674. }
  675. .ui.yellow.table {
  676. border-top: 0.2em solid #FBBD08;
  677. }
  678. .ui.inverted.yellow.table {
  679. background-color: #FBBD08;
  680. color: #FFFFFF;
  681. }
  682. .ui.ui.ui.ui.table tr.yellow,
  683. .ui.ui.table td.yellow {
  684. -webkit-box-shadow: 0 0 0 #cd9903 inset;
  685. box-shadow: 0 0 0 #cd9903 inset;
  686. background: #fff9d2;
  687. color: #B58105;
  688. }
  689. .ui.ui.selectable.table tr.yellow:hover,
  690. .ui.table tr td.selectable.yellow:hover,
  691. .ui.selectable.table tr:hover td.yellow {
  692. background: #fbf5cc;
  693. color: #B58105;
  694. }
  695. .ui.olive.table {
  696. border-top: 0.2em solid #B5CC18;
  697. }
  698. .ui.inverted.olive.table {
  699. background-color: #B5CC18;
  700. color: #FFFFFF;
  701. }
  702. .ui.ui.ui.ui.table tr.olive,
  703. .ui.ui.table td.olive {
  704. -webkit-box-shadow: 0 0 0 #8d9e13 inset;
  705. box-shadow: 0 0 0 #8d9e13 inset;
  706. background: #f7fae4;
  707. color: #8ABC1E;
  708. }
  709. .ui.ui.selectable.table tr.olive:hover,
  710. .ui.table tr td.selectable.olive:hover,
  711. .ui.selectable.table tr:hover td.olive {
  712. background: #f6fada;
  713. color: #8ABC1E;
  714. }
  715. .ui.green.table {
  716. border-top: 0.2em solid #21BA45;
  717. }
  718. .ui.inverted.green.table {
  719. background-color: #21BA45;
  720. color: #FFFFFF;
  721. }
  722. .ui.ui.ui.ui.table tr.green,
  723. .ui.ui.table td.green {
  724. -webkit-box-shadow: 0 0 0 #198f35 inset;
  725. box-shadow: 0 0 0 #198f35 inset;
  726. background: #d5f5d9;
  727. color: #1EBC30;
  728. }
  729. .ui.ui.selectable.table tr.green:hover,
  730. .ui.table tr td.selectable.green:hover,
  731. .ui.selectable.table tr:hover td.green {
  732. background: #d2eed5;
  733. color: #1EBC30;
  734. }
  735. .ui.teal.table {
  736. border-top: 0.2em solid #00B5AD;
  737. }
  738. .ui.inverted.teal.table {
  739. background-color: #00B5AD;
  740. color: #FFFFFF;
  741. }
  742. .ui.ui.ui.ui.table tr.teal,
  743. .ui.ui.table td.teal {
  744. -webkit-box-shadow: 0 0 0 #00827c inset;
  745. box-shadow: 0 0 0 #00827c inset;
  746. background: #e2ffff;
  747. color: #10A3A3;
  748. }
  749. .ui.ui.selectable.table tr.teal:hover,
  750. .ui.table tr td.selectable.teal:hover,
  751. .ui.selectable.table tr:hover td.teal {
  752. background: #d8ffff;
  753. color: #10A3A3;
  754. }
  755. .ui.blue.table {
  756. border-top: 0.2em solid #2185D0;
  757. }
  758. .ui.inverted.blue.table {
  759. background-color: #2185D0;
  760. color: #FFFFFF;
  761. }
  762. .ui.ui.ui.ui.table tr.blue,
  763. .ui.ui.table td.blue {
  764. -webkit-box-shadow: 0 0 0 #1a69a4 inset;
  765. box-shadow: 0 0 0 #1a69a4 inset;
  766. background: #ddf4ff;
  767. color: #2185D0;
  768. }
  769. .ui.ui.selectable.table tr.blue:hover,
  770. .ui.table tr td.selectable.blue:hover,
  771. .ui.selectable.table tr:hover td.blue {
  772. background: #d3f1ff;
  773. color: #2185D0;
  774. }
  775. .ui.violet.table {
  776. border-top: 0.2em solid #6435C9;
  777. }
  778. .ui.inverted.violet.table {
  779. background-color: #6435C9;
  780. color: #FFFFFF;
  781. }
  782. .ui.ui.ui.ui.table tr.violet,
  783. .ui.ui.table td.violet {
  784. -webkit-box-shadow: 0 0 0 #502aa1 inset;
  785. box-shadow: 0 0 0 #502aa1 inset;
  786. background: #ece9fe;
  787. color: #6435C9;
  788. }
  789. .ui.ui.selectable.table tr.violet:hover,
  790. .ui.table tr td.selectable.violet:hover,
  791. .ui.selectable.table tr:hover td.violet {
  792. background: #e3deff;
  793. color: #6435C9;
  794. }
  795. .ui.purple.table {
  796. border-top: 0.2em solid #A333C8;
  797. }
  798. .ui.inverted.purple.table {
  799. background-color: #A333C8;
  800. color: #FFFFFF;
  801. }
  802. .ui.ui.ui.ui.table tr.purple,
  803. .ui.ui.table td.purple {
  804. -webkit-box-shadow: 0 0 0 #82299f inset;
  805. box-shadow: 0 0 0 #82299f inset;
  806. background: #f8e3ff;
  807. color: #A333C8;
  808. }
  809. .ui.ui.selectable.table tr.purple:hover,
  810. .ui.table tr td.selectable.purple:hover,
  811. .ui.selectable.table tr:hover td.purple {
  812. background: #f5d9ff;
  813. color: #A333C8;
  814. }
  815. .ui.pink.table {
  816. border-top: 0.2em solid #E03997;
  817. }
  818. .ui.inverted.pink.table {
  819. background-color: #E03997;
  820. color: #FFFFFF;
  821. }
  822. .ui.ui.ui.ui.table tr.pink,
  823. .ui.ui.table td.pink {
  824. -webkit-box-shadow: 0 0 0 #c71f7e inset;
  825. box-shadow: 0 0 0 #c71f7e inset;
  826. background: #ffe8f9;
  827. color: #E03997;
  828. }
  829. .ui.ui.selectable.table tr.pink:hover,
  830. .ui.table tr td.selectable.pink:hover,
  831. .ui.selectable.table tr:hover td.pink {
  832. background: #ffdef6;
  833. color: #E03997;
  834. }
  835. .ui.brown.table {
  836. border-top: 0.2em solid #A5673F;
  837. }
  838. .ui.inverted.brown.table {
  839. background-color: #A5673F;
  840. color: #FFFFFF;
  841. }
  842. .ui.ui.ui.ui.table tr.brown,
  843. .ui.ui.table td.brown {
  844. -webkit-box-shadow: 0 0 0 #805031 inset;
  845. box-shadow: 0 0 0 #805031 inset;
  846. background: #f7e5d2;
  847. color: #A5673F;
  848. }
  849. .ui.ui.selectable.table tr.brown:hover,
  850. .ui.table tr td.selectable.brown:hover,
  851. .ui.selectable.table tr:hover td.brown {
  852. background: #efe0cf;
  853. color: #A5673F;
  854. }
  855. .ui.grey.table {
  856. border-top: 0.2em solid #767676;
  857. }
  858. .ui.inverted.grey.table {
  859. background-color: #767676;
  860. color: #FFFFFF;
  861. }
  862. .ui.ui.ui.ui.table tr.grey,
  863. .ui.ui.table td.grey {
  864. -webkit-box-shadow: 0 0 0 #5d5d5d inset;
  865. box-shadow: 0 0 0 #5d5d5d inset;
  866. background: #DCDDDE;
  867. color: #767676;
  868. }
  869. .ui.ui.selectable.table tr.grey:hover,
  870. .ui.table tr td.selectable.grey:hover,
  871. .ui.selectable.table tr:hover td.grey {
  872. background: #c2c4c5;
  873. color: #767676;
  874. }
  875. .ui.black.table {
  876. border-top: 0.2em solid #1B1C1D;
  877. }
  878. .ui.inverted.black.table {
  879. background-color: #1B1C1D;
  880. color: #FFFFFF;
  881. }
  882. .ui.ui.ui.ui.table tr.black,
  883. .ui.ui.table td.black {
  884. -webkit-box-shadow: 0 0 0 #020203 inset;
  885. box-shadow: 0 0 0 #020203 inset;
  886. background: #545454;
  887. color: #FFFFFF;
  888. }
  889. .ui.ui.selectable.table tr.black:hover,
  890. .ui.table tr td.selectable.black:hover,
  891. .ui.selectable.table tr:hover td.black {
  892. background: #000000;
  893. color: #FFFFFF;
  894. }
  895. /*--------------
  896. Column Count
  897. ---------------*/
  898. /* Grid Based */
  899. .ui.one.column.table td {
  900. width: 100%;
  901. }
  902. .ui.two.column.table td {
  903. width: 50%;
  904. }
  905. .ui.three.column.table td {
  906. width: 33.33333333%;
  907. }
  908. .ui.four.column.table td {
  909. width: 25%;
  910. }
  911. .ui.five.column.table td {
  912. width: 20%;
  913. }
  914. .ui.six.column.table td {
  915. width: 16.66666667%;
  916. }
  917. .ui.seven.column.table td {
  918. width: 14.28571429%;
  919. }
  920. .ui.eight.column.table td {
  921. width: 12.5%;
  922. }
  923. .ui.nine.column.table td {
  924. width: 11.11111111%;
  925. }
  926. .ui.ten.column.table td {
  927. width: 10%;
  928. }
  929. .ui.eleven.column.table td {
  930. width: 9.09090909%;
  931. }
  932. .ui.twelve.column.table td {
  933. width: 8.33333333%;
  934. }
  935. .ui.thirteen.column.table td {
  936. width: 7.69230769%;
  937. }
  938. .ui.fourteen.column.table td {
  939. width: 7.14285714%;
  940. }
  941. .ui.fifteen.column.table td {
  942. width: 6.66666667%;
  943. }
  944. .ui.sixteen.column.table td {
  945. width: 6.25%;
  946. }
  947. /* Column Width */
  948. .ui.table th.one.wide,
  949. .ui.table td.one.wide {
  950. width: 6.25%;
  951. }
  952. .ui.table th.two.wide,
  953. .ui.table td.two.wide {
  954. width: 12.5%;
  955. }
  956. .ui.table th.three.wide,
  957. .ui.table td.three.wide {
  958. width: 18.75%;
  959. }
  960. .ui.table th.four.wide,
  961. .ui.table td.four.wide {
  962. width: 25%;
  963. }
  964. .ui.table th.five.wide,
  965. .ui.table td.five.wide {
  966. width: 31.25%;
  967. }
  968. .ui.table th.six.wide,
  969. .ui.table td.six.wide {
  970. width: 37.5%;
  971. }
  972. .ui.table th.seven.wide,
  973. .ui.table td.seven.wide {
  974. width: 43.75%;
  975. }
  976. .ui.table th.eight.wide,
  977. .ui.table td.eight.wide {
  978. width: 50%;
  979. }
  980. .ui.table th.nine.wide,
  981. .ui.table td.nine.wide {
  982. width: 56.25%;
  983. }
  984. .ui.table th.ten.wide,
  985. .ui.table td.ten.wide {
  986. width: 62.5%;
  987. }
  988. .ui.table th.eleven.wide,
  989. .ui.table td.eleven.wide {
  990. width: 68.75%;
  991. }
  992. .ui.table th.twelve.wide,
  993. .ui.table td.twelve.wide {
  994. width: 75%;
  995. }
  996. .ui.table th.thirteen.wide,
  997. .ui.table td.thirteen.wide {
  998. width: 81.25%;
  999. }
  1000. .ui.table th.fourteen.wide,
  1001. .ui.table td.fourteen.wide {
  1002. width: 87.5%;
  1003. }
  1004. .ui.table th.fifteen.wide,
  1005. .ui.table td.fifteen.wide {
  1006. width: 93.75%;
  1007. }
  1008. .ui.table th.sixteen.wide,
  1009. .ui.table td.sixteen.wide {
  1010. width: 100%;
  1011. }
  1012. /*--------------
  1013. Sortable
  1014. ---------------*/
  1015. .ui.sortable.table > thead > tr > th {
  1016. cursor: pointer;
  1017. white-space: nowrap;
  1018. border-left: 1px solid rgba(34, 36, 38, 0.15);
  1019. color: #AAAAAA;
  1020. }
  1021. .ui.sortable.table > thead > tr > th:first-child {
  1022. border-left: none;
  1023. }
  1024. .ui.sortable.table thead th.sorted,
  1025. .ui.sortable.table thead th.sorted:hover {
  1026. -webkit-user-select: none;
  1027. -moz-user-select: none;
  1028. -ms-user-select: none;
  1029. user-select: none;
  1030. }
  1031. .ui.sortable.table > thead > tr > th:after {
  1032. display: none;
  1033. font-style: normal;
  1034. font-weight: normal;
  1035. text-decoration: inherit;
  1036. content: '';
  1037. height: 1em;
  1038. width: auto;
  1039. opacity: 0.8;
  1040. margin: 0 0 0 0.5em;
  1041. font-family: 'Icons';
  1042. }
  1043. .ui.sortable.table thead th.ascending:after {
  1044. content: '\f0d8';
  1045. }
  1046. .ui.sortable.table thead th.descending:after {
  1047. content: '\f0d7';
  1048. }
  1049. /* Hover */
  1050. .ui.sortable.table th.disabled:hover {
  1051. cursor: auto;
  1052. color: rgba(40, 40, 40, 0.3);
  1053. }
  1054. .ui.sortable.table > thead > tr > th:hover {
  1055. background: rgba(0, 0, 0, 0.05);
  1056. color: rgba(0, 0, 0, 0.8);
  1057. }
  1058. /* Sorted */
  1059. .ui.sortable.table thead th.sorted {
  1060. background: rgba(0, 0, 0, 0.05);
  1061. color: rgba(0, 0, 0, 0.95);
  1062. }
  1063. .ui.sortable.table thead th.sorted:after {
  1064. display: inline-block;
  1065. }
  1066. /* Sorted Hover */
  1067. .ui.sortable.table thead th.sorted:hover {
  1068. background: rgba(0, 0, 0, 0.05);
  1069. color: rgba(0, 0, 0, 0.95);
  1070. }
  1071. /* Inverted */
  1072. .ui.inverted.sortable.table thead th.sorted {
  1073. background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
  1074. background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  1075. background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  1076. color: #ffffff;
  1077. }
  1078. .ui.inverted.sortable.table > thead > tr > th:hover {
  1079. background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
  1080. background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  1081. background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  1082. color: #ffffff;
  1083. }
  1084. .ui.inverted.sortable.table > thead > tr > th {
  1085. border-left-color: transparent;
  1086. border-right-color: transparent;
  1087. }
  1088. /*--------------
  1089. Inverted
  1090. ---------------*/
  1091. /* Text Color */
  1092. .ui.inverted.table {
  1093. background: #333333;
  1094. color: rgba(255, 255, 255, 0.9);
  1095. border: none;
  1096. }
  1097. .ui.ui.inverted.table > thead > tr > th,
  1098. .ui.ui.inverted.table > tbody > tr > th,
  1099. .ui.ui.inverted.table > tfoot > tr > th,
  1100. .ui.ui.inverted.table > tr > th {
  1101. background-color: rgba(0, 0, 0, 0.15);
  1102. border-color: rgba(255, 255, 255, 0.1);
  1103. color: rgba(255, 255, 255, 0.9);
  1104. }
  1105. .ui.inverted.table > tbody > tr > td,
  1106. .ui.inverted.table > tr > td {
  1107. border-color: rgba(255, 255, 255, 0.1);
  1108. }
  1109. .ui.inverted.table tr.disabled td,
  1110. .ui.inverted.table tr td.disabled,
  1111. .ui.inverted.table tr.disabled:hover td,
  1112. .ui.inverted.table tr:hover td.disabled {
  1113. pointer-events: none;
  1114. color: rgba(225, 225, 225, 0.3);
  1115. }
  1116. .ui.inverted.table tr td.disabled:not([class="disabled"]),
  1117. .ui.inverted.table tr.disabled:not([class="disabled"]) td,
  1118. .ui.inverted.table tr.disabled td[class]:not(.disabled),
  1119. .ui.inverted.table tr:hover td.disabled:not([class="disabled"]) {
  1120. color: rgba(40, 40, 40, 0.3);
  1121. }
  1122. /* Definition */
  1123. .ui.inverted.definition.table > tfoot:not(.full-width) > tr > th:first-child,
  1124. .ui.inverted.definition.table > thead:not(.full-width) > tr > th:first-child {
  1125. background: #FFFFFF;
  1126. }
  1127. .ui.inverted.definition.table > tbody > tr > td:first-child,
  1128. .ui.inverted.definition.table > tr > td:first-child {
  1129. background: rgba(255, 255, 255, 0.02);
  1130. color: #ffffff;
  1131. }
  1132. /*--------------
  1133. Collapsing
  1134. ---------------*/
  1135. .ui.collapsing.table {
  1136. width: auto;
  1137. }
  1138. /*--------------
  1139. Basic
  1140. ---------------*/
  1141. .ui.basic.table {
  1142. background: transparent;
  1143. border: 1px solid rgba(34, 36, 38, 0.15);
  1144. -webkit-box-shadow: none;
  1145. box-shadow: none;
  1146. }
  1147. .ui.basic.table > thead,
  1148. .ui.basic.table > tfoot {
  1149. -webkit-box-shadow: none;
  1150. box-shadow: none;
  1151. }
  1152. .ui.basic.table > thead > tr > th,
  1153. .ui.basic.table > tbody > tr > th,
  1154. .ui.basic.table > tfoot > tr > th,
  1155. .ui.basic.table > tr > th {
  1156. background: transparent;
  1157. border-left: none;
  1158. }
  1159. .ui.basic.table > tbody > tr {
  1160. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  1161. }
  1162. .ui.basic.table > tbody > tr > td,
  1163. .ui.basic.table > tr > td {
  1164. background: transparent;
  1165. }
  1166. .ui.basic.striped.table > tbody > tr:nth-child(2n) {
  1167. background-color: rgba(0, 0, 0, 0.05);
  1168. }
  1169. /* Very Basic */
  1170. .ui[class*="very basic"].table {
  1171. border: none;
  1172. }
  1173. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th,
  1174. .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th,
  1175. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th,
  1176. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th,
  1177. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td,
  1178. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td {
  1179. padding: '';
  1180. }
  1181. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:first-child,
  1182. .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:first-child,
  1183. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:first-child,
  1184. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:first-child,
  1185. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:first-child,
  1186. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:first-child {
  1187. padding-left: 0;
  1188. }
  1189. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > th:last-child,
  1190. .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr > th:last-child,
  1191. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > th:last-child,
  1192. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tfoot > tr > th:last-child,
  1193. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tr > td:last-child,
  1194. .ui[class*="very basic"].table:not(.sortable):not(.striped) > tbody > tr > td:last-child {
  1195. padding-right: 0;
  1196. }
  1197. .ui[class*="very basic"].table:not(.sortable):not(.striped) > thead > tr:first-child > th {
  1198. padding-top: 0;
  1199. }
  1200. /*--------------
  1201. Celled
  1202. ---------------*/
  1203. .ui.celled.table > tr > th,
  1204. .ui.celled.table > thead > tr > th,
  1205. .ui.celled.table > tbody > tr > th,
  1206. .ui.celled.table > tfoot > tr > th,
  1207. .ui.celled.table > tr > td,
  1208. .ui.celled.table > tbody > tr > td {
  1209. border-left: 1px solid rgba(34, 36, 38, 0.1);
  1210. }
  1211. .ui.inverted.celled.table > tbody > tr > td,
  1212. .ui.inverted.celled.table > tr > td {
  1213. border-left: 1px solid rgba(255, 255, 255, 0.1);
  1214. }
  1215. .ui.celled.table > tr > th:first-child,
  1216. .ui.celled.table > thead > tr > th:first-child,
  1217. .ui.celled.table > tbody > tr > th:first-child,
  1218. .ui.celled.table > tfoot > tr > th:first-child,
  1219. .ui.celled.table > tr > td:first-child,
  1220. .ui.celled.table > tbody > tr > td:first-child {
  1221. border-left: none;
  1222. }
  1223. /*--------------
  1224. Padded
  1225. ---------------*/
  1226. .ui.padded.table > tr > th,
  1227. .ui.padded.table > thead > tr > th,
  1228. .ui.padded.table > tbody > tr > th,
  1229. .ui.padded.table > tfoot > tr > th {
  1230. padding-left: 1em;
  1231. padding-right: 1em;
  1232. }
  1233. .ui.padded.table > tr > th,
  1234. .ui.padded.table > thead > tr > th,
  1235. .ui.padded.table > tbody > tr > th,
  1236. .ui.padded.table > tfoot > tr > th,
  1237. .ui.padded.table > tr > td,
  1238. .ui.padded.table > tbody > tr > td {
  1239. padding: 1em 1em;
  1240. }
  1241. /* Very */
  1242. .ui[class*="very padded"].table > tr > th,
  1243. .ui[class*="very padded"].table > thead > tr > th,
  1244. .ui[class*="very padded"].table > tbody > tr > th,
  1245. .ui[class*="very padded"].table > tfoot > tr > th {
  1246. padding-left: 1.5em;
  1247. padding-right: 1.5em;
  1248. }
  1249. .ui[class*="very padded"].table > tr > td,
  1250. .ui[class*="very padded"].table > tbody > tr > td {
  1251. padding: 1.5em 1.5em;
  1252. }
  1253. /*--------------
  1254. Compact
  1255. ---------------*/
  1256. .ui.compact.table > tr > th,
  1257. .ui.compact.table > thead > tr > th,
  1258. .ui.compact.table > tbody > tr > th,
  1259. .ui.compact.table > tfoot > tr > th {
  1260. padding-left: 0.7em;
  1261. padding-right: 0.7em;
  1262. }
  1263. .ui.compact.table > tr > td,
  1264. .ui.compact.table > tbody > tr > td {
  1265. padding: 0.5em 0.7em;
  1266. }
  1267. /* Very */
  1268. .ui[class*="very compact"].table > tr > th,
  1269. .ui[class*="very compact"].table > thead > tr > th,
  1270. .ui[class*="very compact"].table > tbody > tr > th,
  1271. .ui[class*="very compact"].table > tfoot > tr > th {
  1272. padding-left: 0.6em;
  1273. padding-right: 0.6em;
  1274. }
  1275. .ui[class*="very compact"].table > tr > td,
  1276. .ui[class*="very compact"].table > tbody > tr > td {
  1277. padding: 0.4em 0.6em;
  1278. }
  1279. /*--------------
  1280. Sizes
  1281. ---------------*/
  1282. /* Small */
  1283. .ui.small.table {
  1284. font-size: 0.9em;
  1285. }
  1286. /* Standard */
  1287. .ui.table {
  1288. font-size: 1em;
  1289. }
  1290. /* Large */
  1291. .ui.large.table {
  1292. font-size: 1.1em;
  1293. }
  1294. /*******************************
  1295. Site Overrides
  1296. *******************************/