vipassana-design-standards 0.0.23 → 0.0.25
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/README.md +6 -14
- package/dist/css/bootstrap5-theme.css +82 -69
- package/dist/css/bootstrap5-theme.css.map +1 -1
- package/dist/css/bootstrap5-theme.min.css +1 -1
- package/dist/css/bootstrap5-theme.rtl.css +82 -69
- package/dist/css/bootstrap5-theme.rtl.min.css +1 -1
- package/dist/css/fonts-ar.css +2 -2
- package/dist/css/fonts-ar.min.css +1 -1
- package/dist/css/fonts-fa.css +2 -2
- package/dist/css/fonts-fa.min.css +1 -1
- package/dist/css/fonts-gu.css +6 -6
- package/dist/css/fonts-gu.min.css +1 -1
- package/dist/css/fonts-he.css +6 -6
- package/dist/css/fonts-he.min.css +1 -1
- package/dist/css/fonts-ja.css +240 -240
- package/dist/css/fonts-ja.min.css +1 -1
- package/dist/css/fonts-km.css +6 -6
- package/dist/css/fonts-km.min.css +1 -1
- package/dist/css/fonts-ko.css +240 -240
- package/dist/css/fonts-ko.min.css +1 -1
- package/dist/css/fonts-or.css +6 -6
- package/dist/css/fonts-or.min.css +1 -1
- package/dist/css/fonts-si.css +6 -6
- package/dist/css/fonts-si.min.css +1 -1
- package/dist/css/fonts-ta.css +6 -6
- package/dist/css/fonts-ta.min.css +1 -1
- package/dist/css/fonts-te.css +6 -6
- package/dist/css/fonts-te.min.css +1 -1
- package/dist/css/fonts-th.css +6 -6
- package/dist/css/fonts-th.min.css +1 -1
- package/dist/css/fonts-zh-HANS.css +194 -194
- package/dist/css/fonts-zh-HANS.min.css +1 -1
- package/dist/css/fonts-zh-HANT-HK.css +210 -210
- package/dist/css/fonts-zh-HANT-HK.min.css +1 -1
- package/dist/css/fonts-zh-HANT.css +202 -202
- package/dist/css/fonts-zh-HANT.min.css +1 -1
- package/dist/css/fonts.css +24 -24
- package/dist/css/fonts.min.css +1 -1
- package/dist/css/logo.css +13 -0
- package/dist/css/logo.css.map +1 -1
- package/dist/css/logo.min.css +1 -1
- package/dist/css/logo.rtl.css +13 -0
- package/dist/css/logo.rtl.min.css +1 -1
- package/dist/js/helpers.js +2 -1
- package/dist/js/i18n.js +8 -8
- package/dist/js/react-helpers.jsx +2 -1
- package/package.json +3 -3
- package/src/stylesheets/bootstrap5-theme.scss +24 -0
- package/src/stylesheets/custom-bootstrap-utilities.scss +143 -0
- package/src/stylesheets/custom-bootstrap-variables.scss +123 -0
- package/src/stylesheets/custom-bootstrap.scss +159 -0
- package/src/stylesheets/fonts.scss +306 -0
- package/src/stylesheets/index.css +198 -0
- package/src/stylesheets/layout/vds-header.scss +42 -0
- package/src/stylesheets/layout/vds-layout.scss +90 -0
- package/src/stylesheets/layout/vds-mixins.scss +5 -0
- package/src/stylesheets/layout/vds-sidenav.scss +43 -0
- package/src/stylesheets/logo.scss +213 -0
- package/src/stylesheets/mixins.scss +11 -0
- package/src/stylesheets/specific-fonts/fonts-ar.css +22 -0
- package/src/stylesheets/specific-fonts/fonts-fa.css +22 -0
- package/src/stylesheets/specific-fonts/fonts-gu.css +62 -0
- package/src/stylesheets/specific-fonts/fonts-he.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-ja.css +2160 -0
- package/src/stylesheets/specific-fonts/fonts-km.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-ko.css +2160 -0
- package/src/stylesheets/specific-fonts/fonts-or.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-si.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-ta.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-te.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-th.css +60 -0
- package/src/stylesheets/specific-fonts/fonts-zh-HANS.css +1746 -0
- package/src/stylesheets/specific-fonts/fonts-zh-HANT-HK.css +1890 -0
- package/src/stylesheets/specific-fonts/fonts-zh-HANT.css +1818 -0
- package/dist/fonts/FootlightMTProBold.woff +0 -0
- package/dist/fonts/FootlightMTProBoldItalic.woff +0 -0
- package/dist/fonts/FootlightMTProExtraBold.woff +0 -0
- package/dist/fonts/FootlightMTProExtraBoldIt.woff +0 -0
- package/dist/fonts/FootlightMTProItalic.woff +0 -0
- package/dist/fonts/FootlightMTProLight.base64.js +0 -1
- package/dist/fonts/FootlightMTProLight.woff +0 -0
- package/dist/fonts/FootlightMTProLightItalic.woff +0 -0
- package/dist/fonts/FootlightMTProRegular.woff +0 -0
- package/dist/fonts/OFL.txt +0 -93
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
|
|
2
|
+
:root {
|
|
3
|
+
// Generate missing CSS Variables
|
|
4
|
+
@each $color, $value in $blues {
|
|
5
|
+
--#{$prefix}#{$color}: #{$value};
|
|
6
|
+
}
|
|
7
|
+
@each $color, $value in $golds {
|
|
8
|
+
--#{$prefix}#{$color}: #{$value};
|
|
9
|
+
}
|
|
10
|
+
@each $color, $value in $greens {
|
|
11
|
+
--#{$prefix}#{$color}: #{$value};
|
|
12
|
+
}
|
|
13
|
+
@each $color, $value in $reds {
|
|
14
|
+
--#{$prefix}#{$color}: #{$value};
|
|
15
|
+
}
|
|
16
|
+
--bs-border-color: #{$border-color};
|
|
17
|
+
--bs-font-heading: #{$headings-font-family};
|
|
18
|
+
|
|
19
|
+
--bs-spacer-x: #{$spacer-x};
|
|
20
|
+
@include media-breakpoint-down(md) {
|
|
21
|
+
--bs-spacer-x: 1rem;
|
|
22
|
+
}
|
|
23
|
+
--bs-box-shadow: #{$box-shadow};
|
|
24
|
+
--bs-box-shadow-sm: #{$box-shadow-sm};
|
|
25
|
+
--bs-box-shadow-lg: #{$box-shadow-lg};
|
|
26
|
+
// those variables are used to make custom inputs similar to bootstrap inputs
|
|
27
|
+
--bs-input-padding: #{$input-padding-y} #{$input-padding-x};
|
|
28
|
+
--bs-form-floating-padding-x: #{$form-floating-padding-x};
|
|
29
|
+
--bs-form-floating-padding-y: #{$form-floating-padding-y};
|
|
30
|
+
--bs-form-floating-input-padding-t: #{$form-floating-input-padding-t};
|
|
31
|
+
--bs-form-floating-input-padding-b: #{$form-floating-input-padding-b};
|
|
32
|
+
|
|
33
|
+
// adds other variables
|
|
34
|
+
--layout-padding: 1rem;
|
|
35
|
+
@include media-breakpoint-up(md) {
|
|
36
|
+
--layout-padding: 1.5rem;
|
|
37
|
+
}
|
|
38
|
+
@include media-breakpoint-up(xl) {
|
|
39
|
+
--layout-padding: 2rem;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Font-family helpers
|
|
44
|
+
.ff-normal {
|
|
45
|
+
font-family: $font-family-sans-serif;
|
|
46
|
+
}
|
|
47
|
+
.ff-heading {
|
|
48
|
+
font-family: $headings-font-family;
|
|
49
|
+
margin-bottom: -0.3em; // strange, but the Footlight font does not seems to be properly aligned with baseline
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Font-size helpers
|
|
53
|
+
.fs-normal {
|
|
54
|
+
font-size: 1rem !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// fs-09-rem, fs-085-em..
|
|
58
|
+
.fs-05-rem { font-size: .5rem !important; }
|
|
59
|
+
.fs-05-em { font-size: .5em !important; }
|
|
60
|
+
.fs-055-rem { font-size: .55rem !important; }
|
|
61
|
+
.fs-055-em { font-size: .55em !important; }
|
|
62
|
+
|
|
63
|
+
.fs-06-rem { font-size: .6rem !important; }
|
|
64
|
+
.fs-06-em { font-size: .6em !important; }
|
|
65
|
+
.fs-065-rem { font-size: .65rem !important; }
|
|
66
|
+
.fs-065-em { font-size: .65em !important; }
|
|
67
|
+
|
|
68
|
+
.fs-07-rem { font-size: .7rem !important; }
|
|
69
|
+
.fs-07-em { font-size: .7em !important; }
|
|
70
|
+
.fs-075-rem { font-size: .75rem !important; }
|
|
71
|
+
.fs-075-em { font-size: .75em !important; }
|
|
72
|
+
|
|
73
|
+
.fs-08-rem { font-size: .8rem !important; }
|
|
74
|
+
.fs-08-em { font-size: .8em !important; }
|
|
75
|
+
.fs-085-rem { font-size: .85rem !important; }
|
|
76
|
+
.fs-085-em { font-size: .85em !important; }
|
|
77
|
+
|
|
78
|
+
.fs-09-rem { font-size: .9rem !important; }
|
|
79
|
+
.fs-09-em { font-size: .9em !important; }
|
|
80
|
+
.fs-095-rem { font-size: .95rem !important; }
|
|
81
|
+
.fs-095-em { font-size: .95em !important; }
|
|
82
|
+
|
|
83
|
+
// fs-11-rem, fs-125-em...
|
|
84
|
+
.fs-11-rem { font-size: 1.1rem !important; }
|
|
85
|
+
.fs-11-em { font-size: 1.1em !important; }
|
|
86
|
+
.fs-115-rem { font-size: 1.15rem !important; }
|
|
87
|
+
.fs-115-em { font-size: 1.15em !important; }
|
|
88
|
+
|
|
89
|
+
.fs-12-rem { font-size: 1.2rem !important; }
|
|
90
|
+
.fs-12-em { font-size: 1.2em !important; }
|
|
91
|
+
.fs-125-rem { font-size: 1.25rem !important; }
|
|
92
|
+
.fs-125-em { font-size: 1.25em !important; }
|
|
93
|
+
|
|
94
|
+
.fs-13-rem { font-size: 1.3rem !important; }
|
|
95
|
+
.fs-13-em { font-size: 1.3em !important; }
|
|
96
|
+
.fs-135-rem { font-size: 1.35rem !important; }
|
|
97
|
+
.fs-135-em { font-size: 1.35em !important; }
|
|
98
|
+
|
|
99
|
+
.fs-14-rem { font-size: 1.4rem !important; }
|
|
100
|
+
.fs-14-em { font-size: 1.4em !important; }
|
|
101
|
+
.fs-145-rem { font-size: 1.45rem !important; }
|
|
102
|
+
.fs-145-em { font-size: 1.45em !important; }
|
|
103
|
+
|
|
104
|
+
.fs-15-rem { font-size: 1.5rem !important; }
|
|
105
|
+
.fs-15-em { font-size: 1.5em !important; }
|
|
106
|
+
.fs-155-rem { font-size: 1.55rem !important; }
|
|
107
|
+
.fs-155-em { font-size: 1.55em !important; }
|
|
108
|
+
|
|
109
|
+
.full-width-sm {
|
|
110
|
+
@include media-breakpoint-down(md) {
|
|
111
|
+
margin-left: -1rem !important;
|
|
112
|
+
margin-right: -1rem !important;
|
|
113
|
+
width: calc(100% + 2rem) !important;
|
|
114
|
+
box-shadow: none !important;
|
|
115
|
+
--bs-card-border-radius: 0;
|
|
116
|
+
--bs-card-inner-border-radius: 0;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.btn-floating-sm {
|
|
121
|
+
@include media-breakpoint-down(md) {
|
|
122
|
+
position: fixed !important;
|
|
123
|
+
bottom: 3rem !important;
|
|
124
|
+
z-index: 200 !important;
|
|
125
|
+
right: 1rem !important;
|
|
126
|
+
box-shadow: 0 3px 1rem #21252985 !important;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Make this section take the whole page when printing
|
|
131
|
+
@media print {
|
|
132
|
+
.full-page-print {
|
|
133
|
+
background-color: white;
|
|
134
|
+
height: 100%;
|
|
135
|
+
width: 100%;
|
|
136
|
+
position: fixed;
|
|
137
|
+
top: 0;
|
|
138
|
+
left: 0;
|
|
139
|
+
margin: 0;
|
|
140
|
+
padding: 2rem;
|
|
141
|
+
z-index: 500;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
// Color Palette
|
|
2
|
+
$blue-100: #f8f9fa; // #f8f9fa; // #ececec; // primevue #e8eaf6 //#f1eff1;
|
|
3
|
+
$blue-150: #f0f2f4; //#e6e5ec;
|
|
4
|
+
$blue-200: #D2D6DF; //#e6e5ec; //#ced4da;
|
|
5
|
+
$blue-300: #8586a2;
|
|
6
|
+
$blue-400: #707595;
|
|
7
|
+
$blue-500: #5b6588;
|
|
8
|
+
$blue-600: #47547b;
|
|
9
|
+
$blue-700: #32446e;
|
|
10
|
+
$blue-800: #1E3461;
|
|
11
|
+
$blue-900: #121f3a;
|
|
12
|
+
|
|
13
|
+
$blue: $blue-800;
|
|
14
|
+
|
|
15
|
+
$gold-100: #FCFAF7;
|
|
16
|
+
$gold-200: #f0e7d5;
|
|
17
|
+
$gold-300: #deccad;
|
|
18
|
+
$gold-400: #c6a364;
|
|
19
|
+
$gold-500: #B78730;
|
|
20
|
+
$gold-600: #9c6b14;
|
|
21
|
+
$gold-700: #7D550C;
|
|
22
|
+
$gold-800: #493613;
|
|
23
|
+
$gold-900: #241a09;
|
|
24
|
+
|
|
25
|
+
$gold: $gold-500;
|
|
26
|
+
|
|
27
|
+
$blues: (
|
|
28
|
+
"blue-100": $blue-100,
|
|
29
|
+
"blue-150": $blue-150,
|
|
30
|
+
"blue-200": $blue-200,
|
|
31
|
+
"blue-300": $blue-300,
|
|
32
|
+
"blue-400": $blue-400,
|
|
33
|
+
"blue-500": $blue-500,
|
|
34
|
+
"blue-600": $blue-600,
|
|
35
|
+
"blue-700": $blue-700,
|
|
36
|
+
"blue-800": $blue-800,
|
|
37
|
+
"blue-900": $blue-900
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
$golds: (
|
|
41
|
+
"gold-100": $gold-100,
|
|
42
|
+
"gold-200": $gold-200,
|
|
43
|
+
"gold-300": $gold-300,
|
|
44
|
+
"gold-400": $gold-400,
|
|
45
|
+
"gold-500": $gold-500,
|
|
46
|
+
"gold-600": $gold-600,
|
|
47
|
+
"gold-700": $gold-700,
|
|
48
|
+
"gold-800": $gold-800,
|
|
49
|
+
"gold-900": $gold-900
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
$green-200: #D5E4C3;
|
|
53
|
+
$green: #3d6b00;
|
|
54
|
+
$green-700: #203800;
|
|
55
|
+
|
|
56
|
+
$red-200: #ECCCCC;
|
|
57
|
+
$red: #8e3333;
|
|
58
|
+
$red-700: #720000;
|
|
59
|
+
|
|
60
|
+
$primary: $blue-800;
|
|
61
|
+
$secondary: $gold-500;
|
|
62
|
+
$info: $secondary;
|
|
63
|
+
|
|
64
|
+
$dark: #4F4d47;
|
|
65
|
+
$light: $blue-150;
|
|
66
|
+
|
|
67
|
+
$dark-100: tint-color($dark, 80%);
|
|
68
|
+
$dark-200: tint-color($dark, 60%);
|
|
69
|
+
$dark-300: tint-color($dark, 40%);
|
|
70
|
+
$dark-400: tint-color($dark, 20%);
|
|
71
|
+
$dark-500: $dark;
|
|
72
|
+
$dark-600: shade-color($dark, 20%);
|
|
73
|
+
$dark-700: shade-color($dark, 40%);
|
|
74
|
+
$dark-800: shade-color($dark, 60%);
|
|
75
|
+
$dark-900: shade-color($dark, 80%);
|
|
76
|
+
|
|
77
|
+
// Customize Bootstrap
|
|
78
|
+
$font-family-sans-serif: var(--vds-font-family), 'Noto Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
79
|
+
$line-height-base: 1.7;
|
|
80
|
+
|
|
81
|
+
$headings-font-family: var(--vds-headings-font-family), 'FootLight', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
82
|
+
$headings-color: $blue;
|
|
83
|
+
$headings-font-weight: 600;
|
|
84
|
+
$headings-line-height: 1.5;
|
|
85
|
+
|
|
86
|
+
$border-radius: .25rem;
|
|
87
|
+
$border-color: $blue-200;
|
|
88
|
+
$body-bg: $gold-100;
|
|
89
|
+
|
|
90
|
+
$spacer: 1rem;
|
|
91
|
+
$spacer-x: 1.5rem;
|
|
92
|
+
|
|
93
|
+
$input-bg: white;
|
|
94
|
+
$input-btn-padding-x: 1rem;
|
|
95
|
+
$input-btn-padding-x-sm: .75rem;
|
|
96
|
+
$input-border-color: $border-color;
|
|
97
|
+
|
|
98
|
+
$alert-border-width: 0;
|
|
99
|
+
|
|
100
|
+
$card-spacer-x: $spacer-x;
|
|
101
|
+
$card-cap-padding-x: $spacer-x;
|
|
102
|
+
$card-cap-padding-y: .75rem;
|
|
103
|
+
$card-border-width: 0;
|
|
104
|
+
|
|
105
|
+
$accordion-padding-x: $spacer-x;
|
|
106
|
+
|
|
107
|
+
$list-group-item-padding-x: $spacer-x;
|
|
108
|
+
|
|
109
|
+
$badge-font-weight: 400;
|
|
110
|
+
|
|
111
|
+
$offcanvas-horizontal-width: auto;
|
|
112
|
+
$offcanvas-padding-x: 1.5rem;
|
|
113
|
+
$offcanvas-transition-duration: .25s;
|
|
114
|
+
|
|
115
|
+
$modal-inner-padding: $spacer-x;
|
|
116
|
+
$modal-content-border-radius: $border-radius;
|
|
117
|
+
$modal-content-border-width: 0;
|
|
118
|
+
$modal-header-border-width: 0;
|
|
119
|
+
$modal-header-padding: 1rem $modal-inner-padding 0 $modal-inner-padding;
|
|
120
|
+
$modal-fade-transform: translate(0, 0) scale(.8);
|
|
121
|
+
$modal-transition: transform .15s ease-out;
|
|
122
|
+
|
|
123
|
+
$enable-negative-margins: true;
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
// Alerts
|
|
2
|
+
.alert-danger {
|
|
3
|
+
--bs-alert-color: #{$red-700};
|
|
4
|
+
--bs-alert-bg: #{$red-200};
|
|
5
|
+
}
|
|
6
|
+
.alert-success {
|
|
7
|
+
--bs-alert-color: #{$green-700};
|
|
8
|
+
--bs-alert-bg: #{$green-200};
|
|
9
|
+
}
|
|
10
|
+
.alert-primary {
|
|
11
|
+
--bs-alert-color: #{$blue-800};
|
|
12
|
+
--bs-alert-bg: #{$blue-200};
|
|
13
|
+
}
|
|
14
|
+
.alert-secondary {
|
|
15
|
+
--bs-alert-color: #{$gold-800};
|
|
16
|
+
--bs-alert-bg: #{$gold-200};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Buttons
|
|
20
|
+
.btn {
|
|
21
|
+
display: inline-flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
}
|
|
24
|
+
.btn-secondary, .btn-info {
|
|
25
|
+
--bs-btn-color: white;
|
|
26
|
+
--bs-btn-hover-color: white;
|
|
27
|
+
--bs-btn-active-color: white;
|
|
28
|
+
--bs-btn-disabled-color: white;
|
|
29
|
+
}
|
|
30
|
+
.btn-light {
|
|
31
|
+
--bs-btn-color: $dark;
|
|
32
|
+
--bs-btn-hover-color: $dark;
|
|
33
|
+
--bs-btn-active-color: $dark;
|
|
34
|
+
--bs-btn-disabled-color: $dark;
|
|
35
|
+
--bs-btn-hover-bg: var(--bs-gray-200);
|
|
36
|
+
--bs-btn-bg: white;
|
|
37
|
+
}
|
|
38
|
+
.btn-outline-secondary:hover {
|
|
39
|
+
color: white;
|
|
40
|
+
}
|
|
41
|
+
.btn-with-icon {
|
|
42
|
+
display: inline-flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
|
|
45
|
+
img, i {
|
|
46
|
+
margin-right: .5rem;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
img {
|
|
50
|
+
height: 1rem;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.text-bg-secondary {
|
|
55
|
+
color: white !important;
|
|
56
|
+
}
|
|
57
|
+
// Button Ripple effect
|
|
58
|
+
.ripple-effect {
|
|
59
|
+
position: relative;
|
|
60
|
+
overflow: hidden;
|
|
61
|
+
transform: translate3d(0, 0, 0);
|
|
62
|
+
&:after {
|
|
63
|
+
content: "";
|
|
64
|
+
display: block;
|
|
65
|
+
position: absolute;
|
|
66
|
+
width: 100%;
|
|
67
|
+
height: 100%;
|
|
68
|
+
top: 0;
|
|
69
|
+
left: 0;
|
|
70
|
+
pointer-events: none;
|
|
71
|
+
background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
|
|
72
|
+
background-repeat: no-repeat;
|
|
73
|
+
background-position: 50%;
|
|
74
|
+
transform: scale(10, 10);
|
|
75
|
+
opacity: 0;
|
|
76
|
+
transition: transform .3s, opacity 1s;
|
|
77
|
+
}
|
|
78
|
+
&:active:after {
|
|
79
|
+
transform: scale(0, 0);
|
|
80
|
+
opacity: .2;
|
|
81
|
+
transition: 0s;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
.btn:not(.btn-link) {
|
|
85
|
+
@extend .ripple-effect;
|
|
86
|
+
}
|
|
87
|
+
.btn.dropdown-toggle:after {
|
|
88
|
+
display: none; // remove caret
|
|
89
|
+
}
|
|
90
|
+
.btn[type=submit] {
|
|
91
|
+
width: 100%;
|
|
92
|
+
justify-content: center;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Form
|
|
96
|
+
.form-group {
|
|
97
|
+
margin-bottom: 1rem;
|
|
98
|
+
}
|
|
99
|
+
.form-check-input, .form-check-label {
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
}
|
|
102
|
+
.form-label {
|
|
103
|
+
font-size: .9rem;
|
|
104
|
+
opacity: .8;
|
|
105
|
+
margin-bottom: 5px;
|
|
106
|
+
}
|
|
107
|
+
.form-select {
|
|
108
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 18'%3e%3cpath fill='none' stroke='%23a1a1a1' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
|
109
|
+
&.auto-resize {
|
|
110
|
+
padding-right: 2.3em;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
.form-check {
|
|
114
|
+
margin-bottom: .25rem;
|
|
115
|
+
}
|
|
116
|
+
.input-group-text {
|
|
117
|
+
background-color: var(--bs-light);
|
|
118
|
+
}
|
|
119
|
+
// mandatory asterix for required inputs
|
|
120
|
+
abbr[title], abbr[data-original-title] {
|
|
121
|
+
cursor: help;
|
|
122
|
+
color: var(--bs-danger);
|
|
123
|
+
border: none;
|
|
124
|
+
text-decoration: none !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Card
|
|
128
|
+
.card {
|
|
129
|
+
@extend .shadow-sm;
|
|
130
|
+
@include media-breakpoint-down(md) {
|
|
131
|
+
--bs-card-cap-padding-x: 1rem;
|
|
132
|
+
--bs-card-spacer-x: 1rem;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// Modal
|
|
137
|
+
.modal .modal-dialog {
|
|
138
|
+
@extend .modal-fullscreen-md-down;
|
|
139
|
+
transform-origin: center bottom;
|
|
140
|
+
|
|
141
|
+
.modal-header {
|
|
142
|
+
.modal-title {
|
|
143
|
+
@extend .ff-heading;
|
|
144
|
+
@extend .fs-2;
|
|
145
|
+
@extend .text-primary;
|
|
146
|
+
}
|
|
147
|
+
.btn-close {
|
|
148
|
+
margin-top: 0;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
.modal-footer {
|
|
152
|
+
padding-top: 0;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// Other
|
|
157
|
+
.dropdown-item {
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
}
|