Fixed Pentadactyl with vertical tabs.
authorIain Patterson <me@iain.cx>
Fri, 19 Jun 2015 09:48:48 +0000 (10:48 +0100)
committerIain Patterson <me@iain.cx>
Fri, 19 Jun 2015 09:51:12 +0000 (10:51 +0100)
Way back in commit c245702041670b927f11bb7bf61d99f2fdc9e6e7 Pentadactly
broke vertical tabs, such as those in Tab Kit 2nd edition, by explicitly
adding CSS to set the maximum height for the tab bar:

    [dactyl-australis=true] .tabbrowser-tabs {
        min-height: 0 !important;
        max-height: 24px !important;
    }

Rather than recompile Pentadactyl each time we can fix that with a line
of custom CSS in .pentadactylrc.

.pentadactylrc

index d32fc5d..72d7a3d 100644 (file)
@@ -22,4 +22,6 @@ map -builtin u <C-u>
 " Show jumplist.
 map -builtin J :jumps<CR>
 
+" Fix vertical tabs.
+style -A -n tabkit2 * [dactyl-australis=true] .tabbrowser-tabs { max-height: inherit !important; }
 " vim: set ft=pentadactyl: