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
* upstream/master: (298 commits)
add ie-emulation-modes-warning.js to docs & examples
Minor Spacing fixes
Run `grunt`.
Update holder.js to v2.3.2.
Update JSZip to v2.2.1.
Carousel.slide: rename e => slideEvent
change 'slid' comments per @fat's feedback
Document that @import-ing Bootstrap can break the icon font path
fixtwbs#13427
add IE warning scripts to linter config
remove semicolons :'-(
add script to warn folks trying to test old IE using IE's unreliable emulation modes
Document .direction & .relatedTarget properties of Carousel events. Fixestwbs#13395
Add direction & relatedTarget properties to slid.bs.carousel event Fixes #13393
document that show-ing a tooltip/popover on a hidden element doesn't work; fixestwbs#13362
README: Authors => Creators
the master branch is the relevant one for current build status
Add missing word.
fixestwbs#13157 - Collapse plugin - issues with transition end event bubbling
document that non-:visible scrollspy targets are ignored; fixestwbs#13394
...
Conflicts:
dist/css/bootstrap-theme.css
dist/css/bootstrap-theme.min.css
dist/css/bootstrap.css.map
dist/css/bootstrap.min.css
less/variables.less
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -169,6 +169,7 @@ license your work under the terms of the [MIT License](LICENSE.md).
169
169
- Always a space after a property's colon (e.g., `display: block;` and not `display:block;`).
170
170
- End all lines with a semi-colon.
171
171
- For multiple, comma-separated selectors, place each selector on its own line.
172
+
- Don't add vendor prefixed properties to their unprefixed counterparts (e.g., only `box-sizing` and not also include `-webkit-box-sizing`), as this is done automagically at build time.
172
173
- Attribute selectors, like `input[type="text"]` should always wrap the attribute's value in double quotes, for consistency and safety (see this [blog post on unquoted attribute values](http://mathiasbynens.be/notes/unquoted-attribute-values) that can lead to XSS attacks).
173
174
- Attribute selectors should only be used where absolutely necessary (e.g., form controls) and should be avoided on custom components for performance and explicitness.
174
175
- Series of classes for a component should include a base class (e.g., `.component`) and use the base class as a prefix for modifier and sub-components (e.g., `.component-lg`).
0 commit comments