Loading...
 

History: Bootstrap 3 to 4 transition

Preview of version: 2

As if this writing, the Bootstrap 4 development is at its sixth alpha release, so soon there will be a beta release phase, and then the official release. There's no official timetable for this but we do know it's coming so we want to get prepared. Tiki, since version 13, is integrating Bootstrap 3 for a layout and styling framework. When Bootstrap 4.0 is released and other factors are positive, Tiki will shift from Bootstrap 3 to Bootstrap 4.

(By other factors, this might be such things as outside theme developers/designers shifting to Bootstrap 4 as well, other themes being available for Bootstrap 4 and so on. But given the long gestation period and the cool things brought by Bootstrap 4, the transition to it is apt to be fairly fast.)

To check what's necessary in the transition from 3 to 4, I made a new trunk installation on my local server, and put the Bootstrap 4 package in the vendors_custom directory. I chose one theme to test with - Amelia, probably because it's at the top of the list alphabetically. I used PhpStorm and its SCSS plugin for compiling.

  • First of all, the theme's "less" directory needs to be renamed "scss". (While the CSS preprocessor is called "Sass", the directory name and file extension is ".scss".)
  • To be consistent with the convention, I added an underbar to the beginning of all Sass partial files (the files that are imported), like "_tiki-selectors.scss".
  • Within the Sass files, the variable name syntax needs to be converted, so instances of "@variable-name" are changed to "$variable-name".
  • In Bootstrap 3, the "variables.less" file is essentially a list of definitions for variables that can be modified for the theme. In Bootstrap 4, there is no exact equivalent. Instead there is a "_custom.scss" file that is empty initially but can contain new definitions of variables to override the Bootstrap defaults.
  • To customize a site or theme, the idea now is to use a _custom.scss file that contains a copy of the rules in "_variables.less" to be edited. Of course not all of the older variable names still exist, and some new ones are added. Since the new _variables.scss" is long and many variables aren't likely to need overriding, a good approach might be to make a general "_custom.scss" template with variables most often/likely specified by themes and compare this to the old "variables.less" file to do the updating/overriding.
  • Less-to-Sass syntax conversions are needed in some theme and "base_files" files for things like image paths, color manipulation, etc.


In my test, I just modified one Smarty file - templates/layouts/basic/layout_view.tpl - because on first view the page columns were out of order. I rearranged div#col2, div#col1, and div#col3 into their actual order on the page. I haven't researched it yet, but it seems the "pull", "push", and "offset" classes are no longer used. In Bootstrap 4, column layout uses Flexbox by default, so in grids there is no longer floating columns into place, adding clearfix, and so on.

With just the basic adjustments to the Amelia theme files, the basic modification of layout_view.tpl, and pointing to the Bootstrap 4 lib (ignoring the Bootstrap 3 lib), the result was that the Tiki site did look and work pretty much like a Tiki site. But there were some problems:

  • Navbars have been revamped (and simplified) so this will have to be done in Tiki as well.
  • The vertical menus were displaying horizontally. I didn't check further on this yet.
  • Tabs, dropdowns and other lists containing links have new HTML so those will need updating.
  • Wells, panels, and so on have been replaced by "cards" so Tiki's modules, especially, and other instances of the old div classes will have to be updated.


I understand forms have also undergone significant changes but I didn't look yet at what updating will be needed.

There's new JavaScript for modals and other JS-related changes.

I'll add to this page as I do more testing, etc.

http://v4-alpha.getbootstrap.com/
https://medium.com/wdstack/bootstrap-4-whats-new-visual-guide-c84dd81d8387#.b2sxbfsf6
http://www.hongkiat.com/blog/boostrap-4-best-features/
https://hackerthemes.com/bootstrap-cheatsheet/
https://bootstrapcreative.com/resources/bootstrap-4-css-classes-index/
https://www.udemy.com/bootstrap-4/
http://codepen.io/search?q=bootstrap+cards&limit=all&depth=everything&show_forks=false

https://gist.github.com/chriseppstein/674726 - Sass/Less Comparison
https://css-tricks.com/sass-vs-less/

History

Advanced
Information Version
Wed 03 of Oct, 2018 08:03 GMT chibaguy Added recent status and link. 56
Sun 12 of Aug, 2018 08:24 GMT chibaguy Added title bar for page alias. 55
Sun 12 of Aug, 2018 08:21 GMT chibaguy Added a link. 54
Fri 10 of Aug, 2018 05:59 GMT chibaguy Added updates and link. 53
Fri 27 of Jul, 2018 10:13 GMT chibaguy Updated details. 52
Fri 27 of Jul, 2018 10:08 GMT chibaguy Added info. 51
Wed 25 of Jul, 2018 09:36 GMT chibaguy Updated info. 50
Sun 15 of Jul, 2018 14:51 GMT chibaguy Some updates. 49
Sun 15 of Jul, 2018 14:41 GMT chibaguy 48
Thu 21 of Jun, 2018 14:43 GMT chibaguy Added link to Organization of button colors in Tiki page. 47
Wed 30 of May, 2018 10:25 GMT chibaguy Commented out bugs that are fixed or no longer a problem. 46
Wed 02 of May, 2018 08:32 GMT luci added alias workaround to prevent Google penalty for 404 result 45
Mon 23 of Apr, 2018 17:58 GMT luci browser support note 44
Sun 22 of Apr, 2018 05:13 GMT chibaguy Updated merge info. 43
Sun 08 of Apr, 2018 11:34 GMT chibaguy Added section for other possible related changes 42
Wed 04 of Apr, 2018 04:48 GMT chibaguy Added point about Tour. 41
Tue 03 of Apr, 2018 13:19 GMT chibaguy Added a couple of items. 40
Tue 03 of Apr, 2018 03:40 GMT chibaguy Updated in a few places. 39
Sun 01 of Apr, 2018 07:56 GMT jonnybradley added js modal fixes commit 38
Wed 28 of Mar, 2018 13:00 GMT chibaguy Ideas added. 37
Wed 21 of Mar, 2018 14:15 GMT chibaguy More points added. 36
Thu 08 of Mar, 2018 11:15 GMT chibaguy Added note about column show/hide. 35
Thu 01 of Mar, 2018 13:27 GMT chibaguy Confirming that Bootstrap 6 was a typo. 34
Thu 01 of Mar, 2018 12:51 GMT marclaporte AFAIK, it's in 5, but maybe it changed? If so, can you add the reference? 33
Thu 01 of Mar, 2018 11:21 GMT chibaguy Added code migration section 32
Mon 26 of Feb, 2018 10:07 GMT chibaguy Fixed link. 31
Mon 26 of Feb, 2018 10:02 GMT chibaguy Updated some links. 30
Mon 26 of Feb, 2018 09:52 GMT chibaguy Added missing lines of commit info. 29
Mon 26 of Feb, 2018 09:50 GMT chibaguy Fixed typo. 28
Mon 26 of Feb, 2018 09:48 GMT chibaguy Updated info. 27
Mon 26 of Feb, 2018 09:40 GMT chibaguy Added recent commits. 26
Fri 19 of Jan, 2018 15:53 GMT chibaguy Testing page edit save. 25
Fri 05 of Jan, 2018 08:30 GMT chibaguy Added r65033 info. 24
Fri 15 of Dec, 2017 10:37 GMT chibaguy Added link to Updating a Tiki theme from Bootstrap 3 to 4 23
Sat 28 of Oct, 2017 12:43 GMT chibaguy Added some comments. 22
Thu 26 of Oct, 2017 12:56 GMT chibaguy Added another item. 21
Thu 26 of Oct, 2017 05:51 GMT chibaguy Added r64379 to list. 20
Thu 19 of Oct, 2017 07:31 GMT chibaguy 19
Thu 19 of Oct, 2017 06:46 GMT chibaguy 18
Thu 19 of Oct, 2017 06:45 GMT chibaguy Added process notes. 17
Thu 19 of Oct, 2017 06:32 GMT chibaguy Fixed typos. 16
Thu 19 of Oct, 2017 06:31 GMT chibaguy 15
Thu 19 of Oct, 2017 06:15 GMT chibaguy Start recording non-theme commits to Bootstrap 4 experimental branch for smoother merge back (thanks, Jonny). 14
Mon 02 of Oct, 2017 10:22 GMT chibaguy 13
Mon 02 of Oct, 2017 10:21 GMT chibaguy Fixed typo. 12
Mon 02 of Oct, 2017 10:20 GMT chibaguy Added link to Bootstrap Tour Bootstrap 4 update issue. 11
Fri 22 of Sep, 2017 09:59 GMT luci BS4 is beta now 10
Wed 02 of Aug, 2017 08:18 GMT chibaguy Added a link; organized links. 9
Sun 30 of Jul, 2017 19:19 GMT drsassafras removed duplicated text & some minor grammar 8
Wed 05 of Jul, 2017 13:15 GMT chibaguy Added a link. 7
  • «
  • 1 (current)
  • 2

Switch Theme

Layout

Latest Changes

No records to display ...more

Subscribe to Tiki Newsletters!

Delivered fresh to your email inbox!
Newsletter subscribe icon
Don't miss major announcements and other big news!
Contribute to Tiki

Site Config