aboutsummaryrefslogtreecommitdiff
path: root/less/mixins.less
AgeCommit message (Collapse)AuthorFilesLines
2013-08-04fixes #8793: remove padding-right from inputs with state changesMark Otto1-1/+0
2013-08-04Enable input focus state customizationMark Otto1-0/+22
- Add new mixin to generate and customize focus state as needed - Adds variable to set default color - Include clear disclaimer about customizing this—it's about users', so don't go making everything bright red and expect them not to be confused or alarmed. Relevant issues: #2742, #4185, #7942, #8171, #8610, #9044
2013-08-02Resolves https://github.com/twbs/bootstrap/issues/9014. updates mixins to ↵Jon Schlinkert1-15/+15
consistently use semicolons as argument separator. Rebuild to confirm, no diff in compiled CSS.
2013-08-01Correct comment which is showing a wrong mixin call example (mixins.less)leonardovcid1-1/+1
I was copy-pasting the example and it wasn't working. Then I found that the example in the comment was a typo. Thanks
2013-07-31Removed trailing whitespacesCesidio Di Landa1-3/+3
Changed hard tabs to soft tabs
2013-07-30Removed background color from #gradient mixins to support transparent gradientsArchan Luhar1-7/+0
2013-07-26use transforms to make the dialog smoooothfat1-0/+6
2013-07-26Small typoFred Delrieu1-1/+1
2013-07-25Update form validation statesMark Otto1-6/+8
* Once again no longer applies to single inputs (this is a bit simpler, but I'm open to new ideas) but the entire set of inputs, labels, and help text within a particular element. However, the styles are not too dependent on markup or layout, so they're super flexible. * Simplified the markup in the validation docs examples to match latest changes. * Renamed `.form-state-validation` mixin to `.form-control-validation` to match naming of prev commit.
2013-07-25twbs ALL the linksChris Rebert1-1/+1
2013-07-23Update dropdown varsMark Otto1-4/+3
* Update `.nav-divider` mixin to simplify to a 1px line (one value instead of two in parametric mixin) * Rename and consolidate dropdown caret vars * Add vars to Customizer
2013-07-18spacing and local var renameMark Otto1-4/+5
2013-07-18Merge branch 'patch-1' of https://github.com/bassjobsen/bootstrap into ↵Mark Otto1-1/+15
bassjobsen-patch-1
2013-07-18Merge pull request #8380 from joeybaker/patch-1Mark Otto1-21/+0
Remove unneeded prefixes from some mixins
2013-07-16Add missing backtick in commentChris Rebert1-1/+1
2013-07-11rename .retina-image => .img-retinaChris Rebert1-1/+1
2013-07-07Merge pull request #8408 from cvrebert/progress-bar-variant-mixinMark Otto1-0/+9
extract .progress-bar-variant mix-in
2013-07-07Merge pull request #8407 from cvrebert/label-variant-mixinMark Otto1-0/+12
extract .label-variant mix-in
2013-07-07extract .progress-bar-variant mix-inChris Rebert1-0/+9
2013-07-07extract .label-variant mix-inChris Rebert1-0/+12
2013-07-07extract .alert-variant mix-inChris Rebert1-0/+14
2013-07-03Remove unneeded prefixesJoey Baker1-21/+0
Per caniuse, prefixes for transitions and transforms can be reduced to just `-webkit` and `-ms`. http://caniuse.com/#search=transform http://caniuse.com/#search=transition
2013-07-01Merge branch '3.0.0-responsive-tables' of ↵Mark Otto1-0/+7
https://github.com/juthilo/bootstrap-wip into juthilo-3.0.0-responsive-tables Conflicts: less/mixins.less
2013-07-01Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wipMark Otto1-1/+1
2013-07-01Merge pull request #8348 from Rowno/compiled-font-shorthandMark Otto1-1/+1
Prevent the font shorthand from getting compiled as division
2013-07-01fixes #8345: use inline-block on .img-responsiveMark Otto1-2/+0
2013-07-01fixes #8068: add .help-block to form field state mixinMark Otto1-0/+1
2013-07-01Fix responsive utilities for table elementsJulian Thilo1-0/+7
This change prevents situations where specificity causes some rules to be overridden by the ones intended for mobile. * Added mixin `responsive-invisibility()` * Swapped out `display: none !important;` for new mixin
2013-07-01Prevent the font shorthand from getting compiled as divisionRoland Warmerdam1-1/+1
2013-06-27Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wipMark Otto1-0/+1
2013-06-27Merge pull request #7995 from hrach/patch-3Mark Otto1-0/+1
Fixed mixin btn-pseudo-state background for [disabled] buttons
2013-06-27update grid col mixin to use latest css from grid colsMark Otto1-3/+1
2013-06-26Update mixins.lessBass Jobsen1-1/+15
Add a the function .make-small-column. See also http://stackoverflow.com/a/17308128/1596547
2013-06-25Move mixin to mixins.lessMark Otto1-1/+11
2013-06-06Set validation states also for addonsWilliam Ghelfi1-0/+6
2013-06-02Grid updatesMark Otto1-73/+5
- Removed mixins for generating grid classes - Thus, we manually declare every grid class, from 1-11 (12th unit is excluded as that's the same as no grid columns) - No more need for `.col` base class (yay!) - Negative indent the rows at tablets and above once again (ugh, still working through this part) - Add support for `.col-md` for tablet-specific grid columns - Still need to figure out offsets, pushes, and pulls on other devices—right now only available on desktop
2013-05-26Fixed mixin btn-pseudo-state background for [disabled] buttonsJan Škrášek1-0/+1
2013-05-25Gradients refactorMark Otto1-41/+56
* Add start and end support to the horizontal gradient as well * Change all variables from camelCase to use-dashes * Better comments in the gradients mixins area * Update current uses of gradients in dropdowns and carousel to specify only two values by direct assignment of variables
2013-05-21Found editor spacing issues with tabs instead of spaces, formatting to fit ↵Chad Smith1-2/+2
the entrance criteria
2013-05-21Vertical gradients now can have percentages passed in as arguments to allow ↵Chad Smith1-5/+5
finer control over the backgrounds it produces
2013-05-16Nuke rem font-size mixinMark Otto1-8/+0
2013-05-16Form validation and horizontal row updateMark Otto1-1/+1
* changed .row-label to .control-label as used elsewhere already * changed .formFieldState mixin to .form-field-validation
2013-05-10Font-size and line-height tweaksMark Otto1-3/+0
* Use 1.428 for line-height instead of 1.5 * Use function for full pixel values instead of decimals
2013-05-10Fix component margin and padding values to use @line-height-computedAaron1-1/+1
2013-05-07Require .btn-default for regular buttonsMark Otto1-1/+2
* Instead of , use for standard, gray button * Improves ability to customize buttons by encouraging folks to not override .btn and thus overriding all button modifier classes * Updates docs to reflect the change * Reorganize buttons CSS
2013-04-30Fixes #7744: update grid mixin to use latest grid stylesMark Otto1-14/+10
2013-04-26Back to two grid classes, .col and .col-lg-*Mark Otto1-30/+32
2013-04-22Fixes #7661Chris Rebert1-1/+1
2013-04-20Fixes #7591: add .make-small-column() mixinMark Otto1-0/+10
2013-04-18Update mixins to remove Opera prefixes on gradients; reorder rules for ↵Mark Otto1-10/+3
consistency