Hi,
I installed the chameleon theme along with the bootstrap extension and the amelia variables.less and bootstrap.less on my wiki. Everything seems to be working properly and I have succesfully managed to change some LESS variables in the localsettings.php. However, there are certain elements of the wiki which I don't seem to find. For instance, I would like to change the link color displayed on Special:SpecialPages which is white at the moment. Also, I would like the search bar at the top right corner to come slightly down.
I can't find the correct variable in the LESS files for this anywhere so I started diving deeper into my files. In '/domains/[name]/private_html/vendor/twitter/bootstrap/dist/css' I found bootstrap.css which has a style element that should fix the white text on SpecialPages. This is the code I found:
a:hover,
a:focus {
color: #FFF;
text-decoration: underline;
}
However, after changing the color to '#000' it did not change to black but remained white. What am I doing wrong? Did I change the wrong bootstrap.css? I tried it with several other 'bootstrap.csss aswell but none of them seem to work.