I had the same problem for a while (with all styles). Either a browser problem or it is due to the server configuration.
There wasn't such a need, to be honest this style is not very popular and it will remain so.Do you have any bootstrap styles for some extensions?
There are 100 items in Extension Database (not saying about Extensions in Development forum), how many extension will you be able to develop and maintain for a long period of time?IMHO such a bootstrap style repo will be interesting for all phpbb bootstrap styles family either.
What you mean by hardcoded, what is the softcoded way?using hardcoded bg-white
Is there any documentation about how to make a bootswatch-friendly style?Don't you think it would be worth to make the whole style bootswatch-friendly?
I use more than 15 extensions - if we share at least one of them, there is less work for both of us. And as Bootstrap is the most popular framework in this world, I am sure at least one more person will join our efforts in future if we give them a handBootstrap styles for extensions
hardcoded / softcoded
I am afraid such a documentation does not exist. Bootswatch has a wide spectrum of colour pallets in use, from very dark, through dark, gray, bright, and very bright. To make a bootswatch theme is enough to stop declaring particular colours as for example text-black-50, bg-white, text-white and use colour macros only, like text-primary, text-dark, text-muted, bg-dark and so on. In such a case these colours can change according to the bootswach theme used. It is not easy for you as an artist, I do understand, but in result we could have 26 bootlike themes instead of onedocumentation about how to make a bootswatch-friendly style
Code: Select all
@import url("../../bootlike/theme/custom.css");
@import url("../../bootlike/theme/imageset.css");
@import url("bootstrap.min.css");
.bg1 {background-color: #333;}
.bg2 {background-color: #555;}
.bg-white {background-color: #000 !important;}
.text-white {color: #000 !important;}