sdga-ui 1.0.2 → 1.0.4
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/.editorconfig +23 -23
- package/.github/workflows/deploy.yml +57 -0
- package/.github/workflows/publish.yml +36 -33
- package/.prettierignore +73 -73
- package/.prettierrc +17 -17
- package/LICENSE +21 -21
- package/README.md +175 -167
- package/css/dga-ui.css +60 -30
- package/css/dga-ui.css.map +1 -1
- package/demo-angular/.editorconfig +17 -0
- package/demo-angular/.vscode/extensions.json +4 -0
- package/demo-angular/.vscode/launch.json +20 -0
- package/demo-angular/.vscode/tasks.json +42 -0
- package/demo-angular/README.md +59 -0
- package/demo-angular/angular.json +90 -0
- package/demo-angular/package-lock.json +10459 -0
- package/demo-angular/package.json +50 -0
- package/demo-angular/public/.nojekyll +0 -0
- package/demo-angular/public/favicon.ico +0 -0
- package/demo-angular/public/i18n/ar.json +239 -0
- package/demo-angular/public/i18n/en.json +239 -0
- package/demo-angular/src/app/app.config.ts +20 -0
- package/demo-angular/src/app/app.html +52 -0
- package/demo-angular/src/app/app.routes.ts +45 -0
- package/demo-angular/src/app/app.scss +430 -0
- package/demo-angular/src/app/app.spec.ts +23 -0
- package/demo-angular/src/app/app.ts +88 -0
- package/demo-angular/src/app/shared/code-example/code-example.component.html +30 -0
- package/demo-angular/src/app/shared/code-example/code-example.component.scss +183 -0
- package/demo-angular/src/app/shared/code-example/code-example.component.ts +78 -0
- package/demo-angular/src/app/views/alerts/alerts.component.html +155 -0
- package/demo-angular/src/app/views/alerts/alerts.component.scss +3 -0
- package/demo-angular/src/app/views/alerts/alerts.component.ts +134 -0
- package/demo-angular/src/app/views/bootstrap/bootstrap.component.html +14 -0
- package/demo-angular/src/app/views/bootstrap/bootstrap.component.scss +91 -0
- package/demo-angular/src/app/views/bootstrap/bootstrap.component.ts +23 -0
- package/demo-angular/src/app/views/buttons/buttons.component.html +289 -0
- package/demo-angular/src/app/views/buttons/buttons.component.scss +14 -0
- package/demo-angular/src/app/views/buttons/buttons.component.ts +155 -0
- package/demo-angular/src/app/views/cards/cards.component.html +156 -0
- package/demo-angular/src/app/views/cards/cards.component.html.backup +156 -0
- package/demo-angular/src/app/views/cards/cards.component.scss +11 -0
- package/demo-angular/src/app/views/cards/cards.component.ts +194 -0
- package/demo-angular/src/app/views/forms/forms.component.html +347 -0
- package/demo-angular/src/app/views/forms/forms.component.scss +3 -0
- package/demo-angular/src/app/views/forms/forms.component.ts +222 -0
- package/demo-angular/src/app/views/home/home.component.html +38 -0
- package/demo-angular/src/app/views/home/home.component.scss +35 -0
- package/demo-angular/src/app/views/home/home.component.ts +12 -0
- package/demo-angular/src/app/views/links/links.component.html +140 -0
- package/demo-angular/src/app/views/links/links.component.scss +60 -0
- package/demo-angular/src/app/views/links/links.component.ts +123 -0
- package/demo-angular/src/app/views/tables/tables.component.html +289 -0
- package/demo-angular/src/app/views/tables/tables.component.scss +3 -0
- package/demo-angular/src/app/views/tables/tables.component.ts +278 -0
- package/demo-angular/src/app/views/toasts/toasts.component.html +201 -0
- package/demo-angular/src/app/views/toasts/toasts.component.scss +0 -0
- package/demo-angular/src/app/views/toasts/toasts.component.ts +182 -0
- package/demo-angular/src/index.html +14 -0
- package/demo-angular/src/main.ts +6 -0
- package/demo-angular/src/styles.scss +4 -0
- package/demo-angular/tsconfig.app.json +15 -0
- package/demo-angular/tsconfig.json +33 -0
- package/demo-angular/tsconfig.spec.json +15 -0
- package/fonts/IBM_Plex_Sans_Arabic/OFL.txt +93 -93
- package/package.json +50 -47
- package/theme/_fonts.scss +58 -58
- package/theme/_functions.scss +11 -11
- package/theme/_variables.scss +50 -50
- package/theme/components/_accordion.scss +35 -35
- package/theme/components/_alerts.scss +11 -11
- package/theme/components/_badges.scss +8 -8
- package/theme/components/_breadcrumb.scss +13 -13
- package/theme/components/_buttons.scss +270 -270
- package/theme/components/_cards.scss +21 -21
- package/theme/components/_carousel.scss +33 -33
- package/theme/components/_content.scss +211 -211
- package/theme/components/_dropdowns.scss +45 -45
- package/theme/components/_forms-check.scss +124 -124
- package/theme/components/_forms-floating.scss +17 -17
- package/theme/components/_forms-inputs.scss +70 -70
- package/theme/components/_forms-range.scss +26 -26
- package/theme/components/_forms-select.scss +47 -47
- package/theme/components/_forms-switch.scss +63 -63
- package/theme/components/_forms-validation.scss +16 -16
- package/theme/components/_forms.scss +14 -14
- package/theme/components/_list-group.scss +26 -26
- package/theme/components/_modals.scss +42 -42
- package/theme/components/_navbar.scss +40 -40
- package/theme/components/_navigation.scss +151 -151
- package/theme/components/_offcanvas.scss +15 -15
- package/theme/components/_overlays.scss +112 -112
- package/theme/components/_pagination.scss +39 -39
- package/theme/components/_popovers.scss +26 -26
- package/theme/components/_progress.scss +11 -11
- package/theme/components/_spinners.scss +11 -11
- package/theme/components/_tables.scss +47 -47
- package/theme/components/_toasts.scss +16 -16
- package/theme/components/_tooltips.scss +15 -15
- package/theme/config/_base.scss +111 -111
- package/theme/config/_colors.scss +303 -303
- package/theme/config/_effects.scss +227 -227
- package/theme/config/_radius.scss +78 -78
- package/theme/config/_spacing.scss +155 -155
- package/theme/config/_typography.scss +118 -118
- package/theme/customizations/_alerts.scss +242 -242
- package/theme/customizations/_badges.scss +15 -15
- package/theme/customizations/_buttons.scss +209 -209
- package/theme/customizations/_cards.scss +117 -117
- package/theme/customizations/_forms-check.scss +278 -278
- package/theme/customizations/_forms-inputs.scss +9 -9
- package/theme/customizations/_forms-switch.scss +91 -91
- package/theme/customizations/_forms.scss +5 -5
- package/theme/customizations/_global.scss +25 -25
- package/theme/customizations/_links.scss +94 -46
- package/theme/customizations/_tables.scss +67 -67
- package/theme/customizations/_toasts.scss +221 -221
- package/theme/customizations/_utilities.scss +138 -138
- package/theme/dga-ui.scss +28 -28
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
// Bootstrap 5.3 - Form Switch Variables
|
|
2
|
-
|
|
3
|
-
// ============================================
|
|
4
|
-
// FORM SWITCH
|
|
5
|
-
// ============================================
|
|
6
|
-
|
|
7
|
-
$form-switch-color: $gray-950;
|
|
8
|
-
$form-switch-width: 3em;
|
|
9
|
-
$form-switch-padding-start: $form-switch-width + .5em;
|
|
10
|
-
$form-switch-bg-image: 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}'/></svg>");
|
|
11
|
-
$form-switch-border-radius: $form-switch-width;
|
|
12
|
-
$form-switch-transition: background-position .15s ease-in-out;
|
|
13
|
-
|
|
14
|
-
$form-switch-focus-color: $gray-950;
|
|
15
|
-
$form-switch-focus-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-focus-color}'/></svg>");
|
|
16
|
-
|
|
17
|
-
$form-switch-checked-color: $component-active-color;
|
|
18
|
-
$form-switch-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-checked-color}'/></svg>");
|
|
19
|
-
$form-switch-checked-bg-position: right center;
|
|
20
|
-
|
|
21
|
-
// ============================================
|
|
22
|
-
// FORM SWITCH HOVER STATES
|
|
23
|
-
// ============================================
|
|
24
|
-
|
|
25
|
-
// Unchecked
|
|
26
|
-
$form-switch-unchecked-hover-bg: $white;
|
|
27
|
-
$form-switch-unchecked-hover-border: $neutral-600;
|
|
28
|
-
$form-switch-unchecked-hover-color: $neutral-600;
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
// Checked
|
|
32
|
-
$form-switch-checked-hover-bg: $primary-700;
|
|
33
|
-
$form-switch-checked-hover-border: $primary-700;
|
|
34
|
-
$form-switch-checked-hover-color: $form-switch-checked-color;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
// ============================================
|
|
38
|
-
// FORM SWITCH ACTIVE/PRESSED STATES
|
|
39
|
-
// ============================================
|
|
40
|
-
|
|
41
|
-
// Unchecked
|
|
42
|
-
$form-switch-unchecked-active-bg: $white;
|
|
43
|
-
$form-switch-unchecked-active-border: $neutral-500;
|
|
44
|
-
$form-switch-unchecked-active-color: $neutral-500;
|
|
45
|
-
|
|
46
|
-
// Checked
|
|
47
|
-
$form-switch-checked-active-bg: $primary-900;
|
|
48
|
-
$form-switch-checked-active-border: $primary-900;
|
|
49
|
-
$form-switch-checked-active-color: $form-switch-checked-color;
|
|
50
|
-
|
|
51
|
-
// ============================================
|
|
52
|
-
// FORM SWITCH DISABLED STATES
|
|
53
|
-
// ============================================
|
|
54
|
-
|
|
55
|
-
// Unchecked
|
|
56
|
-
$form-switch-unchecked-disabled-bg: $white;
|
|
57
|
-
$form-switch-unchecked-disabled-border: $gray-400;
|
|
58
|
-
$form-switch-unchecked-disabled-color: $gray-300;
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
// checked
|
|
62
|
-
$form-switch-checked-disabled-bg: $gray-300;
|
|
63
|
-
$form-switch-checked-disabled-border: $gray-300;
|
|
1
|
+
// Bootstrap 5.3 - Form Switch Variables
|
|
2
|
+
|
|
3
|
+
// ============================================
|
|
4
|
+
// FORM SWITCH
|
|
5
|
+
// ============================================
|
|
6
|
+
|
|
7
|
+
$form-switch-color: $gray-950;
|
|
8
|
+
$form-switch-width: 3em;
|
|
9
|
+
$form-switch-padding-start: $form-switch-width + .5em;
|
|
10
|
+
$form-switch-bg-image: 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}'/></svg>");
|
|
11
|
+
$form-switch-border-radius: $form-switch-width;
|
|
12
|
+
$form-switch-transition: background-position .15s ease-in-out;
|
|
13
|
+
|
|
14
|
+
$form-switch-focus-color: $gray-950;
|
|
15
|
+
$form-switch-focus-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-focus-color}'/></svg>");
|
|
16
|
+
|
|
17
|
+
$form-switch-checked-color: $component-active-color;
|
|
18
|
+
$form-switch-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-checked-color}'/></svg>");
|
|
19
|
+
$form-switch-checked-bg-position: right center;
|
|
20
|
+
|
|
21
|
+
// ============================================
|
|
22
|
+
// FORM SWITCH HOVER STATES
|
|
23
|
+
// ============================================
|
|
24
|
+
|
|
25
|
+
// Unchecked
|
|
26
|
+
$form-switch-unchecked-hover-bg: $white;
|
|
27
|
+
$form-switch-unchecked-hover-border: $neutral-600;
|
|
28
|
+
$form-switch-unchecked-hover-color: $neutral-600;
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// Checked
|
|
32
|
+
$form-switch-checked-hover-bg: $primary-700;
|
|
33
|
+
$form-switch-checked-hover-border: $primary-700;
|
|
34
|
+
$form-switch-checked-hover-color: $form-switch-checked-color;
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
// ============================================
|
|
38
|
+
// FORM SWITCH ACTIVE/PRESSED STATES
|
|
39
|
+
// ============================================
|
|
40
|
+
|
|
41
|
+
// Unchecked
|
|
42
|
+
$form-switch-unchecked-active-bg: $white;
|
|
43
|
+
$form-switch-unchecked-active-border: $neutral-500;
|
|
44
|
+
$form-switch-unchecked-active-color: $neutral-500;
|
|
45
|
+
|
|
46
|
+
// Checked
|
|
47
|
+
$form-switch-checked-active-bg: $primary-900;
|
|
48
|
+
$form-switch-checked-active-border: $primary-900;
|
|
49
|
+
$form-switch-checked-active-color: $form-switch-checked-color;
|
|
50
|
+
|
|
51
|
+
// ============================================
|
|
52
|
+
// FORM SWITCH DISABLED STATES
|
|
53
|
+
// ============================================
|
|
54
|
+
|
|
55
|
+
// Unchecked
|
|
56
|
+
$form-switch-unchecked-disabled-bg: $white;
|
|
57
|
+
$form-switch-unchecked-disabled-border: $gray-400;
|
|
58
|
+
$form-switch-unchecked-disabled-color: $gray-300;
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
// checked
|
|
62
|
+
$form-switch-checked-disabled-bg: $gray-300;
|
|
63
|
+
$form-switch-checked-disabled-border: $gray-300;
|
|
64
64
|
$form-switch-checked-disabled-color: $white;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
// Bootstrap 5.3 - Form Validation Variables
|
|
2
|
-
|
|
3
|
-
// ============================================
|
|
4
|
-
// FORM VALIDATION
|
|
5
|
-
// ============================================
|
|
6
|
-
|
|
7
|
-
$form-feedback-margin-top: $form-text-margin-top;
|
|
8
|
-
$form-feedback-font-size: $form-text-font-size;
|
|
9
|
-
$form-feedback-font-style: $form-text-font-style;
|
|
10
|
-
$form-feedback-valid-color: $success;
|
|
11
|
-
$form-feedback-invalid-color: $danger;
|
|
12
|
-
|
|
13
|
-
$form-feedback-icon-valid-color: $form-feedback-valid-color;
|
|
14
|
-
$form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>");
|
|
15
|
-
$form-feedback-icon-invalid-color: $form-feedback-invalid-color;
|
|
16
|
-
$form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>");
|
|
1
|
+
// Bootstrap 5.3 - Form Validation Variables
|
|
2
|
+
|
|
3
|
+
// ============================================
|
|
4
|
+
// FORM VALIDATION
|
|
5
|
+
// ============================================
|
|
6
|
+
|
|
7
|
+
$form-feedback-margin-top: $form-text-margin-top;
|
|
8
|
+
$form-feedback-font-size: $form-text-font-size;
|
|
9
|
+
$form-feedback-font-style: $form-text-font-style;
|
|
10
|
+
$form-feedback-valid-color: $success;
|
|
11
|
+
$form-feedback-invalid-color: $danger;
|
|
12
|
+
|
|
13
|
+
$form-feedback-icon-valid-color: $form-feedback-valid-color;
|
|
14
|
+
$form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>");
|
|
15
|
+
$form-feedback-icon-invalid-color: $form-feedback-invalid-color;
|
|
16
|
+
$form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>");
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
// Bootstrap 5.3 - Form Variables
|
|
2
|
-
|
|
3
|
-
// ============================================
|
|
4
|
-
// FORM COMPONENTS
|
|
5
|
-
// Import all form-related variable files
|
|
6
|
-
// ============================================
|
|
7
|
-
|
|
8
|
-
@import 'forms-inputs';
|
|
9
|
-
@import 'forms-select';
|
|
10
|
-
@import 'forms-check';
|
|
11
|
-
@import 'forms-switch';
|
|
12
|
-
@import 'forms-range';
|
|
13
|
-
@import 'forms-validation';
|
|
14
|
-
@import 'forms-floating';
|
|
1
|
+
// Bootstrap 5.3 - Form Variables
|
|
2
|
+
|
|
3
|
+
// ============================================
|
|
4
|
+
// FORM COMPONENTS
|
|
5
|
+
// Import all form-related variable files
|
|
6
|
+
// ============================================
|
|
7
|
+
|
|
8
|
+
@import 'forms-inputs';
|
|
9
|
+
@import 'forms-select';
|
|
10
|
+
@import 'forms-check';
|
|
11
|
+
@import 'forms-switch';
|
|
12
|
+
@import 'forms-range';
|
|
13
|
+
@import 'forms-validation';
|
|
14
|
+
@import 'forms-floating';
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
// Bootstrap 5.3 - List Group Component Variables
|
|
2
|
-
|
|
3
|
-
$list-group-color: var(--#{$prefix}body-color);
|
|
4
|
-
$list-group-bg: $white;
|
|
5
|
-
$list-group-border-color: rgba($black, 0.125);
|
|
6
|
-
$list-group-border-width:
|
|
7
|
-
$list-group-border-radius: $radius-sm;
|
|
8
|
-
|
|
9
|
-
$list-group-item-padding-y: 0.5rem;
|
|
10
|
-
$list-group-item-padding-x: 1rem;
|
|
11
|
-
$list-group-item-bg-scale: -80%;
|
|
12
|
-
$list-group-item-color-scale: 40%;
|
|
13
|
-
|
|
14
|
-
$list-group-hover-bg: $gray-100;
|
|
15
|
-
$list-group-active-color: $white;
|
|
16
|
-
$list-group-active-bg: $primary;
|
|
17
|
-
$list-group-active-border-color: $list-group-active-bg;
|
|
18
|
-
|
|
19
|
-
$list-group-disabled-color: $gray-600;
|
|
20
|
-
$list-group-disabled-bg: $list-group-bg;
|
|
21
|
-
|
|
22
|
-
$list-group-action-color: $gray-700;
|
|
23
|
-
$list-group-action-hover-color: $list-group-action-color;
|
|
24
|
-
|
|
25
|
-
$list-group-action-active-color: var(--#{$prefix}body-color);
|
|
26
|
-
$list-group-action-active-bg: $gray-200;
|
|
1
|
+
// Bootstrap 5.3 - List Group Component Variables
|
|
2
|
+
|
|
3
|
+
$list-group-color: var(--#{$prefix}body-color);
|
|
4
|
+
$list-group-bg: $white;
|
|
5
|
+
$list-group-border-color: rgba($black, 0.125);
|
|
6
|
+
$list-group-border-width: 1px;
|
|
7
|
+
$list-group-border-radius: $radius-sm;
|
|
8
|
+
|
|
9
|
+
$list-group-item-padding-y: 0.5rem;
|
|
10
|
+
$list-group-item-padding-x: 1rem;
|
|
11
|
+
$list-group-item-bg-scale: -80%;
|
|
12
|
+
$list-group-item-color-scale: 40%;
|
|
13
|
+
|
|
14
|
+
$list-group-hover-bg: $gray-100;
|
|
15
|
+
$list-group-active-color: $white;
|
|
16
|
+
$list-group-active-bg: $primary;
|
|
17
|
+
$list-group-active-border-color: $list-group-active-bg;
|
|
18
|
+
|
|
19
|
+
$list-group-disabled-color: $gray-600;
|
|
20
|
+
$list-group-disabled-bg: $list-group-bg;
|
|
21
|
+
|
|
22
|
+
$list-group-action-color: $gray-700;
|
|
23
|
+
$list-group-action-hover-color: $list-group-action-color;
|
|
24
|
+
|
|
25
|
+
$list-group-action-active-color: var(--#{$prefix}body-color);
|
|
26
|
+
$list-group-action-active-bg: $gray-200;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
// Bootstrap 5.3 - Modal Component Variables
|
|
2
|
-
|
|
3
|
-
$modal-inner-padding: 1rem;
|
|
4
|
-
|
|
5
|
-
$modal-footer-margin-between: 0.5rem;
|
|
6
|
-
|
|
7
|
-
$modal-dialog-margin: 0.5rem;
|
|
8
|
-
$modal-dialog-margin-y-sm-up: 1.75rem;
|
|
9
|
-
|
|
10
|
-
$modal-title-line-height: $line-height-base;
|
|
11
|
-
|
|
12
|
-
$modal-content-color: null;
|
|
13
|
-
$modal-content-bg: $white;
|
|
14
|
-
$modal-content-border-color: rgba($black, 0.2);
|
|
15
|
-
$modal-content-border-width:
|
|
16
|
-
$modal-content-border-radius: $radius-lg;
|
|
17
|
-
$modal-content-inner-border-radius: calc(#{$modal-content-border-radius} - #{$modal-content-border-width});
|
|
18
|
-
$modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba($black, 0.5);
|
|
19
|
-
$modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba($black, 0.5);
|
|
20
|
-
|
|
21
|
-
$modal-backdrop-bg: $black;
|
|
22
|
-
$modal-backdrop-opacity: 0.5;
|
|
23
|
-
|
|
24
|
-
$modal-header-border-color: $border-color;
|
|
25
|
-
$modal-header-border-width: $modal-content-border-width;
|
|
26
|
-
$modal-header-padding-y: 1rem;
|
|
27
|
-
$modal-header-padding-x: 1rem;
|
|
28
|
-
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x;
|
|
29
|
-
|
|
30
|
-
$modal-footer-bg: null;
|
|
31
|
-
$modal-footer-border-color: $modal-header-border-color;
|
|
32
|
-
$modal-footer-border-width: $modal-header-border-width;
|
|
33
|
-
|
|
34
|
-
$modal-sm: 300px;
|
|
35
|
-
$modal-md: 500px;
|
|
36
|
-
$modal-lg: 800px;
|
|
37
|
-
$modal-xl: 1140px;
|
|
38
|
-
|
|
39
|
-
$modal-fade-transform: translate(0, -50px);
|
|
40
|
-
$modal-show-transform: none;
|
|
41
|
-
$modal-transition: transform 0.3s ease-out;
|
|
42
|
-
$modal-scale-transform: scale(1.02);
|
|
1
|
+
// Bootstrap 5.3 - Modal Component Variables
|
|
2
|
+
|
|
3
|
+
$modal-inner-padding: 1rem;
|
|
4
|
+
|
|
5
|
+
$modal-footer-margin-between: 0.5rem;
|
|
6
|
+
|
|
7
|
+
$modal-dialog-margin: 0.5rem;
|
|
8
|
+
$modal-dialog-margin-y-sm-up: 1.75rem;
|
|
9
|
+
|
|
10
|
+
$modal-title-line-height: $line-height-base;
|
|
11
|
+
|
|
12
|
+
$modal-content-color: null;
|
|
13
|
+
$modal-content-bg: $white;
|
|
14
|
+
$modal-content-border-color: rgba($black, 0.2);
|
|
15
|
+
$modal-content-border-width: 1px;
|
|
16
|
+
$modal-content-border-radius: $radius-lg;
|
|
17
|
+
$modal-content-inner-border-radius: calc(#{$modal-content-border-radius} - #{$modal-content-border-width});
|
|
18
|
+
$modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba($black, 0.5);
|
|
19
|
+
$modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba($black, 0.5);
|
|
20
|
+
|
|
21
|
+
$modal-backdrop-bg: $black;
|
|
22
|
+
$modal-backdrop-opacity: 0.5;
|
|
23
|
+
|
|
24
|
+
$modal-header-border-color: $border-color;
|
|
25
|
+
$modal-header-border-width: $modal-content-border-width;
|
|
26
|
+
$modal-header-padding-y: 1rem;
|
|
27
|
+
$modal-header-padding-x: 1rem;
|
|
28
|
+
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x;
|
|
29
|
+
|
|
30
|
+
$modal-footer-bg: null;
|
|
31
|
+
$modal-footer-border-color: $modal-header-border-color;
|
|
32
|
+
$modal-footer-border-width: $modal-header-border-width;
|
|
33
|
+
|
|
34
|
+
$modal-sm: 300px;
|
|
35
|
+
$modal-md: 500px;
|
|
36
|
+
$modal-lg: 800px;
|
|
37
|
+
$modal-xl: 1140px;
|
|
38
|
+
|
|
39
|
+
$modal-fade-transform: translate(0, -50px);
|
|
40
|
+
$modal-show-transform: none;
|
|
41
|
+
$modal-transition: transform 0.3s ease-out;
|
|
42
|
+
$modal-scale-transform: scale(1.02);
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
// Bootstrap 5.3 - Navbar Component Variables
|
|
2
|
-
|
|
3
|
-
$navbar-padding-y: 0.5rem;
|
|
4
|
-
$navbar-padding-x: 1rem;
|
|
5
|
-
|
|
6
|
-
$navbar-nav-link-padding-x: 0.5rem;
|
|
7
|
-
|
|
8
|
-
$navbar-brand-font-size: $font-size-lg;
|
|
9
|
-
$navbar-brand-height: null;
|
|
10
|
-
$navbar-brand-padding-y: 0.3125rem;
|
|
11
|
-
$navbar-brand-margin-end: 1rem;
|
|
12
|
-
|
|
13
|
-
$navbar-toggler-padding-y: 0.25rem;
|
|
14
|
-
$navbar-toggler-padding-x: 0.75rem;
|
|
15
|
-
$navbar-toggler-font-size: $font-size-lg;
|
|
16
|
-
$navbar-toggler-border-radius: $btn-border-radius;
|
|
17
|
-
$navbar-toggler-focus-width: $btn-focus-width;
|
|
18
|
-
$navbar-toggler-transition: box-shadow 0.15s ease-in-out;
|
|
19
|
-
|
|
20
|
-
// Navbar dark theme
|
|
21
|
-
$navbar-dark-color: rgba($white, 0.55);
|
|
22
|
-
$navbar-dark-hover-color: rgba($white, 0.75);
|
|
23
|
-
$navbar-dark-active-color: $white;
|
|
24
|
-
$navbar-dark-disabled-color: rgba($white, 0.25);
|
|
25
|
-
$navbar-dark-icon-color: $navbar-dark-color;
|
|
26
|
-
$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
|
|
27
|
-
$navbar-dark-toggler-border-color: rgba($white, 0.1);
|
|
28
|
-
$navbar-dark-brand-color: $navbar-dark-active-color;
|
|
29
|
-
$navbar-dark-brand-hover-color: $navbar-dark-active-color;
|
|
30
|
-
|
|
31
|
-
// Navbar light theme
|
|
32
|
-
$navbar-light-color: rgba($black, 0.55);
|
|
33
|
-
$navbar-light-hover-color: rgba($black, 0.7);
|
|
34
|
-
$navbar-light-active-color: rgba($black, 0.9);
|
|
35
|
-
$navbar-light-disabled-color: rgba($black, 0.3);
|
|
36
|
-
$navbar-light-icon-color: rgba($black, 0.5);
|
|
37
|
-
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
|
|
38
|
-
$navbar-light-toggler-border-color: rgba($black, 0.1);
|
|
39
|
-
$navbar-light-brand-color: $navbar-light-active-color;
|
|
40
|
-
$navbar-light-brand-hover-color: $navbar-light-active-color;
|
|
1
|
+
// Bootstrap 5.3 - Navbar Component Variables
|
|
2
|
+
|
|
3
|
+
$navbar-padding-y: 0.5rem;
|
|
4
|
+
$navbar-padding-x: 1rem;
|
|
5
|
+
|
|
6
|
+
$navbar-nav-link-padding-x: 0.5rem;
|
|
7
|
+
|
|
8
|
+
$navbar-brand-font-size: $font-size-lg;
|
|
9
|
+
$navbar-brand-height: null;
|
|
10
|
+
$navbar-brand-padding-y: 0.3125rem;
|
|
11
|
+
$navbar-brand-margin-end: 1rem;
|
|
12
|
+
|
|
13
|
+
$navbar-toggler-padding-y: 0.25rem;
|
|
14
|
+
$navbar-toggler-padding-x: 0.75rem;
|
|
15
|
+
$navbar-toggler-font-size: $font-size-lg;
|
|
16
|
+
$navbar-toggler-border-radius: $btn-border-radius;
|
|
17
|
+
$navbar-toggler-focus-width: $btn-focus-width;
|
|
18
|
+
$navbar-toggler-transition: box-shadow 0.15s ease-in-out;
|
|
19
|
+
|
|
20
|
+
// Navbar dark theme
|
|
21
|
+
$navbar-dark-color: rgba($white, 0.55);
|
|
22
|
+
$navbar-dark-hover-color: rgba($white, 0.75);
|
|
23
|
+
$navbar-dark-active-color: $white;
|
|
24
|
+
$navbar-dark-disabled-color: rgba($white, 0.25);
|
|
25
|
+
$navbar-dark-icon-color: $navbar-dark-color;
|
|
26
|
+
$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
|
|
27
|
+
$navbar-dark-toggler-border-color: rgba($white, 0.1);
|
|
28
|
+
$navbar-dark-brand-color: $navbar-dark-active-color;
|
|
29
|
+
$navbar-dark-brand-hover-color: $navbar-dark-active-color;
|
|
30
|
+
|
|
31
|
+
// Navbar light theme
|
|
32
|
+
$navbar-light-color: rgba($black, 0.55);
|
|
33
|
+
$navbar-light-hover-color: rgba($black, 0.7);
|
|
34
|
+
$navbar-light-active-color: rgba($black, 0.9);
|
|
35
|
+
$navbar-light-disabled-color: rgba($black, 0.3);
|
|
36
|
+
$navbar-light-icon-color: rgba($black, 0.5);
|
|
37
|
+
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
|
|
38
|
+
$navbar-light-toggler-border-color: rgba($black, 0.1);
|
|
39
|
+
$navbar-light-brand-color: $navbar-light-active-color;
|
|
40
|
+
$navbar-light-brand-hover-color: $navbar-light-active-color;
|