|
|
@ -77,6 +77,9 @@ |
|
|
|
.ui.table thead th:last-child { |
|
|
|
border-radius: 0em @borderRadius 0em 0em; |
|
|
|
} |
|
|
|
.ui.table thead th:only-child { |
|
|
|
border-radius: @borderRadius @borderRadius 0em 0em; |
|
|
|
} |
|
|
|
|
|
|
|
/* Footer */ |
|
|
|
.ui.table tfoot { |
|
|
@ -100,6 +103,9 @@ |
|
|
|
.ui.table tfoot th:last-child { |
|
|
|
border-radius: 0em 0em @borderRadius 0em; |
|
|
|
} |
|
|
|
.ui.table tfoot th:only-child { |
|
|
|
border-radius: 0em 0em @borderRadius @borderRadius; |
|
|
|
} |
|
|
|
|
|
|
|
/* Table Row */ |
|
|
|
.ui.table tr td { |
|
|
@ -185,6 +191,42 @@ |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/******************************* |
|
|
|
Types |
|
|
|
*******************************/ |
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Definition |
|
|
|
---------------*/ |
|
|
|
|
|
|
|
.ui.definition.table th:first-child { |
|
|
|
pointer-events: none; |
|
|
|
background: @definitionHeaderBackground; |
|
|
|
font-weight: @definitionHeaderFontWeight; |
|
|
|
color: @definitionHeaderColor; |
|
|
|
box-shadow: -1px -1px 0px @borderWidth @definitionPageBackground; |
|
|
|
} |
|
|
|
|
|
|
|
/* Remove Border */ |
|
|
|
.ui.celled.definition.table th:first-child { |
|
|
|
box-shadow: 0px -1px 0px @borderWidth @definitionPageBackground; |
|
|
|
} |
|
|
|
|
|
|
|
/* Highlight Defining Column */ |
|
|
|
.ui.definition.table tr td:first-child { |
|
|
|
background: @definitionColumnBackground; |
|
|
|
font-weight: @definitionColumnFontWeight; |
|
|
|
color: @definitionColumnColor; |
|
|
|
} |
|
|
|
|
|
|
|
/* Fix 2nd Column */ |
|
|
|
.ui.definition.table thead th:nth-child(2) { |
|
|
|
border-left: @borderWidth solid @borderColor; |
|
|
|
} |
|
|
|
.ui.definition.table td:nth-child(2) { |
|
|
|
border-left: @borderWidth solid @borderColor; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/******************************* |
|
|
|
States |
|
|
@ -297,6 +339,7 @@ |
|
|
|
.ui.table tr td.disabled, |
|
|
|
.ui.table tr.disabled:hover td, |
|
|
|
.ui.table tr:hover td.disabled { |
|
|
|
pointer-events: none; |
|
|
|
color: rgba(150, 150, 150, 0.3); |
|
|
|
} |
|
|
|
|
|
|
@ -534,19 +577,6 @@ |
|
|
|
width: @sixteenWide; |
|
|
|
} |
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Celled |
|
|
|
---------------*/ |
|
|
|
|
|
|
|
.ui.celled.table th, |
|
|
|
.ui.celled.table td { |
|
|
|
border-left: @cellBorder; |
|
|
|
} |
|
|
|
.ui.celled.table th:first-child, |
|
|
|
.ui.celled.table td:first-child { |
|
|
|
border-left: none; |
|
|
|
} |
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Sortable |
|
|
|
---------------*/ |
|
|
@ -555,6 +585,7 @@ |
|
|
|
cursor: pointer; |
|
|
|
white-space: nowrap; |
|
|
|
border-left: @sortableBorder; |
|
|
|
color: @sortableColor; |
|
|
|
} |
|
|
|
.ui.sortable.table thead th:first-child { |
|
|
|
border-left: none; |
|
|
@ -585,12 +616,6 @@ |
|
|
|
content: @sortableIconDescending; |
|
|
|
} |
|
|
|
|
|
|
|
/* Sorted */ |
|
|
|
.ui.sortable.table thead th.sorted { |
|
|
|
background: @sortableActiveBackground; |
|
|
|
color: @sortableActiveColor; |
|
|
|
} |
|
|
|
|
|
|
|
/* Hover */ |
|
|
|
.ui.sortable.table th.disabled:hover { |
|
|
|
cursor: auto; |
|
|
@ -601,6 +626,18 @@ |
|
|
|
color: @sortableHoverColor; |
|
|
|
} |
|
|
|
|
|
|
|
/* Sorted */ |
|
|
|
.ui.sortable.table thead th.sorted { |
|
|
|
background: @sortableActiveBackground; |
|
|
|
color: @sortableActiveColor; |
|
|
|
} |
|
|
|
|
|
|
|
/* Sorted Hover */ |
|
|
|
.ui.sortable.table thead th.sorted:hover { |
|
|
|
background: @sortableActiveHoverBackground; |
|
|
|
color: @sortableActiveHoverColor; |
|
|
|
} |
|
|
|
|
|
|
|
/* Inverted */ |
|
|
|
.ui.inverted.sortable.table thead th.sorted { |
|
|
|
background: @sortableInvertedActiveBackground; |
|
|
@ -635,17 +672,6 @@ |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Definition |
|
|
|
---------------*/ |
|
|
|
|
|
|
|
.ui.definition.table td:first-child { |
|
|
|
background: @definitionBackground; |
|
|
|
font-weight: @definitionFontWeight; |
|
|
|
color: @definitionColor; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Collapsing |
|
|
|
---------------*/ |
|
|
@ -696,6 +722,19 @@ |
|
|
|
padding-bottom: 0em; |
|
|
|
} |
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Celled |
|
|
|
---------------*/ |
|
|
|
|
|
|
|
.ui.celled.table th, |
|
|
|
.ui.celled.table td { |
|
|
|
border-left: @cellBorder; |
|
|
|
} |
|
|
|
.ui.celled.table th:first-child, |
|
|
|
.ui.celled.table td:first-child { |
|
|
|
border-left: none; |
|
|
|
} |
|
|
|
|
|
|
|
/*-------------- |
|
|
|
Padded |
|
|
|
---------------*/ |
|
|
|