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.

1110 lines
22 KiB

9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
6 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
7 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
  1. /*!
  2. * # Semantic UI 2.5.0 - Table
  3. * http://github.com/semantic-org/semantic-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 0em;
  18. border: 1px solid rgba(34, 36, 38, 0.15);
  19. box-shadow: none;
  20. border-radius: 0.28571429rem;
  21. text-align: left;
  22. color: rgba(0, 0, 0, 0.87);
  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. transition: background 0.1s ease, color 0.1s ease;
  39. }
  40. /* Headers */
  41. .ui.table thead {
  42. box-shadow: none;
  43. }
  44. .ui.table thead th {
  45. cursor: auto;
  46. background: #F9FAFB;
  47. text-align: inherit;
  48. color: rgba(0, 0, 0, 0.87);
  49. padding: 0.92857143em 0.78571429em;
  50. vertical-align: inherit;
  51. font-style: none;
  52. font-weight: bold;
  53. text-transform: none;
  54. border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  55. border-left: none;
  56. }
  57. .ui.table thead tr > th:first-child {
  58. border-left: none;
  59. }
  60. .ui.table thead tr:first-child > th:first-child {
  61. border-radius: 0.28571429rem 0em 0em 0em;
  62. }
  63. .ui.table thead tr:first-child > th:last-child {
  64. border-radius: 0em 0.28571429rem 0em 0em;
  65. }
  66. .ui.table thead tr:first-child > th:only-child {
  67. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  68. }
  69. /* Footer */
  70. .ui.table tfoot {
  71. box-shadow: none;
  72. }
  73. .ui.table tfoot th {
  74. cursor: auto;
  75. border-top: 1px solid rgba(34, 36, 38, 0.15);
  76. background: #F9FAFB;
  77. text-align: inherit;
  78. color: rgba(0, 0, 0, 0.87);
  79. padding: 0.78571429em 0.78571429em;
  80. vertical-align: middle;
  81. font-style: normal;
  82. font-weight: normal;
  83. text-transform: none;
  84. }
  85. .ui.table tfoot tr > th:first-child {
  86. border-left: none;
  87. }
  88. .ui.table tfoot tr:first-child > th:first-child {
  89. border-radius: 0em 0em 0em 0.28571429rem;
  90. }
  91. .ui.table tfoot tr:first-child > th:last-child {
  92. border-radius: 0em 0em 0.28571429rem 0em;
  93. }
  94. .ui.table tfoot tr:first-child > th:only-child {
  95. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  96. }
  97. /* Table Row */
  98. .ui.table tr td {
  99. border-top: 1px solid rgba(34, 36, 38, 0.1);
  100. }
  101. .ui.table tr:first-child td {
  102. border-top: none;
  103. }
  104. /* Repeated tbody */
  105. .ui.table tbody + tbody tr:first-child td {
  106. border-top: 1px solid rgba(34, 36, 38, 0.1);
  107. }
  108. /* Table Cells */
  109. .ui.table td {
  110. padding: 0.78571429em 0.78571429em;
  111. text-align: inherit;
  112. }
  113. /* Icons */
  114. .ui.table > .icon {
  115. vertical-align: baseline;
  116. }
  117. .ui.table > .icon:only-child {
  118. margin: 0em;
  119. }
  120. /* Table Segment */
  121. .ui.table.segment {
  122. padding: 0em;
  123. }
  124. .ui.table.segment:after {
  125. display: none;
  126. }
  127. .ui.table.segment.stacked:after {
  128. display: block;
  129. }
  130. /* Responsive */
  131. @media only screen and (max-width: 767px) {
  132. .ui.table:not(.unstackable) {
  133. width: 100%;
  134. }
  135. .ui.table:not(.unstackable) tbody,
  136. .ui.table:not(.unstackable) tr,
  137. .ui.table:not(.unstackable) tr > th,
  138. .ui.table:not(.unstackable) tr > td {
  139. width: auto !important;
  140. display: block !important;
  141. }
  142. .ui.table:not(.unstackable) {
  143. padding: 0em;
  144. }
  145. .ui.table:not(.unstackable) thead {
  146. display: block;
  147. }
  148. .ui.table:not(.unstackable) tfoot {
  149. display: block;
  150. }
  151. .ui.table:not(.unstackable) tr {
  152. padding-top: 1em;
  153. padding-bottom: 1em;
  154. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
  155. }
  156. .ui.table:not(.unstackable) tr > th,
  157. .ui.table:not(.unstackable) tr > td {
  158. background: none;
  159. border: none !important;
  160. padding: 0.25em 0.75em !important;
  161. box-shadow: none !important;
  162. }
  163. .ui.table:not(.unstackable) th:first-child,
  164. .ui.table:not(.unstackable) td:first-child {
  165. font-weight: bold;
  166. }
  167. /* Definition Table */
  168. .ui.definition.table:not(.unstackable) thead th:first-child {
  169. box-shadow: none !important;
  170. }
  171. }
  172. /*******************************
  173. Coupling
  174. *******************************/
  175. /* UI Image */
  176. .ui.table th .image,
  177. .ui.table th .image img,
  178. .ui.table td .image,
  179. .ui.table td .image img {
  180. max-width: none;
  181. }
  182. /*******************************
  183. Types
  184. *******************************/
  185. /*--------------
  186. Complex
  187. ---------------*/
  188. .ui.structured.table {
  189. border-collapse: collapse;
  190. }
  191. .ui.structured.table thead th {
  192. border-left: none;
  193. border-right: none;
  194. }
  195. .ui.structured.sortable.table thead th {
  196. border-left: 1px solid rgba(34, 36, 38, 0.15);
  197. border-right: 1px solid rgba(34, 36, 38, 0.15);
  198. }
  199. .ui.structured.basic.table th {
  200. border-left: none;
  201. border-right: none;
  202. }
  203. .ui.structured.celled.table tr th,
  204. .ui.structured.celled.table tr td {
  205. border-left: 1px solid rgba(34, 36, 38, 0.1);
  206. border-right: 1px solid rgba(34, 36, 38, 0.1);
  207. }
  208. /*--------------
  209. Definition
  210. ---------------*/
  211. .ui.definition.table thead:not(.full-width) th:first-child {
  212. pointer-events: none;
  213. background: transparent;
  214. font-weight: normal;
  215. color: rgba(0, 0, 0, 0.4);
  216. box-shadow: -1px -1px 0px 1px #FFFFFF;
  217. }
  218. .ui.definition.table tfoot:not(.full-width) th:first-child {
  219. pointer-events: none;
  220. background: transparent;
  221. font-weight: rgba(0, 0, 0, 0.4);
  222. color: normal;
  223. box-shadow: 1px 1px 0px 1px #FFFFFF;
  224. }
  225. /* Remove Border */
  226. .ui.celled.definition.table thead:not(.full-width) th:first-child {
  227. box-shadow: 0px -1px 0px 1px #FFFFFF;
  228. }
  229. .ui.celled.definition.table tfoot:not(.full-width) th:first-child {
  230. box-shadow: 0px 1px 0px 1px #FFFFFF;
  231. }
  232. /* Highlight Defining Column */
  233. .ui.definition.table tr td:first-child:not(.ignored),
  234. .ui.definition.table tr td.definition {
  235. background: rgba(0, 0, 0, 0.03);
  236. font-weight: bold;
  237. color: rgba(0, 0, 0, 0.95);
  238. text-transform: '';
  239. box-shadow: '';
  240. text-align: '';
  241. font-size: 1em;
  242. padding-left: '';
  243. padding-right: '';
  244. }
  245. /* Fix 2nd Column */
  246. .ui.definition.table thead:not(.full-width) th:nth-child(2) {
  247. border-left: 1px solid rgba(34, 36, 38, 0.15);
  248. }
  249. .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
  250. border-left: 1px solid rgba(34, 36, 38, 0.15);
  251. }
  252. .ui.definition.table td:nth-child(2) {
  253. border-left: 1px solid rgba(34, 36, 38, 0.15);
  254. }
  255. /*******************************
  256. States
  257. *******************************/
  258. /*--------------
  259. Positive
  260. ---------------*/
  261. .ui.table tr.positive,
  262. .ui.table td.positive {
  263. box-shadow: 0px 0px 0px #A3C293 inset;
  264. }
  265. .ui.table tr.positive,
  266. .ui.table td.positive {
  267. background: #FCFFF5 !important;
  268. color: #2C662D !important;
  269. }
  270. /*--------------
  271. Negative
  272. ---------------*/
  273. .ui.table tr.negative,
  274. .ui.table td.negative {
  275. box-shadow: 0px 0px 0px #E0B4B4 inset;
  276. }
  277. .ui.table tr.negative,
  278. .ui.table td.negative {
  279. background: #FFF6F6 !important;
  280. color: #9F3A38 !important;
  281. }
  282. /*--------------
  283. Error
  284. ---------------*/
  285. .ui.table tr.error,
  286. .ui.table td.error {
  287. box-shadow: 0px 0px 0px #E0B4B4 inset;
  288. }
  289. .ui.table tr.error,
  290. .ui.table td.error {
  291. background: #FFF6F6 !important;
  292. color: #9F3A38 !important;
  293. }
  294. /*--------------
  295. Warning
  296. ---------------*/
  297. .ui.table tr.warning,
  298. .ui.table td.warning {
  299. box-shadow: 0px 0px 0px #C9BA9B inset;
  300. }
  301. .ui.table tr.warning,
  302. .ui.table td.warning {
  303. background: #FFFAF3 !important;
  304. color: #573A08 !important;
  305. }
  306. /*--------------
  307. Active
  308. ---------------*/
  309. .ui.table tr.active,
  310. .ui.table td.active {
  311. box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;
  312. }
  313. .ui.table tr.active,
  314. .ui.table td.active {
  315. background: #E0E0E0 !important;
  316. color: rgba(0, 0, 0, 0.87) !important;
  317. }
  318. /*--------------
  319. Disabled
  320. ---------------*/
  321. .ui.table tr.disabled td,
  322. .ui.table tr td.disabled,
  323. .ui.table tr.disabled:hover,
  324. .ui.table tr:hover td.disabled {
  325. pointer-events: none;
  326. color: rgba(40, 40, 40, 0.3);
  327. }
  328. /*******************************
  329. Variations
  330. *******************************/
  331. /*--------------
  332. Stackable
  333. ---------------*/
  334. @media only screen and (max-width: 991px) {
  335. .ui[class*="tablet stackable"].table,
  336. .ui[class*="tablet stackable"].table tbody,
  337. .ui[class*="tablet stackable"].table tr,
  338. .ui[class*="tablet stackable"].table tr > th,
  339. .ui[class*="tablet stackable"].table tr > td {
  340. width: 100% !important;
  341. display: block !important;
  342. }
  343. .ui[class*="tablet stackable"].table {
  344. padding: 0em;
  345. }
  346. .ui[class*="tablet stackable"].table thead {
  347. display: block;
  348. }
  349. .ui[class*="tablet stackable"].table tfoot {
  350. display: block;
  351. }
  352. .ui[class*="tablet stackable"].table tr {
  353. padding-top: 1em;
  354. padding-bottom: 1em;
  355. box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
  356. }
  357. .ui[class*="tablet stackable"].table tr > th,
  358. .ui[class*="tablet stackable"].table tr > td {
  359. background: none;
  360. border: none !important;
  361. padding: 0.25em 0.75em;
  362. box-shadow: none !important;
  363. }
  364. /* Definition Table */
  365. .ui.definition[class*="tablet stackable"].table thead th:first-child {
  366. box-shadow: none !important;
  367. }
  368. }
  369. /*--------------
  370. Text Alignment
  371. ---------------*/
  372. .ui.table[class*="left aligned"],
  373. .ui.table [class*="left aligned"] {
  374. text-align: left;
  375. }
  376. .ui.table[class*="center aligned"],
  377. .ui.table [class*="center aligned"] {
  378. text-align: center;
  379. }
  380. .ui.table[class*="right aligned"],
  381. .ui.table [class*="right aligned"] {
  382. text-align: right;
  383. }
  384. /*------------------
  385. Vertical Alignment
  386. ------------------*/
  387. .ui.table[class*="top aligned"],
  388. .ui.table [class*="top aligned"] {
  389. vertical-align: top;
  390. }
  391. .ui.table[class*="middle aligned"],
  392. .ui.table [class*="middle aligned"] {
  393. vertical-align: middle;
  394. }
  395. .ui.table[class*="bottom aligned"],
  396. .ui.table [class*="bottom aligned"] {
  397. vertical-align: bottom;
  398. }
  399. /*--------------
  400. Collapsing
  401. ---------------*/
  402. .ui.table th.collapsing,
  403. .ui.table td.collapsing {
  404. width: 1px;
  405. white-space: nowrap;
  406. }
  407. /*--------------
  408. Fixed
  409. ---------------*/
  410. .ui.fixed.table {
  411. table-layout: fixed;
  412. }
  413. .ui.fixed.table th,
  414. .ui.fixed.table td {
  415. overflow: hidden;
  416. text-overflow: ellipsis;
  417. }
  418. /*--------------
  419. Selectable
  420. ---------------*/
  421. .ui.selectable.table tbody tr:hover,
  422. .ui.table tbody tr td.selectable:hover {
  423. background: rgba(0, 0, 0, 0.05) !important;
  424. color: rgba(0, 0, 0, 0.95) !important;
  425. }
  426. .ui.selectable.inverted.table tbody tr:hover,
  427. .ui.inverted.table tbody tr td.selectable:hover {
  428. background: rgba(255, 255, 255, 0.08) !important;
  429. color: #ffffff !important;
  430. }
  431. /* Selectable Cell Link */
  432. .ui.table tbody tr td.selectable {
  433. padding: 0em;
  434. }
  435. .ui.table tbody tr td.selectable > a:not(.ui) {
  436. display: block;
  437. color: inherit;
  438. padding: 0.78571429em 0.78571429em;
  439. }
  440. /* Other States */
  441. .ui.selectable.table tr.error:hover,
  442. .ui.table tr td.selectable.error:hover,
  443. .ui.selectable.table tr:hover td.error {
  444. background: #ffe7e7 !important;
  445. color: #943634 !important;
  446. }
  447. .ui.selectable.table tr.warning:hover,
  448. .ui.table tr td.selectable.warning:hover,
  449. .ui.selectable.table tr:hover td.warning {
  450. background: #fff4e4 !important;
  451. color: #493107 !important;
  452. }
  453. .ui.selectable.table tr.active:hover,
  454. .ui.table tr td.selectable.active:hover,
  455. .ui.selectable.table tr:hover td.active {
  456. background: #E0E0E0 !important;
  457. color: rgba(0, 0, 0, 0.87) !important;
  458. }
  459. .ui.selectable.table tr.positive:hover,
  460. .ui.table tr td.selectable.positive:hover,
  461. .ui.selectable.table tr:hover td.positive {
  462. background: #f7ffe6 !important;
  463. color: #275b28 !important;
  464. }
  465. .ui.selectable.table tr.negative:hover,
  466. .ui.table tr td.selectable.negative:hover,
  467. .ui.selectable.table tr:hover td.negative {
  468. background: #ffe7e7 !important;
  469. color: #943634 !important;
  470. }
  471. /*-------------------
  472. Attached
  473. --------------------*/
  474. /* Middle */
  475. .ui.attached.table {
  476. top: 0px;
  477. bottom: 0px;
  478. border-radius: 0px;
  479. margin: 0em -1px;
  480. width: calc(100% - (-1px * 2));
  481. max-width: calc(100% - (-1px * 2));
  482. box-shadow: none;
  483. border: 1px solid #D4D4D5;
  484. }
  485. .ui.attached + .ui.attached.table:not(.top) {
  486. border-top: none;
  487. }
  488. /* Top */
  489. .ui[class*="top attached"].table {
  490. bottom: 0px;
  491. margin-bottom: 0em;
  492. top: 0px;
  493. margin-top: 1em;
  494. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  495. }
  496. .ui.table[class*="top attached"]:first-child {
  497. margin-top: 0em;
  498. }
  499. /* Bottom */
  500. .ui[class*="bottom attached"].table {
  501. bottom: 0px;
  502. margin-top: 0em;
  503. top: 0px;
  504. margin-bottom: 1em;
  505. box-shadow: none, none;
  506. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  507. }
  508. .ui[class*="bottom attached"].table:last-child {
  509. margin-bottom: 0em;
  510. }
  511. /*--------------
  512. Striped
  513. ---------------*/
  514. /* Table Striping */
  515. .ui.striped.table > tr:nth-child(2n),
  516. .ui.striped.table tbody tr:nth-child(2n) {
  517. background-color: rgba(0, 0, 50, 0.02);
  518. }
  519. /* Stripes */
  520. .ui.inverted.striped.table > tr:nth-child(2n),
  521. .ui.inverted.striped.table tbody tr:nth-child(2n) {
  522. background-color: rgba(255, 255, 255, 0.05);
  523. }
  524. /* Allow striped active hover */
  525. .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
  526. background: #EFEFEF !important;
  527. color: rgba(0, 0, 0, 0.95) !important;
  528. }
  529. /*--------------
  530. Single Line
  531. ---------------*/
  532. .ui.table[class*="single line"],
  533. .ui.table [class*="single line"] {
  534. white-space: nowrap;
  535. }
  536. .ui.table[class*="single line"],
  537. .ui.table [class*="single line"] {
  538. white-space: nowrap;
  539. }
  540. /*-------------------
  541. Colors
  542. --------------------*/
  543. /* Red */
  544. .ui.red.table {
  545. border-top: 0.2em solid #DB2828;
  546. }
  547. .ui.inverted.red.table {
  548. background-color: #DB2828 !important;
  549. color: #FFFFFF !important;
  550. }
  551. /* Orange */
  552. .ui.orange.table {
  553. border-top: 0.2em solid #F2711C;
  554. }
  555. .ui.inverted.orange.table {
  556. background-color: #F2711C !important;
  557. color: #FFFFFF !important;
  558. }
  559. /* Yellow */
  560. .ui.yellow.table {
  561. border-top: 0.2em solid #FBBD08;
  562. }
  563. .ui.inverted.yellow.table {
  564. background-color: #FBBD08 !important;
  565. color: #FFFFFF !important;
  566. }
  567. /* Olive */
  568. .ui.olive.table {
  569. border-top: 0.2em solid #B5CC18;
  570. }
  571. .ui.inverted.olive.table {
  572. background-color: #B5CC18 !important;
  573. color: #FFFFFF !important;
  574. }
  575. /* Green */
  576. .ui.green.table {
  577. border-top: 0.2em solid #21BA45;
  578. }
  579. .ui.inverted.green.table {
  580. background-color: #21BA45 !important;
  581. color: #FFFFFF !important;
  582. }
  583. /* Teal */
  584. .ui.teal.table {
  585. border-top: 0.2em solid #00B5AD;
  586. }
  587. .ui.inverted.teal.table {
  588. background-color: #00B5AD !important;
  589. color: #FFFFFF !important;
  590. }
  591. /* Blue */
  592. .ui.blue.table {
  593. border-top: 0.2em solid #2185D0;
  594. }
  595. .ui.inverted.blue.table {
  596. background-color: #2185D0 !important;
  597. color: #FFFFFF !important;
  598. }
  599. /* Violet */
  600. .ui.violet.table {
  601. border-top: 0.2em solid #6435C9;
  602. }
  603. .ui.inverted.violet.table {
  604. background-color: #6435C9 !important;
  605. color: #FFFFFF !important;
  606. }
  607. /* Purple */
  608. .ui.purple.table {
  609. border-top: 0.2em solid #A333C8;
  610. }
  611. .ui.inverted.purple.table {
  612. background-color: #A333C8 !important;
  613. color: #FFFFFF !important;
  614. }
  615. /* Pink */
  616. .ui.pink.table {
  617. border-top: 0.2em solid #E03997;
  618. }
  619. .ui.inverted.pink.table {
  620. background-color: #E03997 !important;
  621. color: #FFFFFF !important;
  622. }
  623. /* Brown */
  624. .ui.brown.table {
  625. border-top: 0.2em solid #A5673F;
  626. }
  627. .ui.inverted.brown.table {
  628. background-color: #A5673F !important;
  629. color: #FFFFFF !important;
  630. }
  631. /* Grey */
  632. .ui.grey.table {
  633. border-top: 0.2em solid #767676;
  634. }
  635. .ui.inverted.grey.table {
  636. background-color: #767676 !important;
  637. color: #FFFFFF !important;
  638. }
  639. /* Black */
  640. .ui.black.table {
  641. border-top: 0.2em solid #1B1C1D;
  642. }
  643. .ui.inverted.black.table {
  644. background-color: #1B1C1D !important;
  645. color: #FFFFFF !important;
  646. }
  647. /*--------------
  648. Column Count
  649. ---------------*/
  650. /* Grid Based */
  651. .ui.one.column.table td {
  652. width: 100%;
  653. }
  654. .ui.two.column.table td {
  655. width: 50%;
  656. }
  657. .ui.three.column.table td {
  658. width: 33.33333333%;
  659. }
  660. .ui.four.column.table td {
  661. width: 25%;
  662. }
  663. .ui.five.column.table td {
  664. width: 20%;
  665. }
  666. .ui.six.column.table td {
  667. width: 16.66666667%;
  668. }
  669. .ui.seven.column.table td {
  670. width: 14.28571429%;
  671. }
  672. .ui.eight.column.table td {
  673. width: 12.5%;
  674. }
  675. .ui.nine.column.table td {
  676. width: 11.11111111%;
  677. }
  678. .ui.ten.column.table td {
  679. width: 10%;
  680. }
  681. .ui.eleven.column.table td {
  682. width: 9.09090909%;
  683. }
  684. .ui.twelve.column.table td {
  685. width: 8.33333333%;
  686. }
  687. .ui.thirteen.column.table td {
  688. width: 7.69230769%;
  689. }
  690. .ui.fourteen.column.table td {
  691. width: 7.14285714%;
  692. }
  693. .ui.fifteen.column.table td {
  694. width: 6.66666667%;
  695. }
  696. .ui.sixteen.column.table td {
  697. width: 6.25%;
  698. }
  699. /* Column Width */
  700. .ui.table th.one.wide,
  701. .ui.table td.one.wide {
  702. width: 6.25%;
  703. }
  704. .ui.table th.two.wide,
  705. .ui.table td.two.wide {
  706. width: 12.5%;
  707. }
  708. .ui.table th.three.wide,
  709. .ui.table td.three.wide {
  710. width: 18.75%;
  711. }
  712. .ui.table th.four.wide,
  713. .ui.table td.four.wide {
  714. width: 25%;
  715. }
  716. .ui.table th.five.wide,
  717. .ui.table td.five.wide {
  718. width: 31.25%;
  719. }
  720. .ui.table th.six.wide,
  721. .ui.table td.six.wide {
  722. width: 37.5%;
  723. }
  724. .ui.table th.seven.wide,
  725. .ui.table td.seven.wide {
  726. width: 43.75%;
  727. }
  728. .ui.table th.eight.wide,
  729. .ui.table td.eight.wide {
  730. width: 50%;
  731. }
  732. .ui.table th.nine.wide,
  733. .ui.table td.nine.wide {
  734. width: 56.25%;
  735. }
  736. .ui.table th.ten.wide,
  737. .ui.table td.ten.wide {
  738. width: 62.5%;
  739. }
  740. .ui.table th.eleven.wide,
  741. .ui.table td.eleven.wide {
  742. width: 68.75%;
  743. }
  744. .ui.table th.twelve.wide,
  745. .ui.table td.twelve.wide {
  746. width: 75%;
  747. }
  748. .ui.table th.thirteen.wide,
  749. .ui.table td.thirteen.wide {
  750. width: 81.25%;
  751. }
  752. .ui.table th.fourteen.wide,
  753. .ui.table td.fourteen.wide {
  754. width: 87.5%;
  755. }
  756. .ui.table th.fifteen.wide,
  757. .ui.table td.fifteen.wide {
  758. width: 93.75%;
  759. }
  760. .ui.table th.sixteen.wide,
  761. .ui.table td.sixteen.wide {
  762. width: 100%;
  763. }
  764. /*--------------
  765. Sortable
  766. ---------------*/
  767. .ui.sortable.table thead th {
  768. cursor: pointer;
  769. white-space: nowrap;
  770. border-left: 1px solid rgba(34, 36, 38, 0.15);
  771. color: rgba(0, 0, 0, 0.87);
  772. }
  773. .ui.sortable.table thead th:first-child {
  774. border-left: none;
  775. }
  776. .ui.sortable.table thead th.sorted,
  777. .ui.sortable.table thead th.sorted:hover {
  778. -webkit-user-select: none;
  779. -moz-user-select: none;
  780. -ms-user-select: none;
  781. user-select: none;
  782. }
  783. .ui.sortable.table thead th:after {
  784. display: none;
  785. font-style: normal;
  786. font-weight: normal;
  787. text-decoration: inherit;
  788. content: '';
  789. height: 1em;
  790. width: auto;
  791. opacity: 0.8;
  792. margin: 0em 0em 0em 0.5em;
  793. font-family: 'Icons';
  794. }
  795. .ui.sortable.table thead th.ascending:after {
  796. content: '\f0d8';
  797. }
  798. .ui.sortable.table thead th.descending:after {
  799. content: '\f0d7';
  800. }
  801. /* Hover */
  802. .ui.sortable.table th.disabled:hover {
  803. cursor: auto;
  804. color: rgba(40, 40, 40, 0.3);
  805. }
  806. .ui.sortable.table thead th:hover {
  807. background: rgba(0, 0, 0, 0.05);
  808. color: rgba(0, 0, 0, 0.8);
  809. }
  810. /* Sorted */
  811. .ui.sortable.table thead th.sorted {
  812. background: rgba(0, 0, 0, 0.05);
  813. color: rgba(0, 0, 0, 0.95);
  814. }
  815. .ui.sortable.table thead th.sorted:after {
  816. display: inline-block;
  817. }
  818. /* Sorted Hover */
  819. .ui.sortable.table thead th.sorted:hover {
  820. background: rgba(0, 0, 0, 0.05);
  821. color: rgba(0, 0, 0, 0.95);
  822. }
  823. /* Inverted */
  824. .ui.inverted.sortable.table thead th.sorted {
  825. background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  826. color: #ffffff;
  827. }
  828. .ui.inverted.sortable.table thead th:hover {
  829. background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  830. color: #ffffff;
  831. }
  832. .ui.inverted.sortable.table thead th {
  833. border-left-color: transparent;
  834. border-right-color: transparent;
  835. }
  836. /*--------------
  837. Inverted
  838. ---------------*/
  839. /* Text Color */
  840. .ui.inverted.table {
  841. background: #333333;
  842. color: rgba(255, 255, 255, 0.9);
  843. border: none;
  844. }
  845. .ui.inverted.table th {
  846. background-color: rgba(0, 0, 0, 0.15);
  847. border-color: rgba(255, 255, 255, 0.1) !important;
  848. color: rgba(255, 255, 255, 0.9) !important;
  849. }
  850. .ui.inverted.table tr td {
  851. border-color: rgba(255, 255, 255, 0.1) !important;
  852. }
  853. .ui.inverted.table tr.disabled td,
  854. .ui.inverted.table tr td.disabled,
  855. .ui.inverted.table tr.disabled:hover td,
  856. .ui.inverted.table tr:hover td.disabled {
  857. pointer-events: none;
  858. color: rgba(225, 225, 225, 0.3);
  859. }
  860. /* Definition */
  861. .ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
  862. .ui.inverted.definition.table thead:not(.full-width) th:first-child {
  863. background: #FFFFFF;
  864. }
  865. .ui.inverted.definition.table tr td:first-child {
  866. background: rgba(255, 255, 255, 0.02);
  867. color: #ffffff;
  868. }
  869. /*--------------
  870. Collapsing
  871. ---------------*/
  872. .ui.collapsing.table {
  873. width: auto;
  874. }
  875. /*--------------
  876. Basic
  877. ---------------*/
  878. .ui.basic.table {
  879. background: transparent;
  880. border: 1px solid rgba(34, 36, 38, 0.15);
  881. box-shadow: none;
  882. }
  883. .ui.basic.table thead,
  884. .ui.basic.table tfoot {
  885. box-shadow: none;
  886. }
  887. .ui.basic.table th {
  888. background: transparent;
  889. border-left: none;
  890. }
  891. .ui.basic.table tbody tr {
  892. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  893. }
  894. .ui.basic.table td {
  895. background: transparent;
  896. }
  897. .ui.basic.striped.table tbody tr:nth-child(2n) {
  898. background-color: rgba(0, 0, 0, 0.05) !important;
  899. }
  900. /* Very Basic */
  901. .ui[class*="very basic"].table {
  902. border: none;
  903. }
  904. .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
  905. .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
  906. padding: '';
  907. }
  908. .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,
  909. .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child {
  910. padding-left: 0em;
  911. }
  912. .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,
  913. .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child {
  914. padding-right: 0em;
  915. }
  916. .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
  917. padding-top: 0em;
  918. }
  919. /*--------------
  920. Celled
  921. ---------------*/
  922. .ui.celled.table tr th,
  923. .ui.celled.table tr td {
  924. border-left: 1px solid rgba(34, 36, 38, 0.1);
  925. }
  926. .ui.celled.table tr th:first-child,
  927. .ui.celled.table tr td:first-child {
  928. border-left: none;
  929. }
  930. /*--------------
  931. Padded
  932. ---------------*/
  933. .ui.padded.table th {
  934. padding-left: 1em;
  935. padding-right: 1em;
  936. }
  937. .ui.padded.table th,
  938. .ui.padded.table td {
  939. padding: 1em 1em;
  940. }
  941. /* Very */
  942. .ui[class*="very padded"].table th {
  943. padding-left: 1.5em;
  944. padding-right: 1.5em;
  945. }
  946. .ui[class*="very padded"].table td {
  947. padding: 1.5em 1.5em;
  948. }
  949. /*--------------
  950. Compact
  951. ---------------*/
  952. .ui.compact.table th {
  953. padding-left: 0.7em;
  954. padding-right: 0.7em;
  955. }
  956. .ui.compact.table td {
  957. padding: 0.5em 0.7em;
  958. }
  959. /* Very */
  960. .ui[class*="very compact"].table th {
  961. padding-left: 0.6em;
  962. padding-right: 0.6em;
  963. }
  964. .ui[class*="very compact"].table td {
  965. padding: 0.4em 0.6em;
  966. }
  967. /*--------------
  968. Sizes
  969. ---------------*/
  970. /* Small */
  971. .ui.small.table {
  972. font-size: 0.9em;
  973. }
  974. /* Standard */
  975. .ui.table {
  976. font-size: 1em;
  977. }
  978. /* Large */
  979. .ui.large.table {
  980. font-size: 1.1em;
  981. }
  982. /*******************************
  983. Site Overrides
  984. *******************************/