hyper-material-box
hyper-material-box copied to clipboard
Active tab opacity broken with new canary channel
It might be a little bit early because the 2.0 version of hyper is still in development but the theme has some issue. The opacity of the active tab is always at 0.6. It results in faded colours but it's still usable (if you love it).
I've got the same issue now 2.0 is released.
+1, I'm suffering the same issue on the 2.0 release no matter the color scheme I choose.
In dev tools change opacity under style tags from {opacity:0.6;} to {opacity:1.0;} as a temp work around.
For a little more clarity the problem lies in these CSS classes:
#hyper .term_fit:not(.term_term){opacity:0.6;}
#hyper .term_fit.term_active{opacity:1;-webkit-transition:opacity 0.12s ease-in-out;transition:opacity 0.12s ease-in-out;will-change:opacity;}
Changing the first to {opacity:1.0;}
makes both sides of a split tab totally opaque. The latter class seems not to override the first on the active side of the split?
Recently loaded the 'hyper-opacity' plugin and with opacity set to 1.0 things are working well. Submitted a pull request to make this the default value.
You could try the latest Canary version of hyper. I should solve that problem @Bertutchio