mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 07:35:35 +08:00
cbf9a3bbbd
This commit introduces a fishconfig_print.css that contains special CSS styles that only apply when printing the fishconfig page. This is especially useful when the user wants to print out the key bindings.
31 lines
405 B
CSS
31 lines
405 B
CSS
body {
|
|
background: white;
|
|
font-size: 8pt;
|
|
}
|
|
|
|
.tab, .print_hidden {
|
|
display: none;
|
|
}
|
|
|
|
.tab.selected_tab {
|
|
background: white;
|
|
display: block;
|
|
font-size: 22pt;
|
|
font-weight: bold;
|
|
padding-left: 14pt;
|
|
text-align: left;
|
|
}
|
|
|
|
.print_only {
|
|
display: initial;
|
|
}
|
|
|
|
.data_table_cell {
|
|
border-bottom: #dbdbdb 1pt solid;
|
|
}
|
|
|
|
#ancestor {
|
|
width: 100%;
|
|
box-shadow: none;
|
|
}
|