@ch-post-common/common-web-frontend 0.0.1-security → 1.934.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @ch-post-common/common-web-frontend might be problematic. Click here for more details.
- package/components/accordion.scss +177 -0
- package/components/alert.scss +217 -0
- package/components/badge.scss +95 -0
- package/components/breadcrumb.scss +43 -0
- package/components/button.scss +168 -0
- package/components/card.scss +227 -0
- package/components/carousel.scss +161 -0
- package/components/custom-choice-control.scss +217 -0
- package/components/custom-range-input.scss +51 -0
- package/components/custom-select.scss +60 -0
- package/components/datatable.scss +147 -0
- package/components/datepicker.scss +220 -0
- package/components/detail-summary.scss +72 -0
- package/components/dropdown.scss +71 -0
- package/components/floating-label.scss +65 -0
- package/components/fonts.scss +35 -0
- package/components/form-feedback.scss +70 -0
- package/components/forms.scss +31 -0
- package/components/grid.scss +103 -0
- package/components/icons.scss +62 -0
- package/components/intranet-header/_icon.scss +6 -0
- package/components/intranet-header/_language-chooser.scss +40 -0
- package/components/intranet-header/_logo.scss +74 -0
- package/components/intranet-header/_nav-overflow.scss +56 -0
- package/components/intranet-header/_scaffolding.scss +96 -0
- package/components/intranet-header/_searchbox.scss +56 -0
- package/components/intranet-header/_settings.scss +23 -0
- package/components/intranet-header/_sidebar.scss +118 -0
- package/components/intranet-header/_top-navigation.scss +83 -0
- package/components/list-group.scss +156 -0
- package/components/modal.scss +87 -0
- package/components/pagination.scss +67 -0
- package/components/popover.scss +21 -0
- package/components/product-card.scss +74 -0
- package/components/progress.scss +15 -0
- package/components/reboot.scss +17 -0
- package/components/root.scss +10 -0
- package/components/sizing.scss +90 -0
- package/components/spinner.scss +58 -0
- package/components/stepper.scss +158 -0
- package/components/subnavigation.scss +131 -0
- package/components/switch.scss +132 -0
- package/components/tabs.scss +122 -0
- package/components/timepicker.scss +110 -0
- package/components/toast.scss +172 -0
- package/components/tooltip.scss +23 -0
- package/components/topic-teaser.scss +133 -0
- package/components/type.scss +106 -0
- package/components/utilities.scss +93 -0
- package/index.js +28 -0
- package/layouts/portal/_type.scss +83 -0
- package/lic/_bootstrap-license.scss +29 -0
- package/lic/_cwf-license.scss +7 -0
- package/mixins/_animation.scss +39 -0
- package/mixins/_button.scss +232 -0
- package/mixins/_forms.scss +188 -0
- package/mixins/_icons.scss +27 -0
- package/mixins/_scroll-shadows.scss +13 -0
- package/mixins/_size.scss +69 -0
- package/mixins/_type.scss +187 -0
- package/mixins/_utilities.scss +73 -0
- package/package.json +11 -3
- package/placeholders/_dropdown.scss +11 -0
- package/placeholders/_floating-label.scss +143 -0
- package/placeholders/_notifications.scss +160 -0
- package/placeholders/_text.scss +187 -0
- package/variables/_animation.scss +36 -0
- package/variables/_color.scss +240 -0
- package/variables/_commons.scss +57 -0
- package/variables/_icons.scss +2071 -0
- package/variables/_spacing.scss +180 -0
- package/variables/_type.scss +157 -0
- package/variables/components/_accordion.scss +22 -0
- package/variables/components/_alert.scss +50 -0
- package/variables/components/_badge.scss +29 -0
- package/variables/components/_breadcrumbs.scss +21 -0
- package/variables/components/_button.scss +152 -0
- package/variables/components/_card.scss +29 -0
- package/variables/components/_carousel.scss +27 -0
- package/variables/components/_close.scss +9 -0
- package/variables/components/_datatable.scss +49 -0
- package/variables/components/_datepicker.scss +14 -0
- package/variables/components/_dropdowns.scss +30 -0
- package/variables/components/_forms.scss +256 -0
- package/variables/components/_intranet-header.scss +9 -0
- package/variables/components/_modals.scss +68 -0
- package/variables/components/_nav.scss +82 -0
- package/variables/components/_pagination.scss +41 -0
- package/variables/components/_paragraph.scss +6 -0
- package/variables/components/_popovers.scss +28 -0
- package/variables/components/_progress-bars.scss +16 -0
- package/variables/components/_stepper.scss +26 -0
- package/variables/components/_subnavigation.scss +36 -0
- package/variables/components/_switch.scss +3 -0
- package/variables/components/_tables.scss +31 -0
- package/variables/components/_tooltips.scss +26 -0
- package/README.md +0 -5
@@ -0,0 +1,31 @@
|
|
1
|
+
@use "../color";
|
2
|
+
@use "../commons";
|
3
|
+
@use "../type";
|
4
|
+
|
5
|
+
// Tables
|
6
|
+
//
|
7
|
+
// Customizes the `.table` component with basic values, each used across all table variations.
|
8
|
+
|
9
|
+
$table-cell-padding: .75rem !default;
|
10
|
+
$table-cell-padding-sm: .3rem !default;
|
11
|
+
|
12
|
+
$table-bg: transparent !default;
|
13
|
+
$table-accent-bg: rgba(color.$black, .05) !default;
|
14
|
+
$table-hover-bg: rgba(color.$black, .075) !default;
|
15
|
+
$table-active-bg: $table-hover-bg !default;
|
16
|
+
|
17
|
+
$table-border-width: commons.$border-width !default;
|
18
|
+
$table-border-color: color.$white-alpha-40 !default;
|
19
|
+
|
20
|
+
$table-head-bg: color.$white-alpha-60 !default;
|
21
|
+
$table-head-color: color.$gray-400 !default;
|
22
|
+
|
23
|
+
$table-dark-bg: color.$gray-800 !default;
|
24
|
+
$table-dark-accent-bg: rgba(color.$white, .05) !default;
|
25
|
+
$table-dark-hover-bg: rgba(color.$white, .075) !default;
|
26
|
+
$table-dark-border-color: lighten(color.$gray-800, 7.5%) !default;
|
27
|
+
$table-dark-color: color.$body-bg !default;
|
28
|
+
|
29
|
+
$table-striped-order: odd !default;
|
30
|
+
|
31
|
+
$table-caption-color: type.$text-muted !default;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
@use "../type";
|
2
|
+
@use "../color";
|
3
|
+
|
4
|
+
// Tooltips
|
5
|
+
|
6
|
+
$tooltip-font-size: type.$font-size-rg !default;
|
7
|
+
$tooltip-max-width: 310px !default;
|
8
|
+
$tooltip-color: color.$black !default;
|
9
|
+
$tooltip-bg: color.$info !default;
|
10
|
+
$tooltip-border-radius: 0 !default;
|
11
|
+
$tooltip-opacity: .9 !default;
|
12
|
+
$tooltip-padding-y: .25rem !default;
|
13
|
+
$tooltip-padding-x: .5rem !default;
|
14
|
+
$tooltip-margin: 0 !default;
|
15
|
+
|
16
|
+
$tooltip-arrow-width: .8rem !default;
|
17
|
+
$tooltip-arrow-height: .4rem !default;
|
18
|
+
$tooltip-arrow-color: $tooltip-bg !default;
|
19
|
+
|
20
|
+
// Form tooltips must come after regular tooltips
|
21
|
+
$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
|
22
|
+
$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
|
23
|
+
$form-feedback-tooltip-font-size: $tooltip-font-size !default;
|
24
|
+
$form-feedback-tooltip-line-height: type.$line-height-base !default;
|
25
|
+
$form-feedback-tooltip-opacity: $tooltip-opacity !default;
|
26
|
+
$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
|
package/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# Security holding package
|
2
|
-
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
4
|
-
|
5
|
-
Please refer to www.npmjs.com/advisories?search=%40ch-post-common%2Fcommon-web-frontend for more information.
|