You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to build the theme manually, modify it or even contribute, this section explains how.
@@ -177,7 +204,7 @@ There is a few npm and gulp scripts.
177
204
-`Services` are the web pages services; so far it's pretty thin.
178
205
-`wwwroot` are the web assets; the `dist` files are copied there.
179
206
-`assets` are the project assets (like the screenshot in the readme file).
180
-
-`dist` are the redistributable files; if you want to copy/paste the files into your projects, that's the ones. They also include bootstrap JavaScript files, unaltered.
207
+
-`dist` are the distributable files; if you want to copy/paste the files into your projects, that's the ones. They also include bootstrap JavaScript files, unaltered.
181
208
-`scss` are the source theme files.
182
209
- Other files (root): npm, license, readme, etc.
183
210
@@ -198,6 +225,28 @@ See [Contributing to ForEvolve open source projects](https://github.com/ForEvolv
198
225
199
226
Since CI build numbers are automated, it is hard to know in advance what the next deployed build number will be, so the `(latest)` version represent that version.
200
227
228
+
## 1.2.x (preview)
229
+
230
+
_This version is not completed and could contain bugs._
231
+
232
+
- Add `bootstrap-dark-prefers-light.css` which default to Bootstrap dark and display the light colors if the user's `prefers-color-scheme: light`.
233
+
- Add `bootstrap-light-prefers-dark.css` which default to Bootstrap and display the dark colors if the user's `prefers-color-scheme: dark`.
234
+
- Add `bootstrap-prefers-dark-color-only.css` which is only the colors of `bootstrap-prefers-dark.css`. This is autogenerated by `clean_non_color_attr.js`.
235
+
- Add `bootstrap-prefers-light-color-only.css` which is only the colors of `bootstrap-prefers-light.css`. This is autogenerated by `clean_non_color_attr.js`.
236
+
- Add `clean_non_color_attr.js` gulp plugin (based on `gulp-css-remove-attributes`).
237
+
- Update .NET/Razor Pages sample to use these new CSS files.
238
+
239
+
### Completed state
240
+
241
+
-[x] default: light - prefers: light
242
+
-[x] default: light - prefers: dark
243
+
-[ ] default: dark - prefers: light
244
+
-[x] default: dark - prefers: dark
245
+
246
+
### Known issues
247
+
248
+
- Color bugs in the dark/light theme are caused by color variables being set to `null` in Bootstrap and overridden in Bootstrap-dark.
249
+
201
250
## 1.1.0
202
251
203
252
- Update `bootstrap-dark.css` to include the `.navbar-themed` class (dark version).
0 commit comments