Changing the default behaviour of `.is-fluid` container: removing media breakpoint from the rule, so the behaviour is consistent with described in docs:
```
This container is fluid: it will have a 32px gap on either side, on any viewport size.
```
* Added foreground (e.g., text) color to the footer
While setting up my own site, I was surprised to find that this wasn't an option!
* Added @if statement for footer color
* Added the option for footer-color
* Corrected indentation of lines for footer-color
* fieldset disabled styles
* Added disabled styles to button elements included inside a disabled fieldset
* Added comma, and fieldset element reset
* fieldset doesn't need display block
* #2091 remove css rule which causes has-addons to not work correctly
* #2091 remove css rule which causes has-addons to not work correctly
* #2091 Don't include compiled css
* #2091 Don't include compiled css
* Add secondary and tertiary font families to derived-variables.sass
* Add font family helpers to helpers.sass
* Add has-font-* to typography-helpers.html
* Correct number of font family helpers in typography-helpers.html
* Remove $family-tertiary, change has-font to is-family, and update docs.
* Extract input placeholder colors to variables
This makes it easier to override the color colour of the placeholder text in an input.
* Remove semicolon, because SASS.
This is SASS, not SCSS.
If there is only one child inside a field with addons, the current first and last child selectors remove any radius. Since a single control would be both a first and last child at the same time, it gets canceled out. This leverages the :only-child property to not apply this rule if there is only one control.
* Add list element feature
* Move list from elements to components
* Remove list.sass from elements
* Add is-active to list, Move list-item out of list, Change some things
* Change display: flex to block
* Change padding and border to shadow
* Change variable names and padding
* Fix undefined variable bug
* Change reference variable to local variable
When using a color modifier for a navbar (e.g., is-dark) the burger icon does not change the color. This commit adds the color modification for the navbar burger icon.
* Add a navbar-breakpoint variable (as yet unused)
* Replace hard-coded +touch, +desktop with $navbar-breakpoint variable
Using the fine +until and +from mixins, respectively.
* Remove unnecessary use of @extend inside mixins
* Revert changes to +unselectable, +delete, and +loader
* Move @extend selector styling to their related mixin.
* <!-- PLEASE READ THE FOLLOWING INSTRUCTIONS -->
<!-- DO NOT REBUILD THE CSS OUTPUT IN YOUR PR -->
<!-- Choose one of the following: -->
This is a bugfix
<!-- New feature? Update the CHANGELOG.md too, and eventually the Docs. -->
<!-- Improvement? Explain how and why. -->
<!-- Bugfix? Reference that issue as well. -->
If a form field is disabled and that form field uses has add-on element ( has-addons ), hover state is overlapping to add-on element.
### Proposed solution
<!-- Which specific problem does this PR solve and how? -->
<!-- If it fixes a particular Issue, add "Fixes #ISSUE_NUMBER" in your title -->
This solution excludes disabled form elements hover state which is used within has-addons fields wrapper.
Fixes#1992
### Tradeoffs
<!-- What are the drawbacks of this solution? Are there alternative ones? -->
<!-- Think of performance, build time, usability, complexity, coupling…) -->
No tradeoffs.
### Testing Done
I checkout out master and changed the lines.
* Disabled form elements hover state is overlapping, if control has add-ons elements
If a form field is disabled and that form field uses has add-on element ( has-addons ), hover state is overlapping to add-on element.
* Disabled form elements hover state is overlapping, if control has add-ons elements
If a form field is disabled and that form field uses has add-on element ( has-addons ), hover state is overlapping to add-on element.
* Add is-arrowless class for navbar items
It removes the arrow in the items of the Navbar.
Closes https://github.com/jgthms/bulma/issues/1833
* Add documentation for is-arrowless class
* Add is-arrowless to the changelog
Corrects the problem of the .has-icon-left / .has-icon-right fields floating out of the input area when a .help element is floated to the right of a preceding input
* Add Sass variable to control Navbar Burger color
Adds a sass variable to control the Navbar's burger color. Sets the default to match what the Item color is set to.
* Update order for bulma code styles
* Update Docs to reflect the improvement/bugifx.