mediawiki-skins-Citizen/skinStyles/extensions/SemanticMediaWiki/ext.smw.table.styles.less
alistair3149 f72af5e76d
Improve CI and code clean up (#143)
* Replace existing grunt linter

* Fix stylesheet issues picked up by stylelint

* Update the git workflow

* Fix incorrect slash in workflow file

* Github CI lint - eslint/stylelint

* Clean up composer

* Fix phpcb error

* MediaWiki CI

* Change commit message

* Update status badge

* Add JSDoc

* Add SVGO

* Make a dinner reservation - MediaWiki CI

I clean up code to MediaWiki standards

* Optimize SVG files with SVGO

Co-authored-by: github-actions <github-actions@users.noreply.github.com>
2020-06-16 22:49:41 -04:00

38 lines
573 B
Plaintext

/*
* Citizen - SMW Table Styles
* https://starcitizen.tools
*/
@import '../../../resources/variables.less';
.content table.broadtable,
.smw-ask-result table.broadtable {
display: table;
}
@media ( prefers-color-scheme: dark ) {
.smw-table-header {
background-color: @dark-bg-20;
}
.smw-table-cell,
.smw-table-head {
border: 1px solid @dark-bg-50;
}
.smw-table-footer {
background-color: @dark-bg-20;
}
/**
Should probably be -50
*/
.smw-table-sort-asc:after {
color: @dark-text-60;
}
.smw-table-sort-desc:after {
color: @dark-text-60;
}
}