Logs for #nikola for 2015-02-17

19:16:25 -GitHub[nikola]:#nikola- [nikola] Kwpolska pushed 1 new commit to master: http://git.io/Npn2
19:16:25 -GitHub[nikola]:#nikola- nikola/master 3c18d06 Chris Warrick: Update requirements-tests.txt
19:25:27 -travis-ci:#nikola- getnikola/nikola#4649 (master - 3c18d06 : Chris Warrick): The build has errored.
19:25:28 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/33af78967e83...3c18d06fd766
19:25:28 -travis-ci:#nikola- Build details: http://travis-ci.org/getnikola/nikola/builds/51121894
19:35:54 <erdgeist> what is the smartest place to augment classes with more classes for bootstrap? 
19:36:42 <erdgeist> I'd like to add class="col-sm-12 col-md-6 col-lg-6" to all class="section" in my story
19:36:51 <erdgeist> do I need javascript for that?
19:46:41 -travis-ci:#nikola- getnikola/nikola#4649 (master - 3c18d06 : Chris Warrick): The build passed.
19:46:42 -travis-ci:#nikola- Change view: https://github.com/getnikola/nikola/compare/33af78967e83...3c18d06fd766
19:46:42 -travis-ci:#nikola- Build details: http://travis-ci.org/getnikola/nikola/builds/51121894
19:53:07 <ChrisWarrick> erdgeist: write some CSS
19:53:29 <ChrisWarrick> erdgeist: or just explicitly use the classes
19:55:59 <erdgeist> ChrisWarrick: My .rst files compile section headers into <div class="section" id="name">
19:56:20 <ChrisWarrick> erdgeist: .. class:: col-sm-12 col-md-6 col-lg-6  before a/each section is the usual trick
19:56:29 <erdgeist> ahh
19:56:40 <ChrisWarrick> PS. "col-md-6" should be enough afaik
20:06:00 <erdgeist> works fine. thanks