dgrcorrientes-modulos 1.0.0
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/.nvmrc +1 -0
- package/.prettierrc.cjs +8 -0
- package/.storybook/main.cjs +11 -0
- package/.storybook/manager-head.html +2 -0
- package/.storybook/manager.cjs +6 -0
- package/.storybook/preview-head.html +3 -0
- package/.storybook/preview.cjs +11 -0
- package/.storybook/themes.cjs +14 -0
- package/README.md +21 -0
- package/StoryBook.txt +19 -0
- package/dist-config.cjs +57 -0
- package/index.html +13 -0
- package/package.json +60 -0
- package/public/elevation.ico +0 -0
- package/public/elevationImage.png +0 -0
- package/public/vite.svg +1 -0
- package/src/App.scss +36 -0
- package/src/App.tsx +34 -0
- package/src/assets/react.svg +1 -0
- package/src/index.js +70 -0
- package/src/index.scss +63 -0
- package/src/index.ts +108 -0
- package/src/main.tsx +11 -0
- package/src/sass/base/_base.scss +50 -0
- package/src/sass/base/_controls.scss +90 -0
- package/src/sass/base/_datepicker.scss +114 -0
- package/src/sass/base/_typo.scss +71 -0
- package/src/sass/base/fonts/SFUIText-Bold.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-BoldItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Heavy.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-HeavyItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Light.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-LightItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Medium.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-MediumItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Regular.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-RegularItalic.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-Semibold.ttf +0 -0
- package/src/sass/base/fonts/SFUIText-SemiboldItalic.ttf +0 -0
- package/src/sass/bulma/bulma-changes.scss +19 -0
- package/src/sass/bulma/extensions/extensions.sass +1 -0
- package/src/sass/bulma/extensions/steps/bulma-steps.sass +3 -0
- package/src/sass/bulma/extensions/steps/index.sass +421 -0
- package/src/sass/bulma/variables/_variables-bulma.sass +16 -0
- package/src/sass/bulma/variables/components/card.sass +20 -0
- package/src/sass/bulma/variables/components/navbar.sass +50 -0
- package/src/sass/bulma/variables/components/tabs.sass +28 -0
- package/src/sass/bulma/variables/elements/button.sass +46 -0
- package/src/sass/bulma/variables/elements/notification.sass +8 -0
- package/src/sass/bulma/variables/elements/title.sass +20 -0
- package/src/sass/bulma/variables/grid/column.sass +2 -0
- package/src/sass/main.sass +16 -0
- package/src/sass/utilities/_bulma-variables.sass +20 -0
- package/src/sass/utilities/_derived-variables.scss +68 -0
- package/src/sass/utilities/_helpers.scss +70 -0
- package/src/sass/utilities/_variables.scss +147 -0
- package/src/stories/Changelog.stories.tsx +73 -0
- package/src/stories/Components/AssistanceDiary/AssistanceDiary.scss +19 -0
- package/src/stories/Components/AssistanceDiary/AssistanceDiary.stories.tsx +25 -0
- package/src/stories/Components/AssistanceDiary/AssistanceDiary.tsx +57 -0
- package/src/stories/Components/AverageAttended/AverageAttended.scss +39 -0
- package/src/stories/Components/AverageAttended/AverageAttended.stories.tsx +71 -0
- package/src/stories/Components/AverageAttended/AverageAttended.tsx +311 -0
- package/src/stories/Components/Breadcrumb/Breadcrumb.stories.tsx +45 -0
- package/src/stories/Components/Breadcrumb/Breadcrumb.tsx +68 -0
- package/src/stories/Components/Breadcrumb/breadcrumb.scss +82 -0
- package/src/stories/Components/CTA/CTA.scss +76 -0
- package/src/stories/Components/CTA/CTA.stories.tsx +46 -0
- package/src/stories/Components/CTA/CTA.tsx +70 -0
- package/src/stories/Components/Cards/Card CTA/CardCta.stories.tsx +34 -0
- package/src/stories/Components/Cards/Card CTA/CardCta.tsx +81 -0
- package/src/stories/Components/Cards/Card CTA/cardCta.scss +71 -0
- package/src/stories/Components/Cards/Card Expiration/cardExpiration.scss +105 -0
- package/src/stories/Components/Cards/Card Expiration/cardExpiration.stories.tsx +40 -0
- package/src/stories/Components/Cards/Card Expiration/cardExpiration.tsx +95 -0
- package/src/stories/Components/Cards/Card Vertical/CardVertical.stories.tsx +43 -0
- package/src/stories/Components/Cards/Card Vertical/CardVertical.tsx +106 -0
- package/src/stories/Components/Cards/Card Vertical/cardVertical.scss +130 -0
- package/src/stories/Components/Cards/CardActivity/cardActivity.scss +31 -0
- package/src/stories/Components/Cards/CardActivity/cardActivity.stories.tsx +20 -0
- package/src/stories/Components/Cards/CardActivity/cardActivity.tsx +48 -0
- package/src/stories/Components/Cards/CardHorizontal/CardHorizontal.stories.tsx +96 -0
- package/src/stories/Components/Cards/CardHorizontal/CardHorizontal.tsx +94 -0
- package/src/stories/Components/Cards/CardHorizontal/cardHorizontal.scss +65 -0
- package/src/stories/Components/Cards/CardUser/CardUser.stories.tsx +135 -0
- package/src/stories/Components/Cards/CardUser/CardUser.tsx +122 -0
- package/src/stories/Components/Cards/CardUser/cardUser.scss +115 -0
- package/src/stories/Components/Cart/Cart.scss +279 -0
- package/src/stories/Components/Cart/Cart.stories.tsx +350 -0
- package/src/stories/Components/Cart/Cart.tsx +277 -0
- package/src/stories/Components/Collapse/Collapse.scss +339 -0
- package/src/stories/Components/Collapse/Collapse.stories.tsx +766 -0
- package/src/stories/Components/Collapse/Collapse.tsx +451 -0
- package/src/stories/Components/CollapseEdit/CollapseEdit.scss +128 -0
- package/src/stories/Components/CollapseEdit/CollapseEdit.stories.tsx +29 -0
- package/src/stories/Components/CollapseEdit/CollapseEdit.tsx +185 -0
- package/src/stories/Components/CompleteDiary/CompleteDiary.scss +165 -0
- package/src/stories/Components/CompleteDiary/CompleteDiary.stories.tsx +219 -0
- package/src/stories/Components/CompleteDiary/CompleteDiary.tsx +394 -0
- package/src/stories/Components/Dropdown/Dropdown.scss +60 -0
- package/src/stories/Components/Dropdown/Dropdown.stories.tsx +19 -0
- package/src/stories/Components/Dropdown/Dropdown.tsx +99 -0
- package/src/stories/Components/EmptyState/EmptyState.stories.tsx +46 -0
- package/src/stories/Components/EmptyState/EmptyState.tsx +44 -0
- package/src/stories/Components/EmptyState/emptyState.scss +75 -0
- package/src/stories/Components/ErrorPage/ErrorPage.scss +65 -0
- package/src/stories/Components/ErrorPage/ErrorPage.stories.tsx +164 -0
- package/src/stories/Components/ErrorPage/ErrorPage.tsx +107 -0
- package/src/stories/Components/IncomingCall/IncomingCall.scss +27 -0
- package/src/stories/Components/IncomingCall/IncomingCall.stories.tsx +43 -0
- package/src/stories/Components/IncomingCall/IncomingCall.tsx +76 -0
- package/src/stories/Components/ModalConfirm/ModalConfirm.scss +30 -0
- package/src/stories/Components/ModalConfirm/ModalConfirm.stories.tsx +21 -0
- package/src/stories/Components/ModalConfirm/ModalConfirm.tsx +118 -0
- package/src/stories/Components/Pagination/Pagination.scss +42 -0
- package/src/stories/Components/Pagination/Pagination.stories.tsx +25 -0
- package/src/stories/Components/Pagination/Pagination.tsx +143 -0
- package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.scss +26 -0
- package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.stories.tsx +27 -0
- package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.tsx +108 -0
- package/src/stories/Components/ShiftDiary/ShiftDiary.scss +45 -0
- package/src/stories/Components/ShiftDiary/ShiftDiary.stories.tsx +32 -0
- package/src/stories/Components/ShiftDiary/ShiftDiary.tsx +92 -0
- package/src/stories/Components/Stepper/Stepper.stories.tsx +26 -0
- package/src/stories/Components/Stepper/Stepper.tsx +102 -0
- package/src/stories/Components/Stepper/stepper.scss +59 -0
- package/src/stories/Components/Tabs/Tabs.stories.tsx +76 -0
- package/src/stories/Components/Tabs/Tabs.tsx +111 -0
- package/src/stories/Components/Tabs/tabs.scss +118 -0
- package/src/stories/Components/Tooltip/Tooltip.scss +235 -0
- package/src/stories/Components/Tooltip/Tooltip.stories.tsx +125 -0
- package/src/stories/Components/Tooltip/Tooltip.tsx +222 -0
- package/src/stories/Elements/Alert/Alert.stories.tsx +65 -0
- package/src/stories/Elements/Alert/Alert.tsx +49 -0
- package/src/stories/Elements/Alert/alert.scss +189 -0
- package/src/stories/Elements/Badge/Badge.stories.tsx +15 -0
- package/src/stories/Elements/Badge/Badge.tsx +21 -0
- package/src/stories/Elements/Badge/badge.scss +24 -0
- package/src/stories/Elements/Button/Button.stories.tsx +54 -0
- package/src/stories/Elements/Button/Button.tsx +118 -0
- package/src/stories/Elements/Button/button.scss +102 -0
- package/src/stories/Elements/Icon/Icon.stories.tsx +33 -0
- package/src/stories/Elements/Icon/Icon.tsx +57 -0
- package/src/stories/Elements/Icon/icon.scss +15 -0
- package/src/stories/Elements/Icon/icono.svg +1 -0
- package/src/stories/Elements/ProgressBar/ProgressBar.scss +26 -0
- package/src/stories/Elements/ProgressBar/ProgressBar.stories.tsx +19 -0
- package/src/stories/Elements/ProgressBar/ProgressBar.tsx +35 -0
- package/src/stories/Form/Autocomplete/Autocomplete.stories.tsx +55 -0
- package/src/stories/Form/Autocomplete/Autocomplete.tsx +160 -0
- package/src/stories/Form/Autocomplete/autocomplete.scss +311 -0
- package/src/stories/Form/Autocomplete-Prueba/Autocomplete.stories.tsx +50 -0
- package/src/stories/Form/Autocomplete-Prueba/AutocompletePrueba.tsx +83 -0
- package/src/stories/Form/Checkbox/Checkbox.stories.tsx +26 -0
- package/src/stories/Form/Checkbox/Checkbox.tsx +89 -0
- package/src/stories/Form/Checkbox/checkbox.scss +41 -0
- package/src/stories/Form/DatePicker/DatePickerExample.stories.tsx +27 -0
- package/src/stories/Form/DatePicker/DatePickerExample.tsx +65 -0
- package/src/stories/Form/DatePickerComponent/DatePickerComponent.scss +116 -0
- package/src/stories/Form/DatePickerComponent/DatePickerComponent.stories.tsx +37 -0
- package/src/stories/Form/DatePickerComponent/DatePickerComponent.tsx +97 -0
- package/src/stories/Form/Filters/Filters.stories.tsx +84 -0
- package/src/stories/Form/Filters/Filters.tsx +230 -0
- package/src/stories/Form/Filters/filters.scss +261 -0
- package/src/stories/Form/Input/Input.stories.tsx +25 -0
- package/src/stories/Form/Input/Input.tsx +86 -0
- package/src/stories/Form/Input/InputVar.sass +26 -0
- package/src/stories/Form/Input/input.scss +19 -0
- package/src/stories/Form/InputFormControl/Input-form-control.stories.tsx +26 -0
- package/src/stories/Form/InputFormControl/Input-form-control.tsx +48 -0
- package/src/stories/Form/InputFormControl/input-form-control.scss +34 -0
- package/src/stories/Form/Radio/Radio.stories.tsx +19 -0
- package/src/stories/Form/Radio/Radio.tsx +84 -0
- package/src/stories/Form/Radio/radio.scss +19 -0
- package/src/stories/Form/Search/Search.scss +50 -0
- package/src/stories/Form/Search/Search.stories.tsx +26 -0
- package/src/stories/Form/Search/Search.tsx +84 -0
- package/src/stories/Form/Select/Select.stories.tsx +55 -0
- package/src/stories/Form/Select/Select.tsx +121 -0
- package/src/stories/Form/Select/select.scss +303 -0
- package/src/stories/Form/Switch/Switch.stories.tsx +17 -0
- package/src/stories/Form/Switch/Switch.tsx +36 -0
- package/src/stories/Form/Switch/switch.scss +123 -0
- package/src/stories/Form/Textarea/Textarea.stories.tsx +19 -0
- package/src/stories/Form/Textarea/Textarea.tsx +52 -0
- package/src/stories/Form/Textarea/textarea.scss +25 -0
- package/src/stories/Form/UploadFileItem/UploadFileItem.scss +49 -0
- package/src/stories/Form/UploadFileItem/UploadFileItem.stories.tsx +18 -0
- package/src/stories/Form/UploadFileItem/UploadFileItem.tsx +89 -0
- package/src/stories/Form/UploadFiles/UploadFiles.scss +17 -0
- package/src/stories/Form/UploadFiles/UploadFiles.stories.tsx +32 -0
- package/src/stories/Form/UploadFiles/UploadFiles.tsx +177 -0
- package/src/stories/Layout/Footer/Footer.scss +129 -0
- package/src/stories/Layout/Footer/Footer.stories.tsx +101 -0
- package/src/stories/Layout/Footer/Footer.tsx +81 -0
- package/src/stories/Layout/Header/Header.scss +190 -0
- package/src/stories/Layout/Header/Header.stories.tsx +223 -0
- package/src/stories/Layout/Header/Header.tsx +278 -0
- package/src/stories/Layout/HeaderTable/HeaderTable.scss +21 -0
- package/src/stories/Layout/HeaderTable/HeaderTable.stories.tsx +112 -0
- package/src/stories/Layout/HeaderTable/HeaderTable.tsx +72 -0
- package/src/stories/Layout/Sidebar/Sidebar.scss +50 -0
- package/src/stories/Layout/Sidebar/Sidebar.stories.tsx +744 -0
- package/src/stories/Layout/Sidebar/Sidebar.tsx +129 -0
- package/src/stories/Layout/SidebarEmpty/SidebarEmpty.scss +64 -0
- package/src/stories/Layout/SidebarEmpty/SidebarEmpty.stories.tsx +26 -0
- package/src/stories/Layout/SidebarEmpty/SidebarEmpty.tsx +100 -0
- package/src/stories/Layout/Subtitle/Subtitle.scss +88 -0
- package/src/stories/Layout/Subtitle/Subtitle.stories.tsx +46 -0
- package/src/stories/Layout/Subtitle/Subtitle.tsx +108 -0
- package/src/stories/Layout/Title/Title.scss +79 -0
- package/src/stories/Layout/Title/Title.stories.tsx +86 -0
- package/src/stories/Layout/Title/Title.tsx +96 -0
- package/src/stories/Welcome.stories.tsx +111 -0
- package/src/stories/assets/404 Page Not Found _Two Color (1).png +0 -0
- package/src/stories/assets/404 Page Not Found _Two Color.png +0 -0
- package/src/stories/assets/Empty Inbox _Two Color.png +0 -0
- package/src/stories/assets/Loading _Two Color.png +0 -0
- package/src/stories/assets/Notifications_Two Color 1.png +0 -0
- package/src/stories/assets/Online protection_Two Color.png +0 -0
- package/src/stories/assets/Under Constructions _Two Color.png +0 -0
- package/src/stories/assets/bulma.png +0 -0
- package/src/stories/assets/burger.svg +5 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/decor-bg.png +0 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/e-isologo.svg +4 -0
- package/src/stories/assets/e-isotype.svg +4 -0
- package/src/stories/assets/e-logo_negative.svg +14 -0
- package/src/stories/assets/e-logotype.svg +14 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/logo_gobierno_corrientes.svg +9 -0
- package/src/stories/assets/logo_rentas_corrientes.svg +10 -0
- package/src/stories/assets/logo_rentas_corrientes_compacto.svg +10 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/assets/storybook.svg +13 -0
- package/src/stories/assets/thumbnail-black.jpg +0 -0
- package/src/stories/assets/thumbnail-black[2].jpg +0 -0
- package/src/stories/assets/thumbnail.jpg +0 -0
- package/src/stories/assets/thumbnail[2].jpg +0 -0
- package/src/stories/changelog.ts +389 -0
- package/src/utils/functions.ts +57 -0
- package/src/vite-env.d.ts +2 -0
- package/static/e-isologo-192.jpg +0 -0
- package/static/e-isologo.svg +4 -0
- package/static/e-logotype.svg +14 -0
- package/static/favicon.ico +0 -0
- package/tsconfig.json +22 -0
- package/tsconfig.node.json +9 -0
- package/vite.config.ts +22 -0
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
@import "/src/sass/utilities/_variables.scss"
|
|
2
|
+
|
|
3
|
+
// ------------------------------------------ STEPPER VARIABLES ------------------------------------------
|
|
4
|
+
$steps-default-color: $muted-300 !default
|
|
5
|
+
$steps-completed-color: $success-600 !default
|
|
6
|
+
$steps-active-color: $primary-600 !default
|
|
7
|
+
$steps-horizontal-min-width: 10em !default
|
|
8
|
+
$steps-vertical-min-height: 4em !default
|
|
9
|
+
$steps-marker-size: 2 !default
|
|
10
|
+
$steps-divider-size: .2em !default
|
|
11
|
+
$steps-gap-size: .3rem !default
|
|
12
|
+
$steps-hollow-border-size: .3em !default
|
|
13
|
+
$steps-thin-divider-size: 1px !default
|
|
14
|
+
$steps-thin-marker-size: .8em !default
|
|
15
|
+
|
|
16
|
+
=steps-horizontal
|
|
17
|
+
+tablet
|
|
18
|
+
&:not(.is-vertical)
|
|
19
|
+
@content
|
|
20
|
+
&.is-horizontal
|
|
21
|
+
@content
|
|
22
|
+
|
|
23
|
+
=steps-vertical
|
|
24
|
+
+mobile
|
|
25
|
+
&:not(.is-horizontal)
|
|
26
|
+
@content
|
|
27
|
+
&.is-vertical
|
|
28
|
+
@content
|
|
29
|
+
|
|
30
|
+
=steps-all-segments
|
|
31
|
+
&.steps .steps-segment
|
|
32
|
+
@content
|
|
33
|
+
|
|
34
|
+
=steps-active-segment
|
|
35
|
+
&.steps .steps-segment.is-active
|
|
36
|
+
@content
|
|
37
|
+
|
|
38
|
+
=steps-inactive-segments
|
|
39
|
+
&.steps .steps-segment.is-active ~ .steps-segment
|
|
40
|
+
@content
|
|
41
|
+
|
|
42
|
+
.steps
|
|
43
|
+
+block
|
|
44
|
+
|
|
45
|
+
.steps-segment
|
|
46
|
+
position: relative
|
|
47
|
+
&:not(:last-child):after
|
|
48
|
+
// This will contain the horizontal or vertical divider
|
|
49
|
+
content: " "
|
|
50
|
+
display: block
|
|
51
|
+
position: absolute
|
|
52
|
+
|
|
53
|
+
+steps-vertical
|
|
54
|
+
.steps-segment
|
|
55
|
+
display: block
|
|
56
|
+
&:not(:last-child)
|
|
57
|
+
min-height: $steps-vertical-min-height
|
|
58
|
+
&.is-short
|
|
59
|
+
.steps-segment
|
|
60
|
+
flex-grow: 0
|
|
61
|
+
&:not(:last-child)
|
|
62
|
+
//this is commented because text would be running perpendicular to the line, so we won't need as much room
|
|
63
|
+
// min-height: $steps-horizontal-min-width
|
|
64
|
+
|
|
65
|
+
&.is-short.is-centered
|
|
66
|
+
justify-content: center
|
|
67
|
+
|
|
68
|
+
&.is-short.is-bottom
|
|
69
|
+
justify-content: flex-end
|
|
70
|
+
|
|
71
|
+
&:not(.is-short)
|
|
72
|
+
height: 100%
|
|
73
|
+
display: flex
|
|
74
|
+
flex-direction: column
|
|
75
|
+
.steps-segment:not(:last-child)
|
|
76
|
+
flex-grow: 1
|
|
77
|
+
|
|
78
|
+
+steps-horizontal
|
|
79
|
+
display: flex
|
|
80
|
+
.steps-segment:not(:last-child)
|
|
81
|
+
flex-basis: 1rem
|
|
82
|
+
flex-grow: 1
|
|
83
|
+
flex-shrink: 1
|
|
84
|
+
|
|
85
|
+
&.is-narrow
|
|
86
|
+
.steps-segment
|
|
87
|
+
flex-grow: 0
|
|
88
|
+
&:not(:last-child)
|
|
89
|
+
min-width: $steps-horizontal-min-width
|
|
90
|
+
|
|
91
|
+
&.is-narrow.is-centered
|
|
92
|
+
justify-content: center
|
|
93
|
+
|
|
94
|
+
&.is-narrow.is-right
|
|
95
|
+
justify-content: flex-end
|
|
96
|
+
|
|
97
|
+
&.has-content-centered
|
|
98
|
+
text-align: center
|
|
99
|
+
|
|
100
|
+
&.is-balanced, &.has-content-centered
|
|
101
|
+
.steps-segment:last-child
|
|
102
|
+
flex-basis: 1rem
|
|
103
|
+
flex-grow: 1
|
|
104
|
+
flex-shrink: 1
|
|
105
|
+
|
|
106
|
+
&.is-narrow.has-content-centered
|
|
107
|
+
.steps-segment:last-child
|
|
108
|
+
flex-grow: 0
|
|
109
|
+
min-width: $steps-horizontal-min-width
|
|
110
|
+
|
|
111
|
+
.steps-content.is-divider-content
|
|
112
|
+
text-align: center
|
|
113
|
+
|
|
114
|
+
// Marker style
|
|
115
|
+
.steps-marker
|
|
116
|
+
align-items: center
|
|
117
|
+
display: flex
|
|
118
|
+
border-radius: 50%
|
|
119
|
+
font-weight: $weight-bold
|
|
120
|
+
justify-content: center
|
|
121
|
+
// Position & z-index are needed to put it above the divider
|
|
122
|
+
position: relative
|
|
123
|
+
z-index: 5
|
|
124
|
+
|
|
125
|
+
// Use a mixin to define all ratios in the same spot
|
|
126
|
+
=steps-size($size)
|
|
127
|
+
font-size: $size
|
|
128
|
+
|
|
129
|
+
.steps-marker
|
|
130
|
+
height: $size * $steps-marker-size
|
|
131
|
+
width: $size * $steps-marker-size
|
|
132
|
+
overflow: hidden
|
|
133
|
+
|
|
134
|
+
+steps-vertical
|
|
135
|
+
// Draw a vertical divider
|
|
136
|
+
display: flex
|
|
137
|
+
flex-direction: column
|
|
138
|
+
|
|
139
|
+
.steps-segment:not(:last-child):after
|
|
140
|
+
// top and bottom position is almost touching the inner side of a hollow border marker
|
|
141
|
+
bottom: -$steps-gap-size * 0.8
|
|
142
|
+
left: calc(#{$size * (calc($steps-marker-size / 2))} - (#{calc($steps-divider-size / 2)}))
|
|
143
|
+
top: ($size * $steps-marker-size) - ($steps-gap-size * 0.8)
|
|
144
|
+
width: $steps-divider-size
|
|
145
|
+
|
|
146
|
+
// Align the content with the marker
|
|
147
|
+
.steps-content
|
|
148
|
+
margin-left: calc(#{$size * calc($steps-marker-size / 2)} + .5em)
|
|
149
|
+
margin-top: -$size * $steps-marker-size
|
|
150
|
+
padding-left: 1em
|
|
151
|
+
padding-bottom: 1em
|
|
152
|
+
|
|
153
|
+
.steps-content.is-divider-content
|
|
154
|
+
margin-top: 0
|
|
155
|
+
padding-bottom: 0
|
|
156
|
+
|
|
157
|
+
&.has-content-centered
|
|
158
|
+
.steps-content
|
|
159
|
+
padding-top: calc(#{$size * calc($steps-marker-size / 2)} - .5em)
|
|
160
|
+
|
|
161
|
+
&:not(.is-thin)
|
|
162
|
+
&.has-gaps .steps-segment, .steps-segment.has-gaps
|
|
163
|
+
&:not(:last-child):after
|
|
164
|
+
top: ($size * $steps-marker-size) + $steps-gap-size
|
|
165
|
+
bottom: $steps-gap-size
|
|
166
|
+
|
|
167
|
+
+steps-horizontal
|
|
168
|
+
// Draw a horizontal divider
|
|
169
|
+
.steps-segment:not(:last-child):after
|
|
170
|
+
height: $steps-divider-size
|
|
171
|
+
// top and bottom position is almost touching the inner side of a hollow border marker
|
|
172
|
+
left: ($size * $steps-marker-size) - ($steps-gap-size * 0.8)
|
|
173
|
+
right: -$steps-gap-size * 0.8
|
|
174
|
+
top: calc(#{$size * (calc($steps-marker-size / 2))} - (#{calc($steps-divider-size / 2)}))
|
|
175
|
+
|
|
176
|
+
&.has-content-above .steps-segment:not(:last-child)::after
|
|
177
|
+
bottom: calc(#{$size * calc($steps-marker-size / 2)} - (#{calc($steps-divider-size / 2)}))
|
|
178
|
+
top: auto
|
|
179
|
+
|
|
180
|
+
// extra data
|
|
181
|
+
.extra-data
|
|
182
|
+
left: calc(50% + #{($size * calc($steps-marker-size / 2)) + $steps-gap-size})
|
|
183
|
+
right: calc(-50% + #{($size * calc($steps-marker-size / 2)) + $steps-gap-size})
|
|
184
|
+
bottom: 100%
|
|
185
|
+
position: absolute
|
|
186
|
+
|
|
187
|
+
&.has-overflow-right
|
|
188
|
+
overflow: visible
|
|
189
|
+
right: auto
|
|
190
|
+
white-space: nowrap
|
|
191
|
+
min-width: calc(100% - #{$size * calc($steps-marker-size / 2)} - (#{calc($steps-divider-size / 2)}))
|
|
192
|
+
|
|
193
|
+
&.has-overflow-left
|
|
194
|
+
overflow: visible
|
|
195
|
+
left: auto
|
|
196
|
+
white-space: nowrap
|
|
197
|
+
min-width: calc(100% - #{$size * calc($steps-marker-size / 2)} - (#{calc($steps-divider-size / 2)}))
|
|
198
|
+
|
|
199
|
+
&.has-overflow-centered
|
|
200
|
+
overflow: visible
|
|
201
|
+
left: auto
|
|
202
|
+
white-space: nowrap
|
|
203
|
+
min-width: calc(100% - #{$size * calc($steps-marker-size / 2)} - (#{calc($steps-divider-size / 2)}))
|
|
204
|
+
|
|
205
|
+
&.has-content-above .extra-data
|
|
206
|
+
top: 100%
|
|
207
|
+
bottom: auto
|
|
208
|
+
|
|
209
|
+
// Align the content with the marker
|
|
210
|
+
.steps-content
|
|
211
|
+
margin-left: $size * calc($steps-marker-size / 2)
|
|
212
|
+
&:not(:last-child)
|
|
213
|
+
margin-right: -$size * calc($steps-marker-size / 2)
|
|
214
|
+
|
|
215
|
+
&.is-divider-content
|
|
216
|
+
margin-right: -$size * calc($steps-marker-size / 2)
|
|
217
|
+
padding-left: 2em
|
|
218
|
+
padding-right: 2em
|
|
219
|
+
|
|
220
|
+
&.has-content-centered
|
|
221
|
+
.steps-segment:not(:last-child):after
|
|
222
|
+
left: 50%
|
|
223
|
+
right: -50%
|
|
224
|
+
.steps-marker
|
|
225
|
+
position: absolute
|
|
226
|
+
left: calc(50% - #{$size * calc($steps-marker-size / 2)})
|
|
227
|
+
.steps-content
|
|
228
|
+
margin-top: $size * $steps-marker-size
|
|
229
|
+
margin-left: .5em
|
|
230
|
+
margin-right: .5em
|
|
231
|
+
padding-top: .2em
|
|
232
|
+
|
|
233
|
+
&.has-content-above.has-content-centered .steps-content
|
|
234
|
+
margin-bottom: $size * $steps-marker-size
|
|
235
|
+
padding-bottom: .2em
|
|
236
|
+
|
|
237
|
+
&:not(.is-thin)
|
|
238
|
+
&.has-gaps .steps-segment, .steps-segment.has-gaps
|
|
239
|
+
&:not(:last-child):after
|
|
240
|
+
left: ($size * $steps-marker-size) + $steps-gap-size
|
|
241
|
+
right: $steps-gap-size
|
|
242
|
+
|
|
243
|
+
&.has-content-centered
|
|
244
|
+
&.has-gaps .steps-segment, .steps-segment.has-gaps
|
|
245
|
+
&:not(:last-child):after
|
|
246
|
+
left: calc(50% + #{($size * calc($steps-marker-size / 2)) + $steps-gap-size})
|
|
247
|
+
right: calc(-50% + #{($size * calc($steps-marker-size / 2)) + $steps-gap-size})
|
|
248
|
+
|
|
249
|
+
.steps
|
|
250
|
+
+steps-size($size-normal)
|
|
251
|
+
|
|
252
|
+
.steps.is-small
|
|
253
|
+
+steps-size($size-small)
|
|
254
|
+
|
|
255
|
+
.steps.is-medium
|
|
256
|
+
+steps-size($size-medium)
|
|
257
|
+
|
|
258
|
+
.steps.is-large
|
|
259
|
+
+steps-size($size-large)
|
|
260
|
+
|
|
261
|
+
// Divider Default Colors
|
|
262
|
+
.steps-segment
|
|
263
|
+
&:after
|
|
264
|
+
background-color: $steps-completed-color
|
|
265
|
+
|
|
266
|
+
&.is-active
|
|
267
|
+
&:after
|
|
268
|
+
background-color: $steps-default-color
|
|
269
|
+
|
|
270
|
+
&.is-active ~ .steps-segment
|
|
271
|
+
&:after
|
|
272
|
+
background-color: $steps-default-color
|
|
273
|
+
|
|
274
|
+
// Marker Default Colors
|
|
275
|
+
.steps:not(.is-hollow)
|
|
276
|
+
.steps-marker:not(.is-hollow)
|
|
277
|
+
background-color: $steps-completed-color
|
|
278
|
+
color: findColorInvert($steps-completed-color)
|
|
279
|
+
|
|
280
|
+
.steps-segment.is-active
|
|
281
|
+
.steps-marker:not(.is-hollow)
|
|
282
|
+
background-color: $steps-active-color
|
|
283
|
+
color: findColorInvert($steps-active-color)
|
|
284
|
+
|
|
285
|
+
.steps-segment.is-active
|
|
286
|
+
& ~ .steps-segment .steps-marker:not(.is-hollow)
|
|
287
|
+
background-color: $steps-default-color
|
|
288
|
+
color: findColorInvert($steps-default-color)
|
|
289
|
+
|
|
290
|
+
// Hollow style
|
|
291
|
+
.steps.is-hollow .steps-marker,
|
|
292
|
+
.steps-marker.is-hollow
|
|
293
|
+
border: $steps-hollow-border-size solid $steps-completed-color
|
|
294
|
+
|
|
295
|
+
.steps.is-hollow .is-active .steps-marker,
|
|
296
|
+
.steps .is-active .steps-marker.is-hollow
|
|
297
|
+
border-color: $steps-active-color
|
|
298
|
+
|
|
299
|
+
.steps.is-hollow .steps-segment.is-active ~ .steps-segment .steps-marker,
|
|
300
|
+
.steps-segment.is-active ~ .steps-segment .steps-marker.is-hollow
|
|
301
|
+
border-color: $steps-default-color
|
|
302
|
+
|
|
303
|
+
// Override marker color per step
|
|
304
|
+
@each $name, $pair in $colors
|
|
305
|
+
$color: nth($pair, 1)
|
|
306
|
+
$color-invert: nth($pair, 2)
|
|
307
|
+
.steps:not(.is-hollow) .steps-marker:not(.is-hollow)
|
|
308
|
+
&.is-#{$name}
|
|
309
|
+
background-color: $color !important
|
|
310
|
+
color: $color-invert !important
|
|
311
|
+
|
|
312
|
+
.steps.is-hollow .steps-marker,
|
|
313
|
+
.steps .steps-marker.is-hollow
|
|
314
|
+
&.is-#{$name}
|
|
315
|
+
border-color: $color !important
|
|
316
|
+
|
|
317
|
+
// Divider dashed style
|
|
318
|
+
=steps-divider-background($angle, $color, $size)
|
|
319
|
+
background: repeating-linear-gradient($angle, $color, $color $size, transparent $size, transparent #{$size * 2})
|
|
320
|
+
.steps
|
|
321
|
+
+steps-vertical
|
|
322
|
+
&.is-dashed .steps-segment, .steps-segment.is-dashed
|
|
323
|
+
&:after
|
|
324
|
+
+steps-divider-background(0deg, $steps-completed-color, 5px)
|
|
325
|
+
|
|
326
|
+
&.is-dashed .steps-segment.is-active,
|
|
327
|
+
&.is-dashed .steps-segment.is-active ~ .steps-segment,
|
|
328
|
+
.steps-segment.is-active.is-dashed,
|
|
329
|
+
.steps-segment.is-active ~ .steps-segment.is-dashed
|
|
330
|
+
&:after
|
|
331
|
+
+steps-divider-background(0deg, $steps-default-color, 5px)
|
|
332
|
+
|
|
333
|
+
+steps-horizontal
|
|
334
|
+
&.is-dashed .steps-segment,
|
|
335
|
+
.steps-segment.is-dashed
|
|
336
|
+
&:after
|
|
337
|
+
+steps-divider-background(90deg, $steps-completed-color, 10px)
|
|
338
|
+
|
|
339
|
+
// the active segment and any subsequent segment get the default colot
|
|
340
|
+
&.is-dashed .steps-segment.is-active,
|
|
341
|
+
&.is-dashed .steps-segment.is-active ~ .steps-segment,
|
|
342
|
+
.steps-segment.is-active.is-dashed,
|
|
343
|
+
.steps-segment.is-active ~ .steps-segment.is-dashed
|
|
344
|
+
&:after
|
|
345
|
+
+steps-divider-background(90deg, $steps-default-color, 10px)
|
|
346
|
+
|
|
347
|
+
// Thin modifier
|
|
348
|
+
.steps.is-thin
|
|
349
|
+
.steps-marker
|
|
350
|
+
width: $steps-thin-marker-size
|
|
351
|
+
height: $steps-thin-marker-size
|
|
352
|
+
&.is-hollow .steps-marker,
|
|
353
|
+
.steps-marker.is-hollow
|
|
354
|
+
border-width: $steps-thin-divider-size
|
|
355
|
+
height: calc(#{$steps-thin-marker-size} + #{$steps-thin-divider-size})
|
|
356
|
+
width: calc(#{$steps-thin-marker-size} + #{$steps-thin-divider-size})
|
|
357
|
+
|
|
358
|
+
+steps-vertical
|
|
359
|
+
.steps-segment
|
|
360
|
+
&:not(:last-child):after
|
|
361
|
+
bottom: 0
|
|
362
|
+
left: calc(#{calc($steps-thin-marker-size / 2)} - #{calc($steps-thin-divider-size / 2)})
|
|
363
|
+
top: $steps-thin-marker-size
|
|
364
|
+
width: $steps-thin-divider-size
|
|
365
|
+
|
|
366
|
+
.steps-content
|
|
367
|
+
margin-top: -$steps-thin-marker-size * 1.5
|
|
368
|
+
margin-left: $steps-thin-marker-size
|
|
369
|
+
|
|
370
|
+
&.has-gaps .steps-segment, .steps-segment.has-gaps
|
|
371
|
+
&:not(:last-child):after
|
|
372
|
+
bottom: calc($steps-thin-marker-size / 2)
|
|
373
|
+
top: $steps-thin-marker-size * 1.5
|
|
374
|
+
|
|
375
|
+
&.has-content-centered
|
|
376
|
+
.steps-content
|
|
377
|
+
padding-top: $steps-thin-marker-size * 2
|
|
378
|
+
|
|
379
|
+
+steps-horizontal
|
|
380
|
+
.steps-segment
|
|
381
|
+
&:not(:last-child):after
|
|
382
|
+
left: $steps-thin-marker-size
|
|
383
|
+
right: 0
|
|
384
|
+
top: calc(#{calc($steps-thin-marker-size / 2)} - #{calc($steps-thin-divider-size / 2)})
|
|
385
|
+
height: $steps-thin-divider-size
|
|
386
|
+
&.has-content-above .steps-segment:not(:last-child)::after
|
|
387
|
+
bottom: calc(#{calc($steps-thin-marker-size / 2)} - #{calc($steps-thin-divider-size / 2)})
|
|
388
|
+
top: auto
|
|
389
|
+
.steps-content
|
|
390
|
+
margin-top: $steps-thin-marker-size
|
|
391
|
+
|
|
392
|
+
&.has-content-centered
|
|
393
|
+
.steps-segment
|
|
394
|
+
&:not(:last-child):after
|
|
395
|
+
left: calc(50% + #{calc($steps-thin-marker-size / 2)})
|
|
396
|
+
right: calc(-50% + #{calc($steps-thin-marker-size / 2)})
|
|
397
|
+
.steps-marker
|
|
398
|
+
position: absolute
|
|
399
|
+
left: calc(50% - #{calc($steps-thin-marker-size / 2)})
|
|
400
|
+
|
|
401
|
+
&.has-gaps .steps-segment, .steps-segment.has-gaps
|
|
402
|
+
&:not(:last-child):after
|
|
403
|
+
left: $steps-thin-marker-size * 1.5
|
|
404
|
+
right: calc($steps-thin-marker-size / 2)
|
|
405
|
+
|
|
406
|
+
&.has-content-centered.has-gaps .steps-segment, &.has-content-centered .steps-segment.has-gaps
|
|
407
|
+
&:not(:last-child):after
|
|
408
|
+
left: calc(50% + #{(calc($steps-thin-marker-size / 2)) + (calc($steps-thin-marker-size / 2))})
|
|
409
|
+
right: calc(-50% + #{(calc($steps-thin-marker-size / 2)) + (calc($steps-thin-marker-size / 2))})
|
|
410
|
+
|
|
411
|
+
//.has-content-above
|
|
412
|
+
.steps:not(.is-vertical).has-content-above
|
|
413
|
+
.steps-segment
|
|
414
|
+
display: flex
|
|
415
|
+
flex-direction: column-reverse
|
|
416
|
+
|
|
417
|
+
.steps-content
|
|
418
|
+
margin-top: 0
|
|
419
|
+
padding-top: 0
|
|
420
|
+
display: flex
|
|
421
|
+
flex-direction: column-reverse
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@import "/src/sass/utilities/_variables.scss"
|
|
2
|
+
@import "/node_modules/bulma/sass/utilities/controls"
|
|
3
|
+
@import "/node_modules/bulma/sass/utilities/mixins"
|
|
4
|
+
|
|
5
|
+
// ======================== IMPORTS VARIABLES / COMPONENTS ============================
|
|
6
|
+
@import "/src/sass/bulma/variables/components/tabs.sass"
|
|
7
|
+
@import "/src/sass/bulma/variables/components/card.sass"
|
|
8
|
+
@import "/src/sass/bulma/variables/components/navbar.sass"
|
|
9
|
+
|
|
10
|
+
// ======================== IMPORTS VARIABLES / GRID ============================
|
|
11
|
+
@import "/src/sass/bulma/variables/grid/column.sass"
|
|
12
|
+
|
|
13
|
+
// ======================== IMPORTS VARIABLES / ELEMENTS ============================
|
|
14
|
+
@import "/src/sass/bulma/variables/elements/title.sass"
|
|
15
|
+
@import "/src/sass/bulma/variables/elements/notification.sass"
|
|
16
|
+
@import "/src/sass/bulma/variables/elements/button.sass"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
//================================ CARD ================================
|
|
2
|
+
$card-color: $text !default
|
|
3
|
+
$card-background-color: $scheme-main !default
|
|
4
|
+
$card-shadow: $shadow !default
|
|
5
|
+
$card-radius: 16px !default
|
|
6
|
+
|
|
7
|
+
$card-header-background-color: transparent !default
|
|
8
|
+
$card-header-color: $text-strong !default
|
|
9
|
+
$card-header-padding: 0.75rem 1rem !default
|
|
10
|
+
$card-header-shadow: none
|
|
11
|
+
$card-header-weight: $weight-bold !default
|
|
12
|
+
|
|
13
|
+
$card-content-background-color: transparent !default
|
|
14
|
+
$card-content-padding: 1.5rem !default
|
|
15
|
+
|
|
16
|
+
$card-footer-background-color: transparent !default
|
|
17
|
+
$card-footer-border-top: 0px
|
|
18
|
+
$card-footer-padding: 0.75rem !default
|
|
19
|
+
|
|
20
|
+
$card-media-margin: $block-spacing !default
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
//================================ NAVBAR ================================
|
|
2
|
+
$navbar-background-color: $scheme-main !default
|
|
3
|
+
$navbar-box-shadow-size: 0 2px 0 0 !default
|
|
4
|
+
$navbar-box-shadow-color: $background !default
|
|
5
|
+
$navbar-height: 3.25rem !default
|
|
6
|
+
$navbar-padding-vertical: 1rem !default
|
|
7
|
+
$navbar-padding-horizontal: 2rem !default
|
|
8
|
+
$navbar-z: 30 !default
|
|
9
|
+
$navbar-fixed-z: 30 !default
|
|
10
|
+
|
|
11
|
+
$navbar-item-color: $primary-600 !default
|
|
12
|
+
$navbar-item-hover-color: $primary-600 !default
|
|
13
|
+
$navbar-item-hover-background-color: $primary-100 !default
|
|
14
|
+
$navbar-item-active-color: $scheme-invert !default
|
|
15
|
+
$navbar-item-active-background-color: transparent !default
|
|
16
|
+
$navbar-item-img-max-height: 5rem !default
|
|
17
|
+
|
|
18
|
+
$navbar-burger-color: $navbar-item-color !default
|
|
19
|
+
|
|
20
|
+
$navbar-tab-hover-background-color: transparent !default
|
|
21
|
+
$navbar-tab-hover-border-bottom-color: $link !default
|
|
22
|
+
$navbar-tab-active-color: $link !default
|
|
23
|
+
$navbar-tab-active-background-color: transparent !default
|
|
24
|
+
$navbar-tab-active-border-bottom-color: $link !default
|
|
25
|
+
$navbar-tab-active-border-bottom-style: solid !default
|
|
26
|
+
$navbar-tab-active-border-bottom-width: 3px !default
|
|
27
|
+
|
|
28
|
+
$navbar-dropdown-background-color: $scheme-main !default
|
|
29
|
+
$navbar-dropdown-border-top: 2px solid $border !default
|
|
30
|
+
$navbar-dropdown-offset: -4px !default
|
|
31
|
+
$navbar-dropdown-arrow: $link !default
|
|
32
|
+
$navbar-dropdown-radius: $radius-large !default
|
|
33
|
+
$navbar-dropdown-z: 20 !default
|
|
34
|
+
|
|
35
|
+
$navbar-dropdown-boxed-radius: $radius-large !default
|
|
36
|
+
$navbar-dropdown-boxed-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1), 0 0 0 1px bulmaRgba($scheme-invert, 0.1) !default
|
|
37
|
+
|
|
38
|
+
$navbar-dropdown-item-hover-color: $scheme-invert !default
|
|
39
|
+
$navbar-dropdown-item-hover-background-color: $background !default
|
|
40
|
+
$navbar-dropdown-item-active-color: $link !default
|
|
41
|
+
$navbar-dropdown-item-active-background-color: $background !default
|
|
42
|
+
|
|
43
|
+
$navbar-divider-background-color: $background !default
|
|
44
|
+
$navbar-divider-height: 2px !default
|
|
45
|
+
|
|
46
|
+
$navbar-bottom-box-shadow-size: 0 -2px 0 0 !default
|
|
47
|
+
|
|
48
|
+
$navbar-breakpoint: $breakpoint_header3_burger !default
|
|
49
|
+
|
|
50
|
+
$navbar-colors: $colors !default
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
//================================ TABS ================================
|
|
2
|
+
$tabs-border-bottom-color: transparent !default
|
|
3
|
+
$tabs-border-bottom-style: solid !default
|
|
4
|
+
$tabs-border-bottom-width: 3px !default
|
|
5
|
+
$tabs-link-color: $text-800 !default
|
|
6
|
+
$tabs-link-hover-border-bottom-color: $primary-600 !default
|
|
7
|
+
$tabs-link-hover-color: $primary-600 !default
|
|
8
|
+
$tabs-link-active-border-bottom-color: $primary-600 !default
|
|
9
|
+
$tabs-link-active-color: $primary-600 !default
|
|
10
|
+
$tabs-link-padding: 0.5em 1em !default
|
|
11
|
+
|
|
12
|
+
$tabs-boxed-link-radius: $radius !default
|
|
13
|
+
$tabs-boxed-link-hover-background-color: $background !default
|
|
14
|
+
$tabs-boxed-link-hover-border-bottom-color: $border !default
|
|
15
|
+
|
|
16
|
+
$tabs-boxed-link-active-background-color: $scheme-main !default
|
|
17
|
+
$tabs-boxed-link-active-border-color: $border !default
|
|
18
|
+
$tabs-boxed-link-active-border-bottom-color: transparent !default
|
|
19
|
+
|
|
20
|
+
$tabs-toggle-link-border-color: $border !default
|
|
21
|
+
$tabs-toggle-link-border-style: solid !default
|
|
22
|
+
$tabs-toggle-link-border-width: 1px !default
|
|
23
|
+
$tabs-toggle-link-hover-background-color: $background !default
|
|
24
|
+
$tabs-toggle-link-hover-border-color: $border-hover !default
|
|
25
|
+
$tabs-toggle-link-radius: $radius !default
|
|
26
|
+
$tabs-toggle-link-active-background-color: $link !default
|
|
27
|
+
$tabs-toggle-link-active-border-color: $link !default
|
|
28
|
+
$tabs-toggle-link-active-color: $link-invert !default
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@import "/src/sass/utilities/_variables.scss"
|
|
2
|
+
|
|
3
|
+
$button-color: $text-strong !default
|
|
4
|
+
$button-background-color: $scheme-main !default
|
|
5
|
+
$button-family: 'SF UI Text', sans-serif !default //EDITADO
|
|
6
|
+
|
|
7
|
+
$button-border-color: $border !default
|
|
8
|
+
$button-border-width: $control-border-width !default
|
|
9
|
+
|
|
10
|
+
$button-padding-vertical: calc(0.5em - #{$button-border-width}) !default //EDITADO
|
|
11
|
+
$button-padding-horizontal: 1em !default
|
|
12
|
+
|
|
13
|
+
$button-hover-color: $link-hover !default
|
|
14
|
+
$button-hover-border-color: $link-hover-border !default
|
|
15
|
+
|
|
16
|
+
$button-focus-color: $link-focus !default
|
|
17
|
+
$button-focus-border-color: $primary-600 !default //EDITADO
|
|
18
|
+
$button-focus-box-shadow-size: 0 0 0 0.125em !default
|
|
19
|
+
$button-focus-box-shadow-color: bulmaRgba($primary-600, 0.25) !default //EDITADO
|
|
20
|
+
|
|
21
|
+
$button-active-color: $link-active !default
|
|
22
|
+
$button-active-border-color: $primary-600 !default //EDITADO
|
|
23
|
+
|
|
24
|
+
$button-text-color: $text !default
|
|
25
|
+
$button-text-decoration: underline !default
|
|
26
|
+
$button-text-hover-background-color: $background !default
|
|
27
|
+
$button-text-hover-color: $text-strong !default
|
|
28
|
+
|
|
29
|
+
$button-ghost-background: none !default
|
|
30
|
+
$button-ghost-border-color: transparent !default
|
|
31
|
+
$button-ghost-color: $link !default
|
|
32
|
+
$button-ghost-decoration: none !default
|
|
33
|
+
$button-ghost-hover-color: $link !default
|
|
34
|
+
$button-ghost-hover-decoration: underline !default
|
|
35
|
+
|
|
36
|
+
$button-disabled-background-color: $scheme-main !default
|
|
37
|
+
$button-disabled-border-color: $border !default
|
|
38
|
+
$button-disabled-shadow: none !default
|
|
39
|
+
$button-disabled-opacity: 0.5 !default
|
|
40
|
+
|
|
41
|
+
$button-static-color: $text-light !default
|
|
42
|
+
$button-static-background-color: $scheme-main-ter !default
|
|
43
|
+
$button-static-border-color: $border !default
|
|
44
|
+
|
|
45
|
+
$button-colors: $colors !default
|
|
46
|
+
$button-responsive-sizes: ("mobile": ("small": ($size-small * 0.75), "normal": ($size-small * 0.875), "medium": $size-small, "large": $size-normal), "tablet-only": ("small": ($size-small * 0.875), "normal": ($size-small), "medium": $size-normal, "large": $size-medium)) !default
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
$notification-background-color: $background !default
|
|
2
|
+
$notification-code-background-color: $scheme-main !default
|
|
3
|
+
$notification-radius: $radius !default
|
|
4
|
+
$notification-padding: 0px !default
|
|
5
|
+
$notification-padding-ltr: 0px !default
|
|
6
|
+
$notification-padding-rtl: 0px !default
|
|
7
|
+
|
|
8
|
+
$notification-colors: $colors !default
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@import "/src/sass/utilities/_variables.scss"
|
|
2
|
+
|
|
3
|
+
$title-color: $text-strong !default
|
|
4
|
+
$title-family: false !default
|
|
5
|
+
$title-size: $size-3 !default
|
|
6
|
+
$title-weight: $fw-semibold !default
|
|
7
|
+
$title-line-height: 150% !default
|
|
8
|
+
$title-strong-color: inherit !default
|
|
9
|
+
$title-strong-weight: inherit !default
|
|
10
|
+
$title-sub-size: 0.75em !default
|
|
11
|
+
$title-sup-size: 0.75em !default
|
|
12
|
+
|
|
13
|
+
$subtitle-color: $text !default
|
|
14
|
+
$subtitle-family: false !default
|
|
15
|
+
$subtitle-size: $size-5 !default
|
|
16
|
+
$subtitle-weight: $weight-normal !default
|
|
17
|
+
$subtitle-line-height: 1.25 !default
|
|
18
|
+
$subtitle-strong-color: $text-strong !default
|
|
19
|
+
$subtitle-strong-weight: $weight-semibold !default
|
|
20
|
+
$subtitle-negative-margin: -1.25rem !default
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.elv-component
|
|
2
|
+
// BULMA IMPORTS -----------------------------
|
|
3
|
+
//Base
|
|
4
|
+
@import "./utilities/bulma-variables.sass"
|
|
5
|
+
@import 'bulma/bulma.sass'
|
|
6
|
+
|
|
7
|
+
//EXTENSIONS
|
|
8
|
+
@import "./bulma/extensions/extensions"
|
|
9
|
+
@import '/src/sass/utilities/_helpers.scss'
|
|
10
|
+
|
|
11
|
+
// ICONS -----------------------------
|
|
12
|
+
@import '@fortawesome/fontawesome-free/css/all.css'
|
|
13
|
+
|
|
14
|
+
// base -----------------------------
|
|
15
|
+
@import './base/_typo'
|
|
16
|
+
@import './base/_base.scss'
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@import "/src/sass/utilities/_variables.scss"
|
|
2
|
+
@import "/src/sass/utilities/_derived-variables"
|
|
3
|
+
@import "/node_modules/bulma/sass/utilities/controls"
|
|
4
|
+
@import "/node_modules/bulma/sass/utilities/mixins"
|
|
5
|
+
|
|
6
|
+
// ======================== IMPORTS VARIABLES / COMPONENTS ============================
|
|
7
|
+
@import "/src/sass/bulma/variables/components/tabs.sass"
|
|
8
|
+
@import "/src/sass/bulma/variables/components/card.sass"
|
|
9
|
+
@import "/src/sass/bulma/variables/components/navbar.sass"
|
|
10
|
+
|
|
11
|
+
// ======================== IMPORTS VARIABLES / GRID ============================
|
|
12
|
+
@import "/src/sass/bulma/variables/grid/column.sass"
|
|
13
|
+
|
|
14
|
+
// ======================== IMPORTS VARIABLES / ELEMENTS ============================
|
|
15
|
+
@import "/src/sass/bulma/variables/elements/title.sass"
|
|
16
|
+
@import "/src/sass/bulma/variables/elements/notification.sass"
|
|
17
|
+
@import "/src/sass/bulma/variables/elements/button.sass"
|
|
18
|
+
|
|
19
|
+
// ======================== IMPORTS VARIABLES / FORMS ============================
|
|
20
|
+
@import "/src/stories/Form/Input/InputVar.sass"
|