forked from moodlehq/moodleapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MOBILE-4598 styles: Import Bootstrap 5 bridge styles from LMS
- Loading branch information
1 parent
d63c06e
commit 474b486
Showing
8 changed files
with
198 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.close { | ||
float: right; | ||
@include font-size($close-font-size); | ||
font-weight: $close-font-weight; | ||
line-height: 1; | ||
color: $close-color; | ||
text-shadow: $close-text-shadow; | ||
opacity: .5; | ||
|
||
// Override <a>'s hover style | ||
@include hover() { | ||
color: $close-color; | ||
text-decoration: none; | ||
} | ||
|
||
&:not(:disabled):not(.disabled) { | ||
@include hover-focus() { | ||
opacity: .75; | ||
} | ||
} | ||
} | ||
|
||
// Additional properties for button version | ||
// iOS requires the button element instead of an anchor tag. | ||
// If you want the anchor version, it requires `href="#"`. | ||
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile | ||
|
||
// stylelint-disable-next-line selector-no-qualifying-type | ||
button.close { | ||
padding: 0; | ||
background-color: transparent; | ||
border: 0; | ||
} | ||
|
||
// Future-proof disabling of clicks on `<a>` elements | ||
|
||
// stylelint-disable-next-line selector-no-qualifying-type | ||
a.close.disabled { | ||
pointer-events: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
@import "utilities/align"; | ||
@import "utilities/borders"; | ||
@import "utilities/flex"; | ||
@import "utilities/float"; | ||
@import "utilities/spacing"; | ||
@import "utilities/text"; | ||
@import "utilities/visibility"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/** | ||
* This file should be in sync with: https://github.com/moodle/moodle/blob/main/theme/boost/scss/moodle/bs5-bridge.scss | ||
* This is partially done as part of https://tracker.moodle.org/browse/MDL-71979. | ||
*/ | ||
|
||
/* Bootstrap 5 bridge classes */ | ||
|
||
|
||
/* | ||
* These function used to bridge the gap between Bootstrap 4 and Bootstrap 5 and | ||
* and will be located in __functions.scss in Bootstrap 5 | ||
*/ | ||
|
||
// Tint a color: mix a color with white based on the provided weight. | ||
@function tint-color($color, $weight) { | ||
@return mix(white, $color, $weight); | ||
} | ||
|
||
// Shade a color: mix a color with black. | ||
// This function darkens a given color with black based on the provided weight. | ||
@function shade-color($color, $weight) { | ||
@return mix(black, $color, $weight); | ||
} | ||
|
||
// Shade the color if the weight is positive, else tint it. | ||
@function shift-color($color, $weight) { | ||
@return if($weight > 0, shade-color($color, $weight), tint-color($color, -$weight)); | ||
} | ||
|
||
/* These classes are used to bridge the gap between Bootstrap 4 and Bootstrap 5. */ | ||
/* This file should be removed as part of MDL-75669. */ | ||
.g-0 { | ||
@extend .no-gutters; | ||
} | ||
|
||
.btn-close { | ||
@extend .close; | ||
} | ||
|
||
// Generate all spacer classes for all breakpoints for directions start and end. | ||
// ps-1 > pl-1, pe-1 > pr-1, me-sm-1 > ml-sm-1, ... | ||
@each $breakpoint in map-keys($grid-breakpoints) { | ||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints); | ||
@each $prop, $abbrev in (margin: m, padding: p) { | ||
@each $size, $length in $spacers { | ||
.#{$abbrev}s#{$infix}-#{$size} { | ||
@extend .#{$abbrev}l#{$infix}-#{$size}; | ||
} | ||
.#{$abbrev}e#{$infix}-#{$size} { | ||
@extend .#{$abbrev}r#{$infix}-#{$size}; | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Generate all margin auto classes for all breakpoints for directions start and end. | ||
// ps-auto > pl-auto, pe-auto > pr-auto, me-sm-auto > ml-sm-auto, ... | ||
@each $breakpoint in map-keys($grid-breakpoints) { | ||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints); | ||
.ms#{$infix}-auto { | ||
@extend .ml#{$infix}-auto; | ||
} | ||
.me#{$infix}-auto { | ||
@extend .mr#{$infix}-auto; | ||
} | ||
} | ||
|
||
// Generate all float classes for all breakpoints for directions start and end. | ||
// float-start > float-left, float-sm-end > float-sm-right, ... | ||
@each $breakpoint in map-keys($grid-breakpoints) { | ||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints); | ||
.float#{$infix}-start { | ||
@extend .float#{$infix}-left; | ||
} | ||
.float#{$infix}-end { | ||
@extend .float#{$infix}-right; | ||
} | ||
} | ||
|
||
// Generate all text classes for all breakpoints for directions start and end. | ||
// text-start > text-left, text-sm-end > text-sm-right, ... | ||
@each $breakpoint in map-keys($grid-breakpoints) { | ||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints); | ||
.text#{$infix}-start { | ||
@extend .text#{$infix}-left; | ||
} | ||
.text#{$infix}-end { | ||
@extend .text#{$infix}-right; | ||
} | ||
} | ||
|
||
.border-start { | ||
@extend .border-left; | ||
} | ||
.border-end { | ||
@extend .border-right; | ||
} | ||
.border-start-0 { | ||
@extend .border-left-0; | ||
} | ||
.border-end-0 { | ||
@extend .border-right-0; | ||
} | ||
.rounded-start { | ||
@extend .rounded-left; | ||
} | ||
.rounded-end { | ||
@extend .rounded-right; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// stylelint-disable declaration-no-important | ||
|
||
@each $breakpoint in map-keys($grid-breakpoints) { | ||
@include media-breakpoint-up($breakpoint) { | ||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints); | ||
|
||
.float#{$infix}-left { float: left !important; } | ||
.float#{$infix}-right { float: right !important; } | ||
.float#{$infix}-none { float: none !important; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters