mescon / Muximux

A lightweight way to manage your HTPC
GNU General Public License v2.0
1.14k stars 82 forks source link

[Feature request] Change tab color on mouse rollover #48

Closed JudsonHat closed 8 years ago

JudsonHat commented 8 years ago

To begin with, I'm loving the changes that have been made from the original project. Next, is it possible to change the tabs to a different color on a mouse rollover like it already does with the refresh button and dropdown menu? I would really appreciate it if this was implemented.

mescon commented 8 years ago

This is already the default behavior. You are free to change the :hover color to anything you desire inside of style.css.

JudsonHat commented 8 years ago

Thanks for the reply. For some reason, only the refresh and drop down menu change colors on a mouse hover in my broswer. I looked in the style.css, and there are many lines with :hovor. Can you tell me which specific one controls the tab hover color? Thanks

mescon commented 8 years ago

Sorry, try some different ones - try just setting hover color to #ff0000 and it will be red, and then you can easily see which one that controls it.

JudsonHat commented 8 years ago

For what it's worth, I finally got the tabs to change colors on a mouse over. I removed .no-touch from this part of the code on line number 115.

.no-touch .cd-tabs-navigation a:hover, #reload:hover {
    color: #f1f3f2; /* Hover text colour */
    background-color: rgba(233, 230, 202, 0.3);
}

Edit: Just to clarify, I am using a Miscrosoft Surface Pro 3 that has a touchscreen which caused this code to be bypassed.