From: Iain Patterson Date: Fri, 19 Jun 2015 09:48:48 +0000 (+0100) Subject: Fixed Pentadactyl with vertical tabs. X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=92ad56c07bee835ee9ccf77ce9c14094e522a7ca;p=profile.git Fixed Pentadactyl with vertical tabs. 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. --- diff --git a/.pentadactylrc b/.pentadactylrc index d32fc5d..72d7a3d 100644 --- a/.pentadactylrc +++ b/.pentadactylrc @@ -22,4 +22,6 @@ map -builtin u " Show jumplist. map -builtin J :jumps +" Fix vertical tabs. +style -A -n tabkit2 * [dactyl-australis=true] .tabbrowser-tabs { max-height: inherit !important; } " vim: set ft=pentadactyl: