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.

800 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
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
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
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
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
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
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 - Table
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributor
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Theme
  13. *******************************/
  14. @type : 'collection';
  15. @element : 'table';
  16. @import '../../semantic.config';
  17. /*******************************
  18. Table
  19. *******************************/
  20. /* Prototype */
  21. .ui.table {
  22. width: 100%;
  23. background: @background;
  24. margin: @margin;
  25. border: @border;
  26. box-shadow: @boxShadow;
  27. border-radius: @borderRadius;
  28. color: @color;
  29. border-collapse: @borderCollapse;
  30. border-spacing: @borderSpacing;
  31. }
  32. .ui.table:first-child {
  33. margin-top: 0em;
  34. }
  35. .ui.table:last-child {
  36. margin-bottom: 0em;
  37. }
  38. /*******************************
  39. Parts
  40. *******************************/
  41. /* Table Content */
  42. .ui.table th,
  43. .ui.table td {
  44. transition: @transition;
  45. }
  46. /* Headers */
  47. .ui.table thead {
  48. box-shadow: @headerBoxShadow;
  49. }
  50. .ui.table thead th {
  51. cursor: auto;
  52. background: @headerBackground;
  53. text-align: @headerAlign;
  54. color: @headerColor;
  55. padding: @headerVerticalPadding @headerHorizontalPadding;
  56. vertical-align: @headerVerticalAlign;
  57. font-style: @headerFontStyle;
  58. font-weight: @headerFontWeight;
  59. text-transform: @headerTextTransform;
  60. border-bottom: @headerBorder;
  61. border-left: @headerDivider;
  62. }
  63. .ui.table thead th:first-child {
  64. border-radius: @borderRadius 0em 0em 0em;
  65. border-left: none;
  66. }
  67. .ui.table thead th:last-child {
  68. border-radius: 0em @borderRadius 0em 0em;
  69. }
  70. .ui.table thead th:only-child {
  71. border-radius: @borderRadius @borderRadius 0em 0em;
  72. }
  73. /* Footer */
  74. .ui.table tfoot {
  75. box-shadow: @footerBoxShadow;
  76. }
  77. .ui.table tfoot th {
  78. cursor: auto;
  79. border-top: @footerBorder;
  80. background: @footerBackground;
  81. text-align: @footerAlign;
  82. color: @footerColor;
  83. padding: @footerVerticalPadding @footerHorizontalPadding;
  84. vertical-align: @footerVerticalAlign;
  85. font-style: @footerFontStyle;
  86. font-weight: @footerFontWeight;
  87. text-transform: @footerTextTransform;
  88. }
  89. .ui.table tfoot th:first-child {
  90. border-radius: 0em 0em 0em @borderRadius;
  91. }
  92. .ui.table tfoot th:last-child {
  93. border-radius: 0em 0em @borderRadius 0em;
  94. }
  95. .ui.table tfoot th:only-child {
  96. border-radius: 0em 0em @borderRadius @borderRadius;
  97. }
  98. /* Table Row */
  99. .ui.table tr td {
  100. border-top: @rowBorder;
  101. }
  102. .ui.table tr:first-child td {
  103. border-top: none;
  104. }
  105. /* Table Cells */
  106. .ui.table td {
  107. padding: @cellVerticalPadding @cellHorizontalPadding;
  108. vertical-align: @cellVerticalAlign;
  109. }
  110. /* Icons */
  111. .ui.table > .icon {
  112. vertical-align: @iconVerticalAlign;
  113. }
  114. .ui.table > .icon:only-child {
  115. margin: 0em;
  116. }
  117. /* Table Segment */
  118. .ui.table.segment {
  119. padding: 0em;
  120. }
  121. .ui.table.segment:after {
  122. display: none;
  123. }
  124. .ui.table.segment.stacked:after {
  125. display: block;
  126. }
  127. /* Responsive */
  128. @media only screen and (max-width : 768px) {
  129. .ui.table {
  130. display: block;
  131. padding: 0em;
  132. }
  133. .ui.table thead {
  134. display: @responsiveHeaderDisplay;
  135. }
  136. .ui.table tfoot {
  137. display: @responsiveFooterDisplay;
  138. }
  139. .ui.table tbody {
  140. display: block;
  141. }
  142. .ui.table tr {
  143. display: block;
  144. }
  145. .ui.table tr > th,
  146. .ui.table tr > td {
  147. background: none;
  148. width: 100% !important;
  149. display: block;
  150. border: none !important;
  151. padding: @responsiveCellVerticalPadding @responsiveCellHorizontalPadding;
  152. box-shadow: @responsiveCellBoxShadow;
  153. }
  154. .ui.table th:first-child,
  155. .ui.table td:first-child {
  156. font-weight: bold;
  157. padding-top: @responsiveRowVerticalPadding;
  158. }
  159. .ui.table th:last-child,
  160. .ui.table td:last-child {
  161. box-shadow: @responsiveRowBoxShadow;
  162. padding-bottom: @responsiveRowVerticalPadding;
  163. }
  164. /* Clear BG Colors */
  165. .ui.table tr > td.warning,
  166. .ui.table tr > td.error,
  167. .ui.table tr > td.active,
  168. .ui.table tr > td.positive,
  169. .ui.table tr > td.negative {
  170. background-color: @responsiveStatusColor !important;
  171. }
  172. }
  173. /*******************************
  174. Types
  175. *******************************/
  176. /*--------------
  177. Definition
  178. ---------------*/
  179. .ui.definition.table th:first-child {
  180. pointer-events: none;
  181. background: @definitionHeaderBackground;
  182. font-weight: @definitionHeaderFontWeight;
  183. color: @definitionHeaderColor;
  184. box-shadow: -1px -1px 0px @borderWidth @definitionPageBackground;
  185. }
  186. /* Remove Border */
  187. .ui.celled.definition.table th:first-child {
  188. box-shadow: 0px -1px 0px @borderWidth @definitionPageBackground;
  189. }
  190. /* Highlight Defining Column */
  191. .ui.definition.table tr td:first-child {
  192. background: @definitionColumnBackground;
  193. font-weight: @definitionColumnFontWeight;
  194. color: @definitionColumnColor;
  195. }
  196. /* Fix 2nd Column */
  197. .ui.definition.table thead th:nth-child(2) {
  198. border-left: @borderWidth solid @borderColor;
  199. }
  200. .ui.definition.table td:nth-child(2) {
  201. border-left: @borderWidth solid @borderColor;
  202. }
  203. /*******************************
  204. States
  205. *******************************/
  206. /*--------------
  207. Positive
  208. ---------------*/
  209. .ui.table tr.positive,
  210. .ui.table td.positive {
  211. box-shadow: @positiveBoxShadow;
  212. }
  213. .ui.table tr.positive td,
  214. .ui.table td.positive {
  215. background: @positiveBackgroundColor !important;
  216. color: @positiveColor !important;
  217. }
  218. .ui.celled.table tr.positive:hover td,
  219. .ui.celled.table tr:hover td.positive,
  220. .ui.table tr.positive:hover td,
  221. .ui.table td:hover.positive,
  222. .ui.table th:hover.positive {
  223. background: @positiveBackgroundHover !important;
  224. color: @positiveColorHover !important;
  225. }
  226. /*--------------
  227. Negative
  228. ---------------*/
  229. .ui.table tr.negative,
  230. .ui.table td.negative {
  231. box-shadow: @negativeBoxShadow;
  232. }
  233. .ui.table tr.negative td,
  234. .ui.table td.negative {
  235. background: @negativeBackgroundColor !important;
  236. color: @negativeColor !important;
  237. }
  238. .ui.celled.table tr.negative:hover td,
  239. .ui.celled.table tr:hover td.negative {
  240. background: @negativeBackgroundHover !important;
  241. color: @negativeColorHover !important;
  242. }
  243. /*--------------
  244. Error
  245. ---------------*/
  246. .ui.table tr.error,
  247. .ui.table td.error {
  248. box-shadow: @errorBoxShadow;
  249. }
  250. .ui.table tr.error td,
  251. .ui.table td.error {
  252. background: @errorBackgroundColor !important;
  253. color: @errorColor !important;
  254. }
  255. .ui.celled.table tr.error:hover td,
  256. .ui.celled.table tr:hover td.error {
  257. background: @errorBackgroundHover !important;
  258. color: @errorColorHover !important;
  259. }
  260. /*--------------
  261. Warning
  262. ---------------*/
  263. .ui.table tr.warning,
  264. .ui.table td.warning {
  265. box-shadow: @warningBoxShadow;
  266. }
  267. .ui.table tr.warning td,
  268. .ui.table td.warning {
  269. background: @warningBackgroundColor !important;
  270. color: @warningColor !important;
  271. }
  272. .ui.celled.table tr.warning:hover td,
  273. .ui.celled.table tr:hover td.warning {
  274. background: @warningBackgroundHover !important;
  275. color: @warningColorHover !important;
  276. }
  277. /*--------------
  278. Active
  279. ---------------*/
  280. .ui.table tr.active,
  281. .ui.table td.active {
  282. box-shadow: @activeBoxShadow;
  283. }
  284. .ui.table tr.active td,
  285. .ui.table td.active {
  286. background: @activeBackgroundColor !important;
  287. color: @activeColor !important;
  288. }
  289. .ui.celled.table tr.active:hover td,
  290. .ui.celled.table tr:hover td.active {
  291. background: @activeBackgroundColor !important;
  292. color: @activeColor !important;
  293. }
  294. /*--------------
  295. Disabled
  296. ---------------*/
  297. .ui.table tr.disabled td,
  298. .ui.table tr td.disabled,
  299. .ui.table tr.disabled:hover td,
  300. .ui.table tr:hover td.disabled {
  301. pointer-events: none;
  302. color: rgba(150, 150, 150, 0.3);
  303. }
  304. /*******************************
  305. Variations
  306. *******************************/
  307. /*--------------
  308. Striped
  309. ---------------*/
  310. /* Table Striping */
  311. .ui.striped.table > tr:nth-child(2n),
  312. .ui.striped.table tbody tr:nth-child(2n) {
  313. background-color: @stripedBackground;
  314. }
  315. /* Stripes */
  316. .ui.inverted.striped.table > tr:nth-child(2n),
  317. .ui.inverted.striped.table tbody tr:nth-child(2n) {
  318. background-color: @invertedStripedBackground;
  319. }
  320. /*-------------------
  321. Colors
  322. --------------------*/
  323. .ui.black.table {
  324. border-top: @coloredBorderSize solid @black;
  325. border-radius: @coloredBorderRadius;
  326. }
  327. .ui.blue.table {
  328. border-top: @coloredBorderSize solid @blue;
  329. border-radius: @coloredBorderRadius;
  330. }
  331. .ui.green.table {
  332. border-top: @coloredBorderSize solid @green;
  333. border-radius: @coloredBorderRadius;
  334. }
  335. .ui.orange.table {
  336. border-top: @coloredBorderSize solid @orange;
  337. border-radius: @coloredBorderRadius;
  338. }
  339. .ui.pink.table {
  340. border-top: @coloredBorderSize solid @pink;
  341. border-radius: @coloredBorderRadius;
  342. }
  343. .ui.purple.table {
  344. border-top: @coloredBorderSize solid @purple;
  345. border-radius: @coloredBorderRadius;
  346. }
  347. .ui.red.table {
  348. border-top: @coloredBorderSize solid @red;
  349. border-radius: @coloredBorderRadius;
  350. }
  351. .ui.teal.table {
  352. border-top: @coloredBorderSize solid @teal;
  353. border-radius: @coloredBorderRadius;
  354. }
  355. .ui.yellow.table {
  356. border-top: @coloredBorderSize solid @yellow;
  357. border-radius: @coloredBorderRadius;
  358. }
  359. /*-------------------
  360. Inverted Colors
  361. --------------------*/
  362. .ui.inverted.table,
  363. .ui.inverted.black.table {
  364. background-color: @black !important;
  365. border-radius: @borderRadius;
  366. color: @white !important;
  367. }
  368. .ui.inverted.blue.table {
  369. background-color: @blue !important;
  370. border-radius: @borderRadius;
  371. color: @white !important;
  372. }
  373. .ui.inverted.green.table {
  374. background-color: @green !important;
  375. border-radius: @borderRadius;
  376. color: @white !important;
  377. }
  378. .ui.inverted.orange.table {
  379. background-color: @orange !important;
  380. border-radius: @borderRadius;
  381. color: @white !important;
  382. }
  383. .ui.inverted.pink.table {
  384. background-color: @pink !important;
  385. border-radius: @borderRadius;
  386. color: @white !important;
  387. }
  388. .ui.inverted.purple.table {
  389. background-color: @purple !important;
  390. border-radius: @borderRadius;
  391. color: @white !important;
  392. }
  393. .ui.inverted.red.table {
  394. background-color: @red !important;
  395. border-radius: @borderRadius;
  396. color: @white !important;
  397. }
  398. .ui.inverted.teal.table {
  399. background-color: @teal !important;
  400. border-radius: @borderRadius;
  401. color: @white !important;
  402. }
  403. .ui.inverted.yellow.table {
  404. background-color: @yellow !important;
  405. border-radius: @borderRadius;
  406. color: @white !important;
  407. }
  408. /*--------------
  409. Column Count
  410. ---------------*/
  411. /* Grid Based */
  412. .ui.one.column.table td {
  413. width: @oneColumn;
  414. }
  415. .ui.two.column.table td {
  416. width: @twoColumn;
  417. }
  418. .ui.three.column.table td {
  419. width: @threeColumn;
  420. }
  421. .ui.four.column.table td {
  422. width: @fourColumn;
  423. }
  424. .ui.five.column.table td {
  425. width: @fiveColumn;
  426. }
  427. .ui.six.column.table td {
  428. width: @sixColumn;
  429. }
  430. .ui.seven.column.table td {
  431. width: @sevenColumn;
  432. }
  433. .ui.eight.column.table td {
  434. width: @eightColumn;
  435. }
  436. .ui.nine.column.table td {
  437. width: @nineColumn;
  438. }
  439. .ui.ten.column.table td {
  440. width: @tenColumn;
  441. }
  442. .ui.eleven.column.table td {
  443. width: @elevenColumn;
  444. }
  445. .ui.twelve.column.table td {
  446. width: @twelveColumn;
  447. }
  448. .ui.thirteen.column.table td {
  449. width: @thirteenColumn;
  450. }
  451. .ui.fourteen.column.table td {
  452. width: @fourteenColumn;
  453. }
  454. .ui.fifteen.column.table td {
  455. width: @fifteenColumn;
  456. }
  457. .ui.sixteen.column.table td {
  458. width: @sixteenColumn;
  459. }
  460. /* Column Width */
  461. .ui.table th.one.wide,
  462. .ui.table td.one.wide {
  463. width: @oneWide;
  464. }
  465. .ui.table th.two.wide,
  466. .ui.table td.two.wide {
  467. width: @twoWide;
  468. }
  469. .ui.table th.three.wide,
  470. .ui.table td.three.wide {
  471. width: @threeWide;
  472. }
  473. .ui.table th.four.wide,
  474. .ui.table td.four.wide {
  475. width: @fourWide;
  476. }
  477. .ui.table th.five.wide,
  478. .ui.table td.five.wide {
  479. width: @fiveWide;
  480. }
  481. .ui.table th.six.wide,
  482. .ui.table td.six.wide {
  483. width: @sixWide;
  484. }
  485. .ui.table th.seven.wide,
  486. .ui.table td.seven.wide {
  487. width: @sevenWide;
  488. }
  489. .ui.table th.eight.wide,
  490. .ui.table td.eight.wide {
  491. width: @eightWide;
  492. }
  493. .ui.table th.nine.wide,
  494. .ui.table td.nine.wide {
  495. width: @nineWide;
  496. }
  497. .ui.table th.ten.wide,
  498. .ui.table td.ten.wide {
  499. width: @tenWide;
  500. }
  501. .ui.table th.eleven.wide,
  502. .ui.table td.eleven.wide {
  503. width: @elevenWide;
  504. }
  505. .ui.table th.twelve.wide,
  506. .ui.table td.twelve.wide {
  507. width: @twelveWide;
  508. }
  509. .ui.table th.thirteen.wide,
  510. .ui.table td.thirteen.wide {
  511. width: @thirteenWide;
  512. }
  513. .ui.table th.fourteen.wide,
  514. .ui.table td.fourteen.wide {
  515. width: @fourteenWide;
  516. }
  517. .ui.table th.fifteen.wide,
  518. .ui.table td.fifteen.wide {
  519. width: @fifteenWide;
  520. }
  521. .ui.table th.sixteen.wide,
  522. .ui.table td.sixteen.wide {
  523. width: @sixteenWide;
  524. }
  525. /*--------------
  526. Sortable
  527. ---------------*/
  528. .ui.sortable.table thead th {
  529. cursor: pointer;
  530. white-space: nowrap;
  531. border-left: @sortableBorder;
  532. color: @sortableColor;
  533. }
  534. .ui.sortable.table thead th:first-child {
  535. border-left: none;
  536. }
  537. .ui.sortable.table thead th.sorted,
  538. .ui.sortable.table thead th.sorted:hover {
  539. user-select: none;
  540. }
  541. .ui.sortable.table thead th:after {
  542. display: inline-block;
  543. content: '';
  544. width: @sortableIconWidth;
  545. height: 1em;
  546. opacity: @sortableIconOpacity;
  547. margin: 0em 0em 0em @sortableIconDistance;
  548. font-family: @sortableIconFont;
  549. font-style: normal;
  550. font-weight: normal;
  551. text-decoration: inherit;
  552. }
  553. .ui.sortable.table thead th.ascending:after {
  554. content: @sortableIconAscending;
  555. }
  556. .ui.sortable.table thead th.descending:after {
  557. content: @sortableIconDescending;
  558. }
  559. /* Hover */
  560. .ui.sortable.table th.disabled:hover {
  561. cursor: auto;
  562. color: @sortableDisabledColor;
  563. }
  564. .ui.sortable.table thead th:hover {
  565. background: @sortableHoverBackground;
  566. color: @sortableHoverColor;
  567. }
  568. /* Sorted */
  569. .ui.sortable.table thead th.sorted {
  570. background: @sortableActiveBackground;
  571. color: @sortableActiveColor;
  572. }
  573. /* Sorted Hover */
  574. .ui.sortable.table thead th.sorted:hover {
  575. background: @sortableActiveHoverBackground;
  576. color: @sortableActiveHoverColor;
  577. }
  578. /* Inverted */
  579. .ui.inverted.sortable.table thead th.sorted {
  580. background: @sortableInvertedActiveBackground;
  581. color: @sortableInvertedActiveColor;
  582. }
  583. .ui.inverted.sortable.table thead th:hover {
  584. background: @sortableInvertedHoverBackground;
  585. color: @sortableInvertedHoverColor;
  586. }
  587. .ui.inverted.sortable.table thead th {
  588. border-left-color: @sortableInvertedBorderColor;
  589. }
  590. /*--------------
  591. Inverted
  592. ---------------*/
  593. /* Text Color */
  594. .ui.inverted.table {
  595. background: @invertedBackground;
  596. color: @invertedCellColor;
  597. border: @invertedBorder;
  598. }
  599. .ui.inverted.table th {
  600. background-color: @invertedHeaderBackground;
  601. border-color: @invertedCellBorderColor;
  602. color: @invertedHeaderColor;
  603. }
  604. .ui.inverted.table tr td {
  605. border-color: @invertedCellBorderColor;
  606. }
  607. /*--------------
  608. Collapsing
  609. ---------------*/
  610. .ui.collapsing.table {
  611. width: auto;
  612. }
  613. /*--------------
  614. Basic
  615. ---------------*/
  616. .ui.basic.table {
  617. background: @basicTableBackground;
  618. border: @basicTableBorder;
  619. box-shadow: @basicBoxShadow;
  620. }
  621. .ui.basic.table thead,
  622. .ui.basic.table tfoot {
  623. box-shadow: none;
  624. }
  625. .ui.basic.table th {
  626. background: @basicTableHeaderBackground;
  627. border-left: @basicTableHeaderDivider;
  628. }
  629. .ui.basic.table tbody tr {
  630. border-bottom: @basicTableCellBorder;
  631. }
  632. .ui.basic.table td {
  633. background: @basicTableCellBackground;
  634. }
  635. .ui.basic.striped.table tbody tr:nth-child(2n) {
  636. background-color: @basicTableStripedBackground !important;
  637. }
  638. /* Very Basic */
  639. .ui[class*="very basic"].table {
  640. border: none;
  641. }
  642. .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
  643. .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
  644. padding: @basicTableCellVerticalPadding @basicTableCellHorizontalPadding;
  645. }
  646. .ui[class*="very basic"].table:not(.sortable):not(.striped) thead th {
  647. padding-top: 0em;
  648. }
  649. .ui[class*="very basic"].table:not(.sortable):not(.striped) tbody tr:last-child td {
  650. padding-bottom: 0em;
  651. }
  652. /*--------------
  653. Celled
  654. ---------------*/
  655. .ui.celled.table th,
  656. .ui.celled.table td {
  657. border-left: @cellBorder;
  658. }
  659. .ui.celled.table th:first-child,
  660. .ui.celled.table td:first-child {
  661. border-left: none;
  662. }
  663. /*--------------
  664. Padded
  665. ---------------*/
  666. .ui.padded.table th {
  667. padding-left: @paddedHorizontalPadding;
  668. padding-right: @paddedHorizontalPadding;
  669. }
  670. .ui.padded.table th,
  671. .ui.padded.table td {
  672. padding: @paddedVerticalPadding @paddedHorizontalPadding;
  673. }
  674. /* Very */
  675. .ui[class*="very padded"].table th {
  676. padding-left: @veryPaddedHorizontalPadding;
  677. padding-right: @veryPaddedHorizontalPadding;
  678. }
  679. .ui[class*="very padded"].table td {
  680. padding: @veryPaddedVerticalPadding @veryPaddedHorizontalPadding;
  681. }
  682. /*--------------
  683. Compact
  684. ---------------*/
  685. .ui.compact.table th {
  686. padding-left: @compactHorizontalPadding;
  687. padding-right: @compactHorizontalPadding;
  688. }
  689. .ui.compact.table td {
  690. padding: @compactVerticalPadding @compactHorizontalPadding;
  691. }
  692. /* Very */
  693. .ui[class*="very compact"].table th {
  694. padding-left: @veryCompactHorizontalPadding;
  695. padding-right: @veryCompactHorizontalPadding;
  696. }
  697. .ui[class*="very compact"].table td {
  698. padding: @veryCompactVerticalPadding @veryCompactHorizontalPadding;
  699. }
  700. /*--------------
  701. Sizes
  702. ---------------*/
  703. /* Small */
  704. .ui.small.table {
  705. font-size: @small;
  706. }
  707. /* Standard */
  708. .ui.table {
  709. font-size: @medium;
  710. }
  711. /* Large */
  712. .ui.large.table {
  713. font-size: @large;
  714. }
  715. .loadUIOverrides();