mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
7beaf0ab9c
Algorithm for deciding which cells handle sorting is exactly the same as in the real jQuery Tablesorter. Depends on changes in VE core: * I50426e173c68af7df49e47fe3bec0465a9a55c26 * Iabb372dfe7bf5feef314315ac74a788c6c58dc20 Bug: T139072 Change-Id: I4446be2ad459b05590754da9bb6c3dd8f796be42
16 lines
468 B
CSS
16 lines
468 B
CSS
/*!
|
|
* VisualEditor ContentEditable MediaWiki MWTableNode styles.
|
|
*
|
|
* @copyright 2011-2017 VisualEditor Team and others; see AUTHORS.txt
|
|
* @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;
|
|
}
|