aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/static/sass/bootstrap/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/dash/app/pal/static/sass/bootstrap/helpers')
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_clearfix.scss3
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_color-bg.scss10
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss12
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_position.scss36
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_ratio.scss26
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stacks.scss15
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stretched-link.scss15
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_text-truncation.scss7
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_visually-hidden.scss8
-rw-r--r--resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_vr.scss8
10 files changed, 0 insertions, 140 deletions
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_clearfix.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_clearfix.scss
deleted file mode 100644
index e92522a94d..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_clearfix.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-.clearfix {
- @include clearfix();
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_color-bg.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_color-bg.scss
deleted file mode 100644
index b5ce7709c1..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_color-bg.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-// stylelint-disable function-name-case
-
-// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
-@each $color, $value in $theme-colors {
- $color-rgb: to-rgb($value);
- .text-bg-#{$color} {
- color: color-contrast($value) if($enable-important-utilities, !important, null);
- background-color: RGBA($color-rgb, var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
- }
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss
deleted file mode 100644
index 1cb4182801..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_colored-links.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-@each $color, $value in $theme-colors {
- .link-#{$color} {
- color: $value !important; // stylelint-disable-line declaration-no-important
-
- @if $link-shade-percentage != 0 {
- &:hover,
- &:focus {
- color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)) !important; // stylelint-disable-line declaration-no-important
- }
- }
- }
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_position.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_position.scss
deleted file mode 100644
index 59103d9436..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_position.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-// Shorthand
-
-.fixed-top {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- z-index: $zindex-fixed;
-}
-
-.fixed-bottom {
- position: fixed;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: $zindex-fixed;
-}
-
-// Responsive sticky top and bottom
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- .sticky#{$infix}-top {
- position: sticky;
- top: 0;
- z-index: $zindex-sticky;
- }
-
- .sticky#{$infix}-bottom {
- position: sticky;
- bottom: 0;
- z-index: $zindex-sticky;
- }
- }
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_ratio.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_ratio.scss
deleted file mode 100644
index b6a7654c52..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_ratio.scss
+++ /dev/null
@@ -1,26 +0,0 @@
-// Credit: Nicolas Gallagher and SUIT CSS.
-
-.ratio {
- position: relative;
- width: 100%;
-
- &::before {
- display: block;
- padding-top: var(--#{$prefix}aspect-ratio);
- content: "";
- }
-
- > * {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
-}
-
-@each $key, $ratio in $aspect-ratios {
- .ratio-#{$key} {
- --#{$prefix}aspect-ratio: #{$ratio};
- }
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stacks.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stacks.scss
deleted file mode 100644
index 6cd237ae6d..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stacks.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-// scss-docs-start stacks
-.hstack {
- display: flex;
- flex-direction: row;
- align-items: center;
- align-self: stretch;
-}
-
-.vstack {
- display: flex;
- flex: 1 1 auto;
- flex-direction: column;
- align-self: stretch;
-}
-// scss-docs-end stacks
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stretched-link.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stretched-link.scss
deleted file mode 100644
index 71a1c755af..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_stretched-link.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-//
-// Stretched link
-//
-
-.stretched-link {
- &::#{$stretched-link-pseudo-element} {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: $stretched-link-z-index;
- content: "";
- }
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_text-truncation.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_text-truncation.scss
deleted file mode 100644
index 6421dac9a8..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_text-truncation.scss
+++ /dev/null
@@ -1,7 +0,0 @@
-//
-// Text truncation
-//
-
-.text-truncate {
- @include text-truncate();
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_visually-hidden.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_visually-hidden.scss
deleted file mode 100644
index 4760ff03d1..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_visually-hidden.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-// Visually hidden
-//
-
-.visually-hidden,
-.visually-hidden-focusable:not(:focus):not(:focus-within) {
- @include visually-hidden();
-}
diff --git a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_vr.scss b/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_vr.scss
deleted file mode 100644
index 9bca099536..0000000000
--- a/resources/tools/dash/app/pal/static/sass/bootstrap/helpers/_vr.scss
+++ /dev/null
@@ -1,8 +0,0 @@
-.vr {
- display: inline-block;
- align-self: stretch;
- width: 1px;
- min-height: 1em;
- background-color: currentcolor;
- opacity: $hr-opacity;
-}