Why are the default bootstrap buttons in boot block 3 dark gray for me?

I work with Bootstrap 3 RC, and the default buttons are dark gray with black text instead of light gray with black text. I tried both the CDN link and offline. Just in case, I also cleared the browser cache. Has anyone else experienced this? What could be the reason for this? Thanks.

edit: I have to say that everything else shows as it should. Even other buttons. This is just btn btn-default , which does not display properly.

+6
source share
3 answers

This is the answer from the Bootstrap Github repository:

CDN has 3.0.0 RC1; posted documents are for git CHAPTER 3.0.0-wip, where the default button color has changed.

+3
source

Bootstrap 3 RC boot button really on a white background with black text inside. Check out this link to make sure you remember what it should look like.

+2
source

If your button is link_to, you can simply add :style

Example:

 <%= link_to 'Return', cvs_path, class: "btn btn-primary", :style=>'color:#FFFFFF;' %> 
0
source

Source: https://habr.com/ru/post/951519/


All Articles