Martijn Cuppens
502b6c8ed6
Remove redundant brackets ( #27768 )
2018-12-14 17:54:44 +01:00
Florian Lacreuse
1dc42a3373
Add missing parameter to grid mixins. ( #27841 )
2018-12-14 18:30:12 +02:00
ysds
4a1090ac48
Ligthen/Darken Button focus shadow color
2018-11-04 20:58:00 +02:00
Vincent Langlet
793b83fda8
Avoid null value ( #27570 )
2018-11-04 08:18:56 +02:00
Patrick H. Lauke
8b20bce873
Add Sass variable for prefers-reduced-motion, add callout to affected components ( #27581 )
...
* Tweak the accessibility/reduced motion text
include mention of carousel slides, remove the (now inaccurate, as Firefox 63 includes it too) mention that support is limited to Safari/macOS
xref https://github.com/twbs/bootstrap/issues/27525
* Add new callout for reduced motion
* Add variable to control prefers-reduced-motion media query support
* Add callout about prefers-reduced-motion to all components currently using animation which are affected
2018-11-03 19:23:26 +01:00
Martijn Cuppens
1c91f48251
Variable darken percentage for emphasized links
2018-10-23 05:58:19 +03:00
Martijn Cuppens
dd539094ea
Custom select validation padding fix and additional custom select feedback icon variables
2018-10-23 05:43:59 +03:00
Martijn Cuppens
d0b7eb1111
Cleanup stylelint comments
2018-10-23 00:21:33 +03:00
Martijn Cuppens
00860f02d4
Disallow transition property (use mixin instead)
2018-10-21 22:46:20 +03:00
Johan Beckers
09aca3fb9a
Unitless breakpoints
...
If I want to customise the breakpoints using `em`, I get compatibility errors.
It is good practice to set breakpoints in `em` instead of `px` when users use browser scaling.
See https://zellwk.com/blog/media-query-units/#concluding-the-experiments for more information why someone would like to do this. Only Safari users can get annoyed: https://adamwathan.me/dont-use-em-for-media-queries/
In any case, using a unitless number at line 42 would be very convenient.
2018-10-21 21:31:28 +03:00
Martijn Cuppens
e2014e8ed7
Custom checkboxes and radios retheming ( #27064 )
2018-10-21 10:25:07 +03:00
Doug Puchalski
59f1802e98
Outline button variant hover mixin ( #27289 )
...
The outline button variant mixin should use the hover mixin, as does the non-outline version.
2018-10-21 10:09:08 +03:00
Ian Walter
871a51a548
Fix #26372 : disabled btn hover issue ( #27407 )
...
When gradients are enabled there is still a hover state on disabled
buttons since the hover rules apply to background-image and disabled
rules apply to background-color. This applies the logic already present
in dropdowns to buttons. This fix was originally proposed by @ysds.
2018-10-20 22:12:33 +03:00
Martijn Cuppens
7190c38e4c
Remove redundant width and height properties
2018-10-20 21:46:53 +03:00
Bastien
a86aef0ae0
table: Add border color relative to theme for accessibility ( #25755 )
2018-10-20 11:21:31 +03:00
Mark Otto
0bec1c8897
Add new variables for form feedback tooltips ( #26959 )
...
Fixes #26886
2018-09-18 21:27:02 -07:00
Martijn Cuppens
7a01f3c41b
Selector improvement ( #27219 )
2018-09-14 09:31:48 -03:00
Martijn Cuppens
3ef2db1e85
Move transparent background to .btn and remove background-image
2018-09-02 16:28:42 -07:00
Martijn Cuppens
19afb12b65
Set max-width to 100%
...
Fixes #27114
2018-09-02 16:26:53 -07:00
Martijn Cuppens
e3c0b3d3af
#27112 : fix border focus border color
2018-09-02 16:25:55 -07:00
ysds
d1de8737aa
Move CSS of hover underline to base from color variants
2018-09-02 16:25:21 -07:00
Martijn Cuppens
4def76c34e
#26975 : remove grid columns min height
2018-08-19 11:13:18 -07:00
Mark Otto
0b5a8d9c98
Merge branch 'form-validation-icons' into v4-dev
2018-07-29 14:18:09 -07:00
Mark Otto
4693672cff
Update validation tooltips to use tooltip vars ( #26887 )
...
Updates the properties and values for which we have existing variables to match our tooltips. Come 4.2, we'll create new tooltips for these.
2018-07-20 18:21:40 -05:00
Mark Otto
2d8422f5f5
fixes #26579
2018-07-14 21:10:45 -07:00
Andrew
abb4868626
correct spelling errors ( #26837 )
2018-07-09 17:59:22 -07:00
Mark Otto
5495a19b5a
disable to fix ci
2018-07-08 18:43:40 -07:00
Mark Otto
8d8d3ef82a
Restore feedback icons on validated form fields
...
- 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-07-08 15:31:18 -07:00
Mark Otto
793698a6a9
add validation styles for .form-control-file ( #26181 )
2018-04-23 21:54:40 -07:00
Alexander Rechsteiner
056e28d9e0
Suppress text-hide deprecation warning ( #26242 )
2018-04-16 09:45:07 +03:00
Varunram Ganesh
871e0838a4
[trivial] Correct typos ( #26297 )
2018-04-14 08:41:18 +01:00
XhmikosR
95cdfa2a65
Use https when possible.
2018-04-02 19:19:09 +03:00
Mark Otto
98763f1f85
Deprecate .text-hide ( #26173 )
2018-03-31 22:10:32 -07:00
Martijn Cuppens
12708d329a
Remove navbar align
2018-03-31 21:59:54 -07:00
Mike Rogers
2306f62bf1
Making use of prefers-reduced-motion
media query ( #25641 )
...
* Making use of `prefers-reduced-motion` media query
As discussed in #25249 - if a user (Who is using Safari / iOS) requests
reduced motion in their system settings, we should avoid transitions.
* Ignoring prefers reduced motion for CSS Linting
* Updating copy clarifying the reduce motion functionality in accessibility.md
2018-03-20 09:28:21 +00:00
Jacob Müller
27f553c965
Replace "loose" HEX values with their respective variables ( #25672 )
2018-03-12 19:19:37 +02:00
ysds
50220acde4
Fix caret alignment ( #25719 )
2018-03-12 18:51:00 +02:00
Adam Bowles
20c2d0fec6
Remove disabling of stylelint rule
...
This file no longer has intentional indentation errors
2018-02-24 12:22:38 -08:00
Mark Otto
99379f3843
make it a var
2018-02-19 18:15:44 -08:00
Mark Otto
c9f63c2eb8
Merge branch 'nav-divider-mixin' of https://github.com/ysds/bootstrap into ysds-nav-divider-mixin
2018-02-19 18:14:50 -08:00
Mark Otto
98111214c2
Update .sr-only
mixin and utility ( #25197 )
...
* Remove clip-path from .sr-only utility as it causes perf regressions in Chrome
* change snippet to example
2018-02-11 15:05:50 -08:00
Richard van Laak
38fc5cf7f7
Replace unicode character in _hover.scss ( #25503 )
2018-01-30 18:49:31 +02:00
ysds
d824bdf4d8
Allow to customize vertical margin of nav-divider
mixin
2018-01-22 09:54:06 +09:00
Mark Otto
a0936c326f
Outline button hover color ( #25339 )
2018-01-18 01:45:25 +02:00
ysds
b1a754863e
Use .list-group-item-action for list group item variant ( #25338 )
2018-01-18 01:36:57 +02:00
Casper Bornebusch
f4132dba07
Add order-last grid class ( #24915 )
...
* Add order-*-last grid class
* copy updates
2018-01-16 09:10:40 -08:00
Mark Otto
c8d9c0efcd
Merge branch 'form-check-input-validation' of https://github.com/supergibbs/bootstrap into supergibbs-form-check-input-validation
2018-01-15 21:39:27 -08:00
Patrick H. Lauke
1f490ec165
Consistently use :disabled
rather than [disabled]
selector ( #25317 )
...
Closes https://github.com/twbs/bootstrap/issues/25316
2018-01-15 20:51:01 +00:00
Patrick Yeo
ffcbdb5a1c
Mixin button-outline-variant
should retain active box shadow when focused
2018-01-13 19:19:33 -08:00
Wolfgang Goedel
588227f97f
Fixed color for disabled buttons ( #25167 )
2018-01-13 09:50:25 +02:00