One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "cmd+r", | |
| "command": "workbench.action.gotoSymbol" | |
| }, | |
| { | |
| "key": "ctrl+cmd+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus" |
| # From http://vanderwijk.info/blog/adding-css-classes-formfields-in-django-templates/#comment-1193609278 | |
| from django import template | |
| register = template.Library() | |
| @register.filter(name='add_attributes') | |
| def add_attributes(field, css): | |
| attrs = {} | |
| definition = css.split(',') |
| // Bootstrap Mid-Small - col-ms-* - the missing grid set for Bootstrap3. | |
| // | |
| // This is a hack to fill the gap between 480 and 760 pixels - a missing range | |
| // in the bootstrap responsive grid structure. Use these classes to style pages | |
| // on cellphones when they transition from portrait to landscape. | |
| // | |
| // NOTE: Here I use SASS instead of LESS for styling. To convert to LESS | |
| // replace '$screen' with '@screen' and '$grid' with '@grid'. | |
| // | |
| // See https://github.com/twbs/bootstrap/issues/10203 for more info. |