Martijn Cuppens
c24aaa6cbf
Fix dart Sass compatibility ( #29755 )
2019-11-28 14:59:49 +02:00
XhmikosR
593574d510
Release v4.4.0 ( #29735 )
2019-11-26 19:12:00 +02:00
Sam Duvall
eb1e1cfb49
Fixed input-height-sm and input-height-lg calculations ( #29653 )
2019-11-25 13:12:53 +02:00
Martijn Cuppens
590c1baeeb
progress: Fix IE overflow ( #29629 )
2019-11-25 13:12:53 +02:00
XhmikosR
f12ae8cea2
Sass: fix version in deprecation messages.
...
The final version will be bumped when the next version is released.
2019-11-25 13:12:53 +02:00
Gary PEGEOT
6b7ca1234b
Make check label cursor customizable ( #29633 )
2019-11-07 21:02:10 +02:00
Johann-S
dd96b832f7
backport #29516 : added animation when modal backdrop is static
2019-11-02 10:02:07 +02:00
Martijn Cuppens
f55566e36b
Add configurable button text wrapping ( #29554 )
2019-11-02 10:02:07 +02:00
Mark Otto
9be7aac831
Add make-col-auto mixin ( #29367 )
2019-11-02 10:02:07 +02:00
Martijn Cuppens
b0b8d3c982
Convert v4-dev calc() left overs to add/subtract functions
2019-11-01 20:22:37 +02:00
ysds
7bd70e54f2
Add add and subtract function
2019-11-01 20:22:37 +02:00
Christian Oliff
087d0ea1e1
The HTML5 Boilerplate Print CSS moved to a separate repo ( #29522 )
...
The HTML5 Boilerplate CSS has moved to a separate GitHub repo (h5bp/main.css) so the source link referenced here no longer works. This PR updates the link to the new correct location.
2019-10-15 09:40:01 +03:00
ysds
db19e8c706
Fix incorrect aspect ratio on IE11
2019-10-14 12:12:05 +03:00
Martijn Cuppens
510a446be6
Remove redundant properties
2019-10-14 12:12:05 +03:00
Martijn Cuppens
327bfca418
Fix top level ampersand ( #29518 )
...
Fixes dart sass compatibility.
2019-10-14 12:12:05 +03:00
Martijn Cuppens
6c9640c245
Backport #29445
...
Remove outline from select box in Firefox
2019-10-14 12:12:05 +03:00
astrahov
1260b4fb3f
Add variable for $breadcrumb-font-size
( #29467 )
2019-10-14 12:12:05 +03:00
Martijn Cuppens
d521e147f9
Fix border for single card in accordion ( #29453 )
2019-10-14 12:12:05 +03:00
Martijn Cuppens
f47243460e
Variable card height ( #29462 )
2019-10-14 12:12:05 +03:00
ysds
afc9cae32c
Allow override default col width
2019-09-26 18:37:07 +03:00
Mark Otto
d08567797f
Cleanup
...
- Rename and move the variable to variables file
- Move code to the grid file
- Use the mixin to generate our own classes
- Wrap in a grid classes enabled conditional
- Document the mixin
2019-09-26 18:37:07 +03:00
Mark Otto
9ed860ef24
First pass at .row-cols classes
...
Trying to find a new way to do responsive card decks while not locking ourselves into the cards themselves. My thinking here is we can easily control the column (.col) width by the parent, but I don't know how many we need (have 0-5 now) across each breakpoint. This works for cards so far, and I think could get us equal height, too.
2019-09-26 18:37:07 +03:00
XhmikosR
68ddcec057
theming.md: bring :root
up to par with Scss. ( #29323 )
...
Also, add a warning in _root.scss so that we don't miss it again.
2019-09-26 18:37:07 +03:00
Martijn Cuppens
5d39e36083
Don't bind validation to form controls
2019-09-26 18:37:07 +03:00
Martijn Cuppens
6381c63fb1
Add deprecation warning
2019-08-26 09:29:50 +02:00
Martijn Cuppens
9e1ef5623f
Deprecate nav-divider() mixin
2019-08-22 08:10:03 +02:00
Martijn Cuppens
9519b9e055
Enable wrapping for elements in .modal-footer ( #25103 )
2019-08-17 17:03:00 +03:00
Martijn Cuppens
94395af932
Restore cursor: pointer
for checkbox/radio buttons ( #29239 )
2019-08-17 17:03:00 +03:00
Martijn Cuppens
e538b9f23e
Fix Firefox rendering issue ( #29234 )
2019-08-17 17:03:00 +03:00
Shohei Yoshida
c387223720
Fix min-width of input-group flex items ( #29209 )
2019-08-17 17:03:00 +03:00
Mark Otto
81fa902454
Responsive containers (follow-up to #29095 ) ( #29118 )
...
* Follow-up to #29095
This PR fixes the responsive containers that were added in #29095 , originally stubbed out in #25631 . Apologies to @browner12 for getting that wrong.
Fixes #25631 .
* update navbar as well because we cannot reset all containers uniformly
* Update navbars example to include container-xl example to ensure containers match
* rewrite responsive containers docs, add table of max-widths
* Update container docs
- Move table up to the intro
- Remove the container example because it's actually hella confusing
- Update and link to grid example as a demo instead
2019-08-17 17:03:00 +03:00
Martijn Cuppens
e5a3ee5e9c
Extend .container-fluid
( #29106 )
2019-08-17 17:03:00 +03:00
Mark Otto
3695c3a1fb
fix broken classes
2019-08-17 17:03:00 +03:00
Mark Otto
2892675f65
v4/v5: Add responsive containers ( #29095 )
...
* create responsive containers
provide more flexibility and allow the user to determine when containers switch from fluid to fixed width.
* fix the base container code
this commit fixes the non-media portion of the generated CSS. I learned about the `@extends` directive and was able to put it to good use.
I create a new temporary map that contains all the main `$container-max-widths` and join it to our 2 special cases of 'xs' and 'fluid'. Then we loop through that and, with the appropriate infixes, extend our placeholder
* formatting for style
forgot to run my tests before the last push, i think these are better.
* finish incomplete comment
* fix the responsive containers
using the `@extend` directive I was able to clean up this code
* fix responsive containers in the navbar
mostly we just look through all of our breakpoints so we can include all of the responsive container classes in the tweaks we have to do for the navbar (redeclaring flex properties, don't double up on padding, etc)
* Simplify container extends
* Simplify navbar containers
* Rearrange, add comments, ensure everything is nested in $enable-grid-classes
* Reduce new CSS by using attribute selector
We avoid using `@extend` whenever possible, and this is more readable
* Update _grid.scss
* Update _navbar.scss
* Add docs for responsive containers, redesign the container layout page
* Add to the Grid example
2019-08-17 17:03:00 +03:00
XhmikosR
fb6266a8df
carousel: fix transition properties order. ( #29173 )
2019-07-31 11:37:39 +03:00
Shohei Yoshida
f6b00cda24
Fix reboot for placeholder links ( #29164 )
2019-07-31 11:37:39 +03:00
Patrick H. Lauke
d5266dc995
Fix reboot for placeholder links ( #29162 )
...
Backport of #29140
2019-07-31 11:37:39 +03:00
Chandan Deep
397359154c
Change property from background to background-image ( #29149 )
...
For Gradient, We have to use the background-image instead of only background.
2019-07-31 11:37:39 +03:00
Martijn Cuppens
8f95b26d65
Haha, floats. It's 2019 ( #29147 )
2019-07-31 11:37:39 +03:00
Martijn Cuppens
48e86c5796
Apply at-mixin-argumentless-call-parentheses: always
stylelint rule for v4 mixins
2019-07-31 11:37:39 +03:00
Martijn Cuppens
d59aa2c702
Apply at-mixin-argumentless-call-parentheses: always
stylelint rule
2019-07-31 11:37:39 +03:00
Martijn Cuppens
a2a38058af
.custom-select
: combine properties.
2019-07-30 15:43:38 +03:00
XhmikosR
41fd25abe1
Optimize the inline SVGs.
2019-07-30 15:43:38 +03:00
Martijn Cuppens
c26e68427c
Backport "Use escape-svg() function ( #29077 )"
...
Adapted for v4-dev.
2019-07-30 15:43:38 +03:00
M. Wacker
921f17a650
Fix breaking layout breaking error in code ( #28328 )
...
Change `word-break: break-word;` to `word-wrap: break-word;`
2019-07-17 14:48:26 +03:00
Martijn Cuppens
e61d609bc0
Ignore the bg-variant deprecation warning in our files.
2019-07-10 11:03:54 +03:00
Martijn Cuppens
23d7dd6dbd
Remove redundant radius properties ( #28956 )
2019-07-10 11:03:54 +03:00
Sergey Kovalenko
22f6b373f9
Remove negative margins for group list items ( #28940 )
...
To fix RGBA borders overlapping issue.
2019-07-10 11:03:54 +03:00
Martijn Cuppens
c121778b49
Change invalid icon from cross to exclamation mark ( #28944 )
...
The cross icon was confusing since some browsers use it as a reset button.
2019-07-10 11:03:54 +03:00
Martijn Cuppens
de163b337c
Deprecate bg-variant()
mixin ( #28938 )
2019-06-20 21:30:09 +02:00
Shohei Yoshida
b165aff2f7
Fix position of browser default validation message ( #28852 )
2019-06-18 15:02:58 +03:00
Morteza Ziyae
1bdeab8159
Fix width and height of data svg images in IE10 ( #28883 )
2019-06-18 15:02:58 +03:00
Shohei Yoshida
911b72cf78
Workaround for the image size bug in IE ( #28855 )
2019-06-18 15:02:58 +03:00
Shohei Yoshida
a84a05a56a
Clean input group flex basis ( #28785 )
2019-05-30 11:58:34 +03:00
Shohei Yoshida
9d075734cb
Calc modal header/footer border radius according to the border width ( #28775 )
2019-05-30 11:58:34 +03:00
Aditya Shankar
9508c4c11b
Correct grammar in modal.scss ( #28829 )
2019-05-30 11:58:34 +03:00
Sezer Esen
01a71532d9
Fix background position ( #28814 )
2019-05-30 11:58:34 +03:00
Shohei Yoshida
fe777292b5
Fix z-index according to our z-index rule ( #28784 )
...
https://getbootstrap.com/docs/4.3/extend/approach/#z-index-scales
2019-05-30 11:58:34 +03:00
Shohei Yoshida
4251c23f71
Reset input padding for cross browser consistency ( #28208 )
2019-05-09 21:30:32 +03:00
zhangbao
fc745a3ec8
Consistency modification ( #28750 )
2019-05-09 21:30:32 +03:00
Shohei Yoshida
aa7b055064
Fix incorrect variable for popover border radius ( #28733 )
...
* Use $popover-border-radius
* Move and rename the local $offset-border-width to the global variable
2019-05-09 21:30:32 +03:00
Christian Oliff
add38103ad
Fix broken link to css-discuss.incutio.com/wiki/Printing_Tables ( #28637 )
...
Instead now pointing to the most recent Wayback Machine archive copy.
2019-05-09 21:30:32 +03:00
Martijn Cuppens
5c65ea6a38
Scrollbar fix ( #28417 )
2019-05-09 21:30:32 +03:00
Mark Otto
605704d7f5
Prevent form validation mixin from generating invalid CSS ( #28447 )
...
Extrapolates the previously used selector into a new mixin that only generates valid CSS by creating psuedo-classes for `valid` and `invalid`, and nothing else.
Fixes #28380 .
2019-04-29 17:41:28 +03:00
Shohei Yoshida
68932330f0
Sync plain text font-size with $input-font-size
( #28464 )
2019-04-29 17:41:28 +03:00
Martijn Cuppens
78f47133e9
Remove redundant slashes ( #28677 )
2019-04-29 17:41:28 +03:00
Shohei Yoshida
10f91729aa
Add $custom-control-label-color
variable ( #28633 )
2019-04-29 17:41:28 +03:00
Matěj Kříž
41eea9edc4
Fix buttons :focus state styles ( #27890 )
...
* Fix buttons :focus state styles
Buttons :hover and :focus state shares styles.
Buttons :focus text color on 'a.btn' is now consistent with others '.btn'.
* `:focus` styles should be in sync with `.focus`.
So shared styles with hover were copy to focus definition. Rather then using
`hover-focus` mixin which do not contain `.focus`.
2019-04-29 17:41:28 +03:00
Loïc Goyet
1c7cb61072
Remove scss variable defined twice ( #28567 )
2019-04-29 17:41:28 +03:00
Patrick H. Lauke
3ab0441667
Check prefers-reduced-motion variable before adding reduced motion media query for animated progress bars ( #28530 )
2019-03-27 20:57:28 +02:00
Shohei Yoshida
60f31b32f8
Workaround for MS edge bug ( #28275 )
2019-03-27 20:57:28 +02:00
Patrick H. Lauke
86a97d197e
Remove indiscriminate outline suppression for tabindex="-1" elements ( #28437 )
...
instead, only apply outline suppression if the browser wouldn't normally apply the focus outline, using the (currently experimental) `:focus-visible` pseudo-class
2019-03-12 15:16:49 +02:00
Shohei Yoshida
87527d8149
Add <ol> to nav's comment ( #28426 )
2019-03-08 00:30:25 +02:00
mspae
be8ef5f655
disable assert assending check if the previous unit was a percentual value ( #28400 )
2019-03-08 00:30:25 +02:00
Martijn Cuppens
ba641ae507
Fix border if only one card ( #28365 )
2019-03-08 00:29:21 +02:00
Martijn Cuppens
fad6dda456
Deprecate form-control-focus mixin ( #28262 )
2019-03-01 17:25:58 +02:00
XhmikosR
8fa0d30101
Release v4.3.1. ( #28252 )
2019-02-13 18:01:40 +02:00
Martijn Cuppens
bf2515ae68
Update RFS to v8.0.1 ( #28245 )
...
Remove warning if RFS is included more than once.
2019-02-12 22:49:12 +01:00
Mark Otto
1ded0d6a4e
Release v4.3.0 ( #28228 )
...
* Prep for v4.3.0
* More updates for v4.3.0.
* rerun to build docs source map
2019-02-11 11:15:34 -08:00
Martijn Cuppens
51375abca5
Responsive font size implementation ( #23816 )
2019-02-07 23:32:05 +01:00
Shohei Yoshida
d250567ce0
Remove -ms-autohiding-scrollbar
to prevent overlapping the table content ( #28153 )
2019-02-07 19:52:23 +02:00
Martijn Cuppens
8b41cb1368
Optional btn & input font sizes ( #28068 )
2019-02-07 19:47:24 +02:00
Martijn Cuppens
2ee8ecedf4
Deprecate img-retina()
mixin ( #28072 )
2019-02-07 19:33:57 +02:00
Martijn Cuppens
bcfb7ed159
Deprecate invisible()
mixin ( #28066 )
2019-02-07 19:19:00 +02:00
Zachary Welch
b647dd0565
Add map-name param to _assert-starts-at-zero ( #24986 )
...
* Add map-name param to _assert-starts-at-zero
* Set default value for backwards compatibility
2019-02-07 10:19:38 +01:00
João Lucas
eb1313d213
Create border-top-left-radius
and border-bottom-right-radius
mixins ( #28100 )
...
* Create border-top-left-radius mixin
* Create border-bottom-right-radius mixin
2019-02-07 09:02:05 +01:00
Martijn Cuppens
311d6dab68
Deprecate size mixin ( #28067 )
2019-02-07 08:21:47 +01:00
Bardi Harborow
b5fb4f7d6b
Add text-decoration to .btn-link. ( #28169 )
2019-02-06 22:33:03 +01:00
Martijn Cuppens
58470c0ac5
Fix text break in Firefox ( #28063 )
2019-02-06 12:38:13 +02:00
Martijn Cuppens
d4e782efab
Fix dropdown radius if $dropdown-padding-y
is not 0 ( #28127 )
2019-02-03 23:07:16 +02:00
Shohei Yoshida
e65dccfc95
Fix custom select caret issue on IE ( #28112 )
2019-01-25 21:09:21 +01:00
Shohei Yoshida
0f8f84329b
Fix validated custom select bg color ( #28119 )
2019-01-25 20:44:52 +01:00
Martijn Cuppens
6466a0461a
Deprecate float mixins ( #28104 )
2019-01-24 22:51:36 +02:00
Martijn Cuppens
2749bf34de
Add !important
to .text-monospace
utility class ( #28064 )
2019-01-24 22:42:42 +02:00
Martijn Cuppens
dfba588d0d
Add default value for $ignore-warning
( #28103 )
2019-01-23 05:59:15 +02:00
Martijn Cuppens
5c56e9adff
Add deprecate()
mixin ( #28092 )
2019-01-22 20:55:23 +01:00
Martijn Cuppens
59d040fcbb
Make component colors configurable ( #28035 )
2019-01-20 23:38:29 +02:00
Shohei Yoshida
de0bb1e052
Scrollable modal ( #27769 )
2019-01-20 23:28:16 +02:00
Martijn Cuppens
41f85b64bf
Add ref to reason why min-width: 0;
is added ( #28061 )
2019-01-20 23:23:05 +02:00
Martijn Cuppens
f1f740be09
Make progress animation respect $enable-transitions
and prefers-reduced-motion
media query
...
Make progress animation respect `$enable-transitions` and `prefers-reduced-motion` media query
2019-01-15 00:51:11 +00:00
Martijn Cuppens
3d350c3b34
Remove map-merge ( #28033 )
2019-01-13 16:35:00 -08:00
Martijn Cuppens
d546cb8374
Cleanup popover arrows ( #28008 )
2019-01-13 16:29:37 -08:00
Martijn Cuppens
70f50f3079
Sync dropdown font size to base font size
2019-01-13 16:27:40 -08:00
Martijn Cuppens
e57cdee6bc
Sync dropdown font size with btn font size
2019-01-13 16:27:40 -08:00
Martijn Cuppens
fd98e77cac
Remove background from nested tables
2019-01-13 16:26:56 -08:00
Martijn Cuppens
d09bd2e629
Fix background size y
2019-01-13 16:24:01 -08:00
Martijn Cuppens
e2ac792bc7
Minify background property
2019-01-13 16:24:01 -08:00
Martijn Cuppens
50492b8840
Combine background properties into one
2019-01-13 16:23:32 -08:00
Martijn Cuppens
8db577bd51
Prevent useless property rendering
2019-01-13 16:22:25 -08:00
Martijn Cuppens
4b839b1c87
Don't render a background by default
2019-01-13 16:21:57 -08:00
Martijn Cuppens
5adcfe97f0
Prevent rendering of color property by default
2019-01-13 16:21:16 -08:00
Martijn Cuppens
cd4964f345
Change comment heading title to Typography
( #28032 )
2019-01-14 01:59:51 +02:00
Martijn Cuppens
b3226c1ccc
Align toast variables ( #28041 )
2019-01-14 01:51:53 +02:00
Justin
8f5abf0ab0
Add new rounded sizes classes ( #28011 )
...
* update border-radius mixins
Add $enable-rounded as a keyword argument to border-raidus mixins
* Update rounded classes
- use border-radius mixins to repleace !important
- use true for $enable-rounded for rounded classes
- Add `.rounded-sm` and `.rounded-sm` #27934
* update borders docs
* Revert touch of dist files
* Revert change of border-radius mixins
* use !important in border-radius utilies classes
* update border radius classes keep only rounded-lg and rounded-sm
2019-01-13 11:49:25 -08:00
Martijn Cuppens
fd4d426e51
Change default custom select styles ( #28027 )
2019-01-13 09:52:46 +02:00
Martijn Cuppens
e077ddbc6c
Prevent wrapping if caret is included ( #28029 )
2019-01-13 09:43:52 +02:00
Mark Otto
deea117293
Add form-validation-states Sass map ( #27999 )
2019-01-11 21:16:50 +02:00
Miha Eržen
fd9dc1a0ca
Fix input-height-inner wrongly calculated ( #28018 )
...
In a scenario where `$input-line-height` or `$input-font-size` are different than `$input-btn-line-height` and `$input-btn-font-size` the final `$input-height-inner` was wrongly calculated.
2019-01-11 14:22:14 +02:00
XhmikosR
f11f56558b
Bump copyright year to 2019.
2019-01-08 21:23:50 +02:00
wojtask9
46f34fd131
remove redundant loop from list-group-horizontal ( #28005 )
2019-01-08 20:18:36 +02:00
wojtask9
5dcf7cd3b7
box-shadow mixin fix ( #28004 )
2019-01-08 19:42:28 +02:00
Shohei Yoshida
dc436427e9
Move z-index
to .list-group-item-action and remove redundant text-decoration: none
( #27996 )
2019-01-08 06:59:49 +02:00
Martijn Cuppens
48fe2c23d3
Space fixes ( #27997 )
2019-01-08 06:46:29 +02:00
Martijn Cuppens
68062cfe60
Allow configuration of caret spacing and vertical alignment ( #27994 )
2019-01-07 18:28:21 +02:00
Martijn Cuppens
2b96e9adf1
remove screen from media query ( #27985 )
2019-01-07 18:18:43 +02:00
Shohei Yoshida
92cc5a70d3
Fix incorrect responsive alignment of dropdown menu ( #27873 )
2019-01-07 03:12:51 +02:00
Vishnuprasad Venugopal
ea9129c8ae
fix border issue for nested card inside accordions ( #27881 )
2019-01-07 03:06:37 +02:00
Mark Otto
e6b1eefc73
Add horizontal list group modifier ( #27970 )
...
Alternate take to #27683 that builds the modifier class based on min-width, such that list groups are stacked until the class's breakpoint is reached. This is less verbose, matches our primary responsive approach, and prevents an extra class. Unfortunately, I believe supporting flush list groups is too much code here, so I've skipped that and made a note in the docs.
Also added examples generate from our breakpoints data file with a protip for how to do equal width items.
2019-01-07 03:01:36 +02:00
wojtask9
42bed436e8
take account 'none' for box-shadow ( #27972 )
2019-01-07 02:52:39 +02:00
Martijn Cuppens
cbc8a7273a
Sync custom select focus state with custom control focus state
2019-01-07 02:48:04 +02:00
XhmikosR
f21b5f9e98
Remove unneeded stylelint disables.
2019-01-05 20:50:07 +02:00
Martijn Cuppens
e1b990fb90
Move hand cursor for buttons to reboot
2019-01-04 11:53:32 +02:00
Martijn Cuppens
83dc45b31b
Prevent select word wrap in Safari ( #27932 )
2019-01-04 11:40:10 +02:00
Florian Lacreuse
c71b291cd9
Remove unnecessary brackets for consistency ( #27966 )
2019-01-03 20:59:18 +02:00
Martijn Cuppens
c0dfda964f
Configurable display utility classes ( #27917 )
2018-12-29 04:54:58 +02:00
Martijn Cuppens
952374654c
Fix custom select font sizes ( #27929 )
2018-12-29 04:44:35 +02:00
Martijn Cuppens
8eef162c44
Match input font size for .input-group-text
( #27941 )
2018-12-28 23:18:10 +02:00
XhmikosR
ee09d96628
reboot: Fix comment ( #27937 )
2018-12-28 00:48:51 +02:00
Martijn Cuppens
8bf823e22d
Fix form-feedback-icon-invalid color ( #27935 )
2018-12-27 23:05:29 +02:00
XhmikosR
3c88ed7069
Fix 4:3 embed ( #27910 )
2018-12-23 13:58:58 +02:00
Martijn Cuppens
81e35985b8
Simplify card group css ( #27901 )
2018-12-23 09:19:07 +02:00
Martijn Cuppens
39b14c9806
Blacklist border-radius property (use mixin instead) ( #27900 )
2018-12-23 09:11:11 +02:00
XhmikosR
74a2d93517
Merge branch 'v4-dev' into stretched-link
2018-12-22 18:32:28 +02:00
Mark Otto
15be9d3277
Add variable for dropdown-divider-margin-y ( #27857 )
...
* Add variable for dropdown-divider-margin-y
For us to reassign the nav-divider-margin-y variable here, we have to rearrange some of the variables.
Fixes #26660 .
* bump bundlesize
2018-12-21 20:59:40 -08:00
Mark Otto
d51b408d0f
Merge branch 'text-break-util' into v4-dev
2018-12-21 15:35:55 -08:00
Mark Otto
fca7531897
Merge branch 'table-dark-colors' into v4-dev
2018-12-21 14:49:11 -08:00
Mark Otto
cdcfd3b1e8
Merge branch 'text-break-util' into v4-dev
2018-12-21 14:47:52 -08:00
ysds
27d691c64c
Prevent unnecessary css when $emphasized-link-hover-darken-percentage is 0 or 0%
2018-12-21 14:46:20 -08:00
Martijn Cuppens
20f49143fc
Sync modal header & footer border colors with $border-color
2018-12-21 13:56:44 -08:00
Martijn Cuppens
8bc118acce
Sync $table-border-color
with $border-color
2018-12-21 13:56:11 -08:00