yiiyahui / Neptune-Firefox

A clean and compact Firefox theme.
MIT License
142 stars 6 forks source link

New tab and Bookmark! #9

Closed CREATORCorp closed 2 months ago

CREATORCorp commented 2 months ago

Hello! Very nice theme, i always try to find a good safari theme like that. Is there any fix for "NewTab" "+" icon to move after tabs? And another question, you know how to make bookmark bar show on hover? i think is the best thing. Thx! Have a good day sir!

yiiyahui commented 2 months ago

1: moving only the newtab button will disrupt the existing layout. 2: try copying the following content into userchrome.css.

#PersonalToolbar {
    margin-bottom: -28px;
    transform: rotateX(90deg);
    transform-origin: top;
    transition: transform .1s linear .3s !important;
    z-index: 1;
}

#navigator-toolbox:hover > #PersonalToolbar {
    transition-delay: .3s;
    transform: rotateX(0);
}
CREATORCorp commented 2 months ago

It works! Thank you so much!