mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
cc814f4d76
I'm aware that currently cards are a lot simpler than buttons right now but this may change in future and it feels cleaner to be able to create new card styles without needing to know the internals of how they're implemented.
61 lines
1.3 KiB
SCSS
61 lines
1.3 KiB
SCSS
// Toggles
|
|
//
|
|
// Used in conjunction with global variables to enable certain theme features.
|
|
|
|
@mixin border-radius($radius: $border-radius) {
|
|
@if $enable-rounded {
|
|
border-radius: $radius;
|
|
}
|
|
}
|
|
|
|
@mixin box-shadow($shadow...) {
|
|
@if $enable-shadows {
|
|
box-shadow: $shadow;
|
|
}
|
|
}
|
|
|
|
@mixin transition($transition...) {
|
|
@if $enable-transitions {
|
|
transition: $transition;
|
|
}
|
|
}
|
|
|
|
// Utilities
|
|
@import "mixins/breakpoints";
|
|
@import "mixins/hover";
|
|
@import "mixins/image";
|
|
@import "mixins/label";
|
|
@import "mixins/reset-filter";
|
|
@import "mixins/resize";
|
|
@import "mixins/screen-reader";
|
|
@import "mixins/size";
|
|
@import "mixins/tab-focus";
|
|
@import "mixins/reset-text";
|
|
@import "mixins/text-emphasis";
|
|
@import "mixins/text-hide";
|
|
@import "mixins/text-truncate";
|
|
|
|
// // Components
|
|
@import "mixins/alert";
|
|
@import "mixins/buttons";
|
|
@import "mixins/cards";
|
|
@import "mixins/pagination";
|
|
@import "mixins/list-group";
|
|
@import "mixins/nav-divider";
|
|
@import "mixins/forms";
|
|
@import "mixins/progress";
|
|
@import "mixins/table-row";
|
|
|
|
// // Skins
|
|
@import "mixins/background-variant";
|
|
@import "mixins/border-radius";
|
|
@import "mixins/gradients";
|
|
|
|
// // Layout
|
|
@import "mixins/clearfix";
|
|
@import "mixins/center-block";
|
|
// @import "mixins/navbar-align";
|
|
@import "mixins/grid-framework";
|
|
@import "mixins/grid";
|
|
@import "mixins/pulls";
|