From 92ad56c07bee835ee9ccf77ce9c14094e522a7ca Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Fri, 19 Jun 2015 10:48:48 +0100 Subject: [PATCH] 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. --- .pentadactylrc | 2 ++ 1 file changed, 2 insertions(+) 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: -- 2.20.1