20 lines
609 B
CSS
20 lines
609 B
CSS
/* LuxTools plugin styles
|
|
* Keep this minimal and scoped to the plugin container.
|
|
*/
|
|
|
|
/* DokuWiki often highlights rows on hover. Avoid highlighting header rows. */
|
|
div.filetools-plugin table thead tr:hover > * {
|
|
background-color: @ini_background_alt !important;
|
|
}
|
|
|
|
|
|
/* "Open Location" row above the header should be visually smaller. */
|
|
div.filetools-plugin table thead tr.luxtools-openlocation-row td {
|
|
font-size: 80%;
|
|
padding-top: 0.2em;
|
|
padding-bottom: 0.2em;
|
|
}
|
|
div.filetools-plugin table thead tr.luxtools-openlocation-row:hover td {
|
|
background-color: @ini_background !important;
|
|
}
|