aboutsummaryrefslogtreecommitdiff
path: root/scss/_custom-forms.scss
AgeCommit message (Collapse)AuthorFilesLines
2021-09-08Replace Sass division with multiplication and custom divide() functionMark Otto1-6/+6
Fixes #34353. Co-Authored-By: Slaven Tomac <[email protected]>
2021-01-13Consistently use outline:0 rather than outline:nonePatrick H. Lauke1-1/+1
Manual backport of https://github.com/twbs/bootstrap/pull/32751 (which has not been merged yet, but assume it will shortly)
2020-11-19Add overflow suppression to custom file label (#32160)Patrick H. Lauke1-0/+1
Avoids unsightly spilling out of long filename text, particularly for multi file inputs Co-authored-by: XhmikosR <[email protected]>
2020-11-13Manually backport #32121 (#32141)XhmikosR1-1/+1
Use correct value order Co-authored-by: Martijn Cuppens <[email protected]>
2020-11-13Avoid invisible real file input "spilling" out of container (#32145)Patrick H. Lauke1-0/+1
Co-authored-by: XhmikosR <[email protected]>
2020-10-05Backport color-adjust for v4Mark Otto1-0/+1
Keeps checkboxes, radios, and switches with their intended design when printing. Backports #29714
2020-09-30Stylelint: replace deprecated optionsXhmikosR1-3/+3
2020-09-18Update _custom-forms.scss (#31693)Mark Otto1-1/+1
Typo in box-shadow attribute, global variable used instead of local. Co-authored-by: Arthur Shlain <[email protected]> Co-authored-by: XhmikosR <[email protected]>
2020-06-23Remove duplicate properties after #30922 (#31148)Martijn Cuppens1-4/+0
2020-06-15fix(custom forms): disabled checked states weren't overriding ↵Gaël Poupard1-0/+4
background-image (#30922)
2020-06-04v4: Add z-index to .custom-check to fix custom checks in CSS columns (#30810)Mark Otto1-0/+1
For some reason, custom checks in CSS columns need a new stacking order to maintain visibility. This PR adds `z-index: 1` to trigger that new stacking order. Since v5's forms are being redone entirely, and we're dropping IE10/11 there, I think this is totally fine to ship with v4 only. Will need to check v5's forms it in Edge though. Fixes #29607. Co-authored-by: XhmikosR <[email protected]>
2020-04-13Backport #30555Martijn Cuppens1-1/+2
Use `box-shadow` mixin for `.form-select`
2019-11-28V4: Add :disabled for disabled fieldset (#29762)Shohei Yoshida1-6/+6
2019-11-07Make check label cursor customizable (#29633)Gary PEGEOT1-0/+1
2019-11-01Convert v4-dev calc() left overs to add/subtract functionsMartijn Cuppens1-3/+3
2019-10-14Backport #29445Martijn Cuppens1-0/+6
Remove outline from select box in Firefox
2019-07-30`.custom-select`: combine properties.Martijn Cuppens1-2/+1
2019-07-30Backport "Use escape-svg() function (#29077)"Martijn Cuppens1-3/+3
Adapted for v4-dev.
2019-06-18Fix position of browser default validation message (#28852)Shohei Yoshida1-0/+3
2019-04-29Add `$custom-control-label-color` variable (#28633)Shohei Yoshida1-0/+1
2019-03-27Workaround for MS edge bug (#28275)Shohei Yoshida1-2/+6
2019-02-07Responsive font size implementation (#23816)Martijn Cuppens1-3/+3
2019-02-07Optional btn & input font sizes (#28068)Martijn Cuppens1-0/+2
2019-01-25Fix custom select caret issue on IE (#28112)Shohei Yoshida1-1/+1
2019-01-13Combine background properties into oneMartijn Cuppens1-3/+1
2018-12-29Fix custom select font sizes (#27929)Martijn Cuppens1-0/+1
2018-12-23Blacklist border-radius property (use mixin instead) (#27900)Martijn Cuppens1-5/+4
2018-12-14Remove redundant brackets (#27768)Martijn Cuppens1-6/+6
2018-12-14Custom switch form control gutter fix (#27837)Gijs Boddeus1-3/+3
2018-12-14Actual gutter definition (#27797)Gijs Boddeus1-3/+3
2018-12-12Add switch custom form control (#23004)Gijs Boddeus1-0/+41
2018-11-13Customize browse text of the custom file input with HTML (#27651)Martijn Cuppens1-0/+4
2018-11-04scss/_custom-forms.scss: fix typo in comment.XhmikosR1-1/+1
2018-10-31Fix empty custom-control-label alignment issue (#27566)ysds1-0/+1
2018-10-30#27502: Prevent active state border changeMartijn Cuppens1-1/+1
2018-10-21Custom checkboxes and radios retheming (#27064)Martijn Cuppens1-7/+13
2018-10-20Update _custom-forms.scss (#27276)719media1-1/+0
user-select has no effect on before/after pseudo elements
2018-10-20Add font weight options for form controls and custom select (#27343)Andres Galante1-0/+2
2018-09-02#27112: fix border focus border colorMartijn Cuppens1-5/+1
2018-07-29Merge branch 'form-validation-icons' into v4-devMark Otto1-2/+2
2018-07-29Fix custom-select font size/padding (#26585)Robert1-4/+6
fixes #26476
2018-07-24Fix custom range height (#26898)ysds1-1/+2
Fixes #26897
2018-07-24Custom input range disabled styling (#26540)Martijn Cuppens1-0/+22
2018-07-14Fix custom range thumb style (#26385)ysds1-16/+10
* Fix focus box shadow of custom ranges * Put `:focus` selector right after `.custom-range` * Remove unnecessary `outline: none` * Fix box-shadow issues in IE/Edge * Better align * Fix thumb vertical positions in IE/Edge * Fix incorrect formula of thumb vertical positions in Webkit * Fix an incorrect comment * Fix incorrect box-shadow-width
2018-07-14Fix `custom-forms` heights and position (#25602)Andrew Luca1-3/+3
Now `.custom-control` will have height equal to `$font-size-base` Fix custom checkbox and radio top position (we can't subtract rem from unit) `$line-height-base - $custom-control-indicator-size` is not valid Because `$line-height-base` is a unitless variable and `$custom-control-indicator-size` is a unit (rem) variable
2018-07-08Restore feedback icons on validated form fieldsMark Otto1-2/+2
- Only applies to textual inputs and textareas with `.form-control` and selects with `.custom-select` - Wrap the feedback icons in a Sass variable option, $enable-validation-icons, so folks who theme can disable - Update docs to summarize styles, mention the icons, include a textarea demo, and add mention of the Sass variable option to the Theming section
2018-06-24Update box-shadows on .custom-select (#26754)Mark Otto1-1/+6
- Fixes #25656 where custom selects had the wrong focus shadow - Fixes #26668 where custom selects had no inset shadow (also closes #26572 which had the wrong form classes on the first example anyway)
2018-05-23Add disabled bg color to disabled custom fileysds1-0/+4
2018-05-23Custom forms transitionMartijn Cuppens1-0/+9
2018-04-29Simplify custom file inner height for generated browse buttonMark Otto1-1/+1