Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux: Too high CPU load #8

Open
noscript opened this issue Aug 13, 2014 · 2 comments
Open

Linux: Too high CPU load #8

noscript opened this issue Aug 13, 2014 · 2 comments

Comments

@noscript
Copy link

Using FF 31.0

@noscript
Copy link
Author

noscript commented Sep 1, 2014

The culprit is in the skin stylesheet. I have no idea why, but having the tab height more than 21px causes constant ~50% CPU load. There is my fix:

--- a/skin/linux/linux.css  2014-09-01 19:16:43.300756000 +0300
+++ b/skin/linux/linux.css  2014-09-01 19:17:00.958383000 +0300
@@ -19,8 +19,8 @@
     margin: 0 !important;
     padding: 1px 0 !important;
     height: 24px !important;
-    min-height: 24px !important;
-    max-height: 24px !important;
+    min-height: 21px !important;
+    max-height: 21px !important;
 }

 .tabbrowser-tab[selected="true"],

@noscript noscript changed the title Too high CPU load Linux: Too high CPU load Sep 1, 2014
@AWilyFox
Copy link

AWilyFox commented Jan 3, 2015

Confirmed that this workaround works in FF35. It also re-enables scrolling in the vertical tabs list, which is issue #10

DavidShepherdson pushed a commit to DavidShepherdson/VerticalTabs that referenced this issue Sep 8, 2016
DavidShepherdson pushed a commit to DavidShepherdson/VerticalTabs that referenced this issue Sep 8, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants