henrikruscon / hyper-tabs-enhanced

Enhanced Tabs Plugin for Hyper
MIT License
192 stars 20 forks source link

how to change tab inactive text color? #41

Open xshadowlegendx opened 5 years ago

xshadowlegendx commented 5 years ago

I have tried add css like below:

// .hyper.js
...
css: `
  #hyper .tab_tab {color: rgba(255, 255, 255, .3) !important;}
`;
...

But it did not work

traviskroberts commented 5 years ago

@xshadowlegendx You need to drop the #hyper from the style declaration.

css: `
  .tab_tab { color: rgba(255, 255, 255, .3) !important; }
`;