jobdone-shared-files 0.0.1-beta.5 → 0.0.1-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/style/scss/Bootstrap/_accordion.scss +158 -0
- package/style/scss/Bootstrap/_alert.scss +68 -0
- package/style/scss/Bootstrap/_badge.scss +38 -0
- package/style/scss/Bootstrap/_breadcrumb.scss +40 -0
- package/style/scss/Bootstrap/_button-group.scss +142 -0
- package/style/scss/Bootstrap/_buttons.scss +207 -0
- package/style/scss/Bootstrap/_card.scss +238 -0
- package/style/scss/Bootstrap/_carousel.scss +238 -0
- package/style/scss/Bootstrap/_close.scss +61 -0
- package/style/scss/Bootstrap/_containers.scss +41 -0
- package/style/scss/Bootstrap/_dropdown.scss +250 -0
- package/style/scss/Bootstrap/_forms.scss +9 -0
- package/style/scss/Bootstrap/_grid.scss +33 -0
- package/style/scss/Bootstrap/_helpers.scss +10 -0
- package/style/scss/Bootstrap/_images.scss +42 -0
- package/style/scss/Bootstrap/_list-group.scss +204 -0
- package/style/scss/Bootstrap/_maps.scss +121 -0
- package/style/scss/Bootstrap/_modal.scss +237 -0
- package/style/scss/Bootstrap/_nav.scss +172 -0
- package/style/scss/Bootstrap/_navbar.scss +286 -0
- package/style/scss/Bootstrap/_offcanvas.scss +146 -0
- package/style/scss/Bootstrap/_pagination.scss +109 -0
- package/style/scss/Bootstrap/_placeholders.scss +51 -0
- package/style/scss/Bootstrap/_popover.scss +196 -0
- package/style/scss/Bootstrap/_progress.scss +68 -0
- package/style/scss/Bootstrap/_reboot.scss +610 -0
- package/style/scss/Bootstrap/_root.scss +195 -0
- package/style/scss/Bootstrap/_spinners.scss +85 -0
- package/style/scss/Bootstrap/_tables.scss +164 -0
- package/style/scss/Bootstrap/_toasts.scss +73 -0
- package/style/scss/Bootstrap/_tooltip.scss +120 -0
- package/style/scss/Bootstrap/_transitions.scss +27 -0
- package/style/scss/Bootstrap/_type.scss +106 -0
- package/style/scss/Bootstrap/_utilities.scss +748 -0
- package/style/scss/Bootstrap/_variables-dark.scss +70 -0
- package/style/scss/Bootstrap/_variables.scss +1703 -0
- package/style/scss/Bootstrap/bootstrap-grid.scss +66 -0
- package/style/scss/Bootstrap/bootstrap-reboot.scss +10 -0
- package/style/scss/Bootstrap/bootstrap-utilities.scss +19 -0
- package/style/scss/Bootstrap/bootstrap.scss +52 -0
- package/style/scss/Bootstrap/forms/_floating-labels.scss +90 -0
- package/style/scss/Bootstrap/forms/_form-check.scss +188 -0
- package/style/scss/Bootstrap/forms/_form-control.scss +201 -0
- package/style/scss/Bootstrap/forms/_form-range.scss +91 -0
- package/style/scss/Bootstrap/forms/_form-select.scss +81 -0
- package/style/scss/Bootstrap/forms/_form-text.scss +11 -0
- package/style/scss/Bootstrap/forms/_input-group.scss +132 -0
- package/style/scss/Bootstrap/forms/_labels.scss +36 -0
- package/style/scss/Bootstrap/forms/_validation.scss +12 -0
- package/style/scss/Bootstrap/helpers/_clearfix.scss +3 -0
- package/style/scss/Bootstrap/helpers/_color-bg.scss +10 -0
- package/style/scss/Bootstrap/helpers/_colored-links.scss +12 -0
- package/style/scss/Bootstrap/helpers/_position.scss +36 -0
- package/style/scss/Bootstrap/helpers/_ratio.scss +26 -0
- package/style/scss/Bootstrap/helpers/_stacks.scss +15 -0
- package/style/scss/Bootstrap/helpers/_stretched-link.scss +15 -0
- package/style/scss/Bootstrap/helpers/_text-truncation.scss +7 -0
- package/style/scss/Bootstrap/helpers/_visually-hidden.scss +8 -0
- package/style/scss/Bootstrap/helpers/_vr.scss +8 -0
- package/style/scss/Bootstrap/utilities/_api.scss +47 -0
- package/style/scss/Layout/LayoutBase.scss +939 -0
- package/style/scss/Layout/LayoutProject.scss +124 -0
- package/style/scss/Layout/LayoutSinglePage.scss +14 -0
- package/style/scss/Layout/LayoutTwoColumn.scss +56 -0
- package/style/scss/Settings/_custom-variables.scss +4 -1
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
// Dark color mode variables
|
|
2
|
+
//
|
|
3
|
+
// Custom variables for the `[data-bs-theme="dark"]` theme. Use this as a starting point for your own custom color modes by creating a new theme-specific file like `_variables-dark.scss` and adding the variables you need.
|
|
4
|
+
|
|
5
|
+
//
|
|
6
|
+
// Global colors
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
// scss-docs-start sass-dark-mode-vars
|
|
10
|
+
$primary-text-dark: $blue-300 !default;
|
|
11
|
+
$secondary-text-dark: $gray-300 !default;
|
|
12
|
+
$success-text-dark: $green-300 !default;
|
|
13
|
+
$info-text-dark: $cyan-300 !default;
|
|
14
|
+
$warning-text-dark: $yellow-300 !default;
|
|
15
|
+
$danger-text-dark: $red-300 !default;
|
|
16
|
+
$light-text-dark: $gray-100 !default;
|
|
17
|
+
$dark-text-dark: $gray-300 !default;
|
|
18
|
+
|
|
19
|
+
$primary-bg-subtle-dark: $blue-900 !default;
|
|
20
|
+
$secondary-bg-subtle-dark: $gray-900 !default;
|
|
21
|
+
$success-bg-subtle-dark: $green-900 !default;
|
|
22
|
+
$info-bg-subtle-dark: $cyan-900 !default;
|
|
23
|
+
$warning-bg-subtle-dark: $yellow-900 !default;
|
|
24
|
+
$danger-bg-subtle-dark: $red-900 !default;
|
|
25
|
+
$light-bg-subtle-dark: $gray-800 !default;
|
|
26
|
+
$dark-bg-subtle-dark: mix($gray-800, $black) !default;
|
|
27
|
+
|
|
28
|
+
$primary-border-subtle-dark: $blue-700 !default;
|
|
29
|
+
$secondary-border-subtle-dark: $gray-700 !default;
|
|
30
|
+
$success-border-subtle-dark: $green-700 !default;
|
|
31
|
+
$info-border-subtle-dark: $cyan-800 !default;
|
|
32
|
+
$warning-border-subtle-dark: $yellow-800 !default;
|
|
33
|
+
$danger-border-subtle-dark: $red-700 !default;
|
|
34
|
+
$light-border-subtle-dark: $gray-700 !default;
|
|
35
|
+
$dark-border-subtle-dark: $gray-800 !default;
|
|
36
|
+
|
|
37
|
+
$body-color-dark: $gray-500 !default;
|
|
38
|
+
$body-bg-dark: $gray-900 !default;
|
|
39
|
+
$body-emphasis-color-dark: $gray-100 !default;
|
|
40
|
+
$body-secondary-color-dark: rgba($body-color-dark, .75) !default;
|
|
41
|
+
$body-secondary-bg-dark: $gray-800 !default;
|
|
42
|
+
$body-tertiary-color-dark: rgba($body-color-dark, .5) !default;
|
|
43
|
+
$body-tertiary-bg-dark: mix($gray-800, $gray-900, 50%) !default;
|
|
44
|
+
$emphasis-color-dark: $white !default;
|
|
45
|
+
$border-color-dark: $gray-700 !default;
|
|
46
|
+
$border-color-translucent-dark: rgba($white, .15) !default;
|
|
47
|
+
$headings-color-dark: #fff !default;
|
|
48
|
+
$link-color-dark: $blue-300 !default;
|
|
49
|
+
$link-hover-color-dark: $blue-200 !default;
|
|
50
|
+
$code-color-dark: $pink-300 !default;
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
//
|
|
54
|
+
// Forms
|
|
55
|
+
//
|
|
56
|
+
|
|
57
|
+
$form-select-indicator-color-dark: $body-color-dark !default;
|
|
58
|
+
$form-select-indicator-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color-dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
|
|
59
|
+
|
|
60
|
+
$form-switch-color-dark: rgba($white, .25) !default;
|
|
61
|
+
$form-switch-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color-dark}'/></svg>") !default;
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
//
|
|
65
|
+
// Accordion
|
|
66
|
+
//
|
|
67
|
+
|
|
68
|
+
$accordion-button-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
|
|
69
|
+
$accordion-button-active-icon-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$primary-text-dark}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
|
|
70
|
+
// scss-docs-end sass-dark-mode-vars
|