2017-01-18 06:52:57 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor ContentEditable MediaWiki MWTableNode styles.
|
|
|
|
*
|
2018-01-03 00:54:47 +00:00
|
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
2017-01-18 06:52:57 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Override tablesorter's cursor: pointer */
|
|
|
|
.ve-ce-mwTableNode.jquery-tablesorter th.ve-ce-tableCellNode-header.headerSort {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ce-mwTableNode.jquery-tablesorter th.ve-ce-tableCellNode-header.ve-ce-tableCellNode-editing.headerSort {
|
|
|
|
cursor: text;
|
|
|
|
}
|
2018-05-10 19:35:13 +00:00
|
|
|
|
|
|
|
/* Prevent jQuery.makeCollapsible from hiding the rows, even if collapsed by default */
|
|
|
|
.client-js .ve-ce-mwTableNode.mw-collapsed:not( .mw-made-collapsible ) tr:not( :first-child ) {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.client-js .ve-ce-mwTableNode.mw-collapsed:not( .mw-made-collapsible ) > thead + tbody {
|
|
|
|
display: table-row-group;
|
|
|
|
}
|
|
|
|
|
2018-06-23 13:17:21 +00:00
|
|
|
/*
|
|
|
|
* Grey out the fake toggles to make it more obvious they are not interactive.
|
|
|
|
* Don't bother trying to float the toggles, as the text they are floating around
|
|
|
|
* is now paragraph wrapped. Making these paragraphs display:inline would fix the
|
|
|
|
* rendering but causes them to be destroyed by the CE when empty (T197987).
|
|
|
|
*/
|
2018-05-10 19:35:13 +00:00
|
|
|
.ve-ce-mwTableNode.mw-collapsible :first-child tr:first-child th:last-child:before,
|
|
|
|
.ve-ce-mwTableNode.mw-collapsible > caption:first-child:after {
|
|
|
|
color: #999;
|
2018-06-23 13:17:21 +00:00
|
|
|
float: none;
|
2018-05-10 19:35:13 +00:00
|
|
|
}
|