jobdone-shared-files 0.0.1-beta.2
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/ProjectManagement/projectNavbar.vue +168 -0
- package/README.md +27 -0
- package/common/directives/collapse.js +13 -0
- package/common/format.js +13 -0
- package/index.js +15 -0
- package/package.json +18 -0
- package/paginate.vue +139 -0
- package/style/css/vue-loading-overlay/index.css +40 -0
- package/style/scss/Bootstrap/_functions.scss +302 -0
- package/style/scss/Bootstrap/_mixins.scss +42 -0
- package/style/scss/Bootstrap/mixins/_alert.scss +18 -0
- package/style/scss/Bootstrap/mixins/_backdrop.scss +14 -0
- package/style/scss/Bootstrap/mixins/_banner.scss +7 -0
- package/style/scss/Bootstrap/mixins/_border-radius.scss +78 -0
- package/style/scss/Bootstrap/mixins/_box-shadow.scss +18 -0
- package/style/scss/Bootstrap/mixins/_breakpoints.scss +127 -0
- package/style/scss/Bootstrap/mixins/_buttons.scss +70 -0
- package/style/scss/Bootstrap/mixins/_caret.scss +69 -0
- package/style/scss/Bootstrap/mixins/_clearfix.scss +9 -0
- package/style/scss/Bootstrap/mixins/_color-mode.scss +21 -0
- package/style/scss/Bootstrap/mixins/_color-scheme.scss +7 -0
- package/style/scss/Bootstrap/mixins/_container.scss +11 -0
- package/style/scss/Bootstrap/mixins/_deprecate.scss +10 -0
- package/style/scss/Bootstrap/mixins/_forms.scss +153 -0
- package/style/scss/Bootstrap/mixins/_gradients.scss +47 -0
- package/style/scss/Bootstrap/mixins/_grid.scss +151 -0
- package/style/scss/Bootstrap/mixins/_image.scss +16 -0
- package/style/scss/Bootstrap/mixins/_list-group.scss +27 -0
- package/style/scss/Bootstrap/mixins/_lists.scss +7 -0
- package/style/scss/Bootstrap/mixins/_pagination.scss +10 -0
- package/style/scss/Bootstrap/mixins/_reset-text.scss +17 -0
- package/style/scss/Bootstrap/mixins/_resize.scss +6 -0
- package/style/scss/Bootstrap/mixins/_table-variants.scss +24 -0
- package/style/scss/Bootstrap/mixins/_text-truncate.scss +8 -0
- package/style/scss/Bootstrap/mixins/_transition.scss +26 -0
- package/style/scss/Bootstrap/mixins/_utilities.scss +97 -0
- package/style/scss/Bootstrap/mixins/_visually-hidden.scss +29 -0
- package/style/scss/Bootstrap/vendor/_rfs.scss +354 -0
- package/style/scss/Settings/_Mixins.scss +228 -0
- package/style/scss/Settings/_basic-import.scss +5 -0
- package/style/scss/Settings/_bs-variables-dark.scss +70 -0
- package/style/scss/Settings/_bs-variables.scss +1703 -0
- package/style/scss/Settings/_color-mode.scss +123 -0
- package/style/scss/Settings/_custom-variables.scss +7 -0
- package/tagEditor.vue +264 -0
- package/tree.vue +62 -0
- package/treeItem.vue +367 -0
- package/vueLoadingOverlay.vue +77 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
// Utility generator
|
|
2
|
+
// Used to generate utilities & print utilities
|
|
3
|
+
@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {
|
|
4
|
+
$values: map-get($utility, values);
|
|
5
|
+
|
|
6
|
+
// If the values are a list or string, convert it into a map
|
|
7
|
+
@if type-of($values) == "string" or type-of(nth($values, 1)) != "list" {
|
|
8
|
+
$values: zip($values, $values);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@each $key, $value in $values {
|
|
12
|
+
$properties: map-get($utility, property);
|
|
13
|
+
|
|
14
|
+
// Multiple properties are possible, for example with vertical or horizontal margins or paddings
|
|
15
|
+
@if type-of($properties) == "string" {
|
|
16
|
+
$properties: append((), $properties);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Use custom class if present
|
|
20
|
+
$property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));
|
|
21
|
+
$property-class: if($property-class == null, "", $property-class);
|
|
22
|
+
|
|
23
|
+
// Use custom CSS variable name if present, otherwise default to `class`
|
|
24
|
+
$css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));
|
|
25
|
+
|
|
26
|
+
// State params to generate pseudo-classes
|
|
27
|
+
$state: if(map-has-key($utility, state), map-get($utility, state), ());
|
|
28
|
+
|
|
29
|
+
$infix: if($property-class == "" and str-slice($infix, 1, 1) == "-", str-slice($infix, 2), $infix);
|
|
30
|
+
|
|
31
|
+
// Don't prefix if value key is null (e.g. with shadow class)
|
|
32
|
+
$property-class-modifier: if($key, if($property-class == "" and $infix == "", "", "-") + $key, "");
|
|
33
|
+
|
|
34
|
+
@if map-get($utility, rfs) {
|
|
35
|
+
// Inside the media query
|
|
36
|
+
@if $is-rfs-media-query {
|
|
37
|
+
$val: rfs-value($value);
|
|
38
|
+
|
|
39
|
+
// Do not render anything if fluid and non fluid values are the same
|
|
40
|
+
$value: if($val == rfs-fluid-value($value), null, $val);
|
|
41
|
+
}
|
|
42
|
+
@else {
|
|
43
|
+
$value: rfs-fluid-value($value);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
$is-css-var: map-get($utility, css-var);
|
|
48
|
+
$is-local-vars: map-get($utility, local-vars);
|
|
49
|
+
$is-rtl: map-get($utility, rtl);
|
|
50
|
+
|
|
51
|
+
@if $value != null {
|
|
52
|
+
@if $is-rtl == false {
|
|
53
|
+
/* rtl:begin:remove */
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@if $is-css-var {
|
|
57
|
+
.#{$property-class + $infix + $property-class-modifier} {
|
|
58
|
+
--#{$prefix}#{$css-variable-name}: #{$value};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@each $pseudo in $state {
|
|
62
|
+
.#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {
|
|
63
|
+
--#{$prefix}#{$css-variable-name}: #{$value};
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
} @else {
|
|
67
|
+
.#{$property-class + $infix + $property-class-modifier} {
|
|
68
|
+
@each $property in $properties {
|
|
69
|
+
@if $is-local-vars {
|
|
70
|
+
@each $local-var, $variable in $is-local-vars {
|
|
71
|
+
--#{$prefix}#{$local-var}: #{$variable};
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
#{$property}: $value if($enable-important-utilities, !important, null);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@each $pseudo in $state {
|
|
79
|
+
.#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {
|
|
80
|
+
@each $property in $properties {
|
|
81
|
+
@if $is-local-vars {
|
|
82
|
+
@each $local-var, $variable in $is-local-vars {
|
|
83
|
+
--#{$prefix}#{$local-var}: #{$variable};
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
#{$property}: $value if($enable-important-utilities, !important, null);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@if $is-rtl == false {
|
|
93
|
+
/* rtl:end:remove */
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
// Hide content visually while keeping it accessible to assistive technologies
|
|
4
|
+
//
|
|
5
|
+
// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
|
|
6
|
+
// See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/
|
|
7
|
+
|
|
8
|
+
@mixin visually-hidden() {
|
|
9
|
+
position: absolute !important;
|
|
10
|
+
width: 1px !important;
|
|
11
|
+
height: 1px !important;
|
|
12
|
+
padding: 0 !important;
|
|
13
|
+
margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686
|
|
14
|
+
overflow: hidden !important;
|
|
15
|
+
clip: rect(0, 0, 0, 0) !important;
|
|
16
|
+
white-space: nowrap !important;
|
|
17
|
+
border: 0 !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Use to only display content when it's focused, or one of its child elements is focused
|
|
21
|
+
// (i.e. when focus is within the element/container that the class was applied to)
|
|
22
|
+
//
|
|
23
|
+
// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
|
24
|
+
|
|
25
|
+
@mixin visually-hidden-focusable() {
|
|
26
|
+
&:not(:focus):not(:focus-within) {
|
|
27
|
+
@include visually-hidden();
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
// stylelint-disable property-blacklist, scss/dollar-variable-default
|
|
2
|
+
|
|
3
|
+
// SCSS RFS mixin
|
|
4
|
+
//
|
|
5
|
+
// Automated responsive values for font sizes, paddings, margins and much more
|
|
6
|
+
//
|
|
7
|
+
// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)
|
|
8
|
+
|
|
9
|
+
// Configuration
|
|
10
|
+
|
|
11
|
+
// Base value
|
|
12
|
+
$rfs-base-value: 1.25rem !default;
|
|
13
|
+
$rfs-unit: rem !default;
|
|
14
|
+
|
|
15
|
+
@if $rfs-unit != rem and $rfs-unit != px {
|
|
16
|
+
@error "`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.";
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Breakpoint at where values start decreasing if screen width is smaller
|
|
20
|
+
$rfs-breakpoint: 1200px !default;
|
|
21
|
+
$rfs-breakpoint-unit: px !default;
|
|
22
|
+
|
|
23
|
+
@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {
|
|
24
|
+
@error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Resize values based on screen height and width
|
|
28
|
+
$rfs-two-dimensional: false !default;
|
|
29
|
+
|
|
30
|
+
// Factor of decrease
|
|
31
|
+
$rfs-factor: 10 !default;
|
|
32
|
+
|
|
33
|
+
@if type-of($rfs-factor) != number or $rfs-factor <= 1 {
|
|
34
|
+
@error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// Mode. Possibilities: "min-media-query", "max-media-query"
|
|
38
|
+
$rfs-mode: min-media-query !default;
|
|
39
|
+
|
|
40
|
+
// Generate enable or disable classes. Possibilities: false, "enable" or "disable"
|
|
41
|
+
$rfs-class: false !default;
|
|
42
|
+
|
|
43
|
+
// 1 rem = $rfs-rem-value px
|
|
44
|
+
$rfs-rem-value: 16 !default;
|
|
45
|
+
|
|
46
|
+
// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14
|
|
47
|
+
$rfs-safari-iframe-resize-bug-fix: false !default;
|
|
48
|
+
|
|
49
|
+
// Disable RFS by setting $enable-rfs to false
|
|
50
|
+
$enable-rfs: true !default;
|
|
51
|
+
|
|
52
|
+
// Cache $rfs-base-value unit
|
|
53
|
+
$rfs-base-value-unit: unit($rfs-base-value);
|
|
54
|
+
|
|
55
|
+
@function divide($dividend, $divisor, $precision: 10) {
|
|
56
|
+
$sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
|
|
57
|
+
$dividend: abs($dividend);
|
|
58
|
+
$divisor: abs($divisor);
|
|
59
|
+
@if $dividend == 0 {
|
|
60
|
+
@return 0;
|
|
61
|
+
}
|
|
62
|
+
@if $divisor == 0 {
|
|
63
|
+
@error "Cannot divide by 0";
|
|
64
|
+
}
|
|
65
|
+
$remainder: $dividend;
|
|
66
|
+
$result: 0;
|
|
67
|
+
$factor: 10;
|
|
68
|
+
@while ($remainder > 0 and $precision >= 0) {
|
|
69
|
+
$quotient: 0;
|
|
70
|
+
@while ($remainder >= $divisor) {
|
|
71
|
+
$remainder: $remainder - $divisor;
|
|
72
|
+
$quotient: $quotient + 1;
|
|
73
|
+
}
|
|
74
|
+
$result: $result * 10 + $quotient;
|
|
75
|
+
$factor: $factor * .1;
|
|
76
|
+
$remainder: $remainder * 10;
|
|
77
|
+
$precision: $precision - 1;
|
|
78
|
+
@if ($precision < 0 and $remainder >= $divisor * 5) {
|
|
79
|
+
$result: $result + 1;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
$result: $result * $factor * $sign;
|
|
83
|
+
$dividend-unit: unit($dividend);
|
|
84
|
+
$divisor-unit: unit($divisor);
|
|
85
|
+
$unit-map: (
|
|
86
|
+
"px": 1px,
|
|
87
|
+
"rem": 1rem,
|
|
88
|
+
"em": 1em,
|
|
89
|
+
"%": 1%
|
|
90
|
+
);
|
|
91
|
+
@if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
|
|
92
|
+
$result: $result * map-get($unit-map, $dividend-unit);
|
|
93
|
+
}
|
|
94
|
+
@return $result;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Remove px-unit from $rfs-base-value for calculations
|
|
98
|
+
@if $rfs-base-value-unit == px {
|
|
99
|
+
$rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);
|
|
100
|
+
}
|
|
101
|
+
@else if $rfs-base-value-unit == rem {
|
|
102
|
+
$rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// Cache $rfs-breakpoint unit to prevent multiple calls
|
|
106
|
+
$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);
|
|
107
|
+
|
|
108
|
+
// Remove unit from $rfs-breakpoint for calculations
|
|
109
|
+
@if $rfs-breakpoint-unit-cache == px {
|
|
110
|
+
$rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);
|
|
111
|
+
}
|
|
112
|
+
@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == "em" {
|
|
113
|
+
$rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Calculate the media query value
|
|
117
|
+
$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});
|
|
118
|
+
$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);
|
|
119
|
+
$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);
|
|
120
|
+
|
|
121
|
+
// Internal mixin used to determine which media query needs to be used
|
|
122
|
+
@mixin _rfs-media-query {
|
|
123
|
+
@if $rfs-two-dimensional {
|
|
124
|
+
@if $rfs-mode == max-media-query {
|
|
125
|
+
@media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {
|
|
126
|
+
@content;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
@else {
|
|
130
|
+
@media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {
|
|
131
|
+
@content;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
@else {
|
|
136
|
+
@media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {
|
|
137
|
+
@content;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// Internal mixin that adds disable classes to the selector if needed.
|
|
143
|
+
@mixin _rfs-rule {
|
|
144
|
+
@if $rfs-class == disable and $rfs-mode == max-media-query {
|
|
145
|
+
// Adding an extra class increases specificity, which prevents the media query to override the property
|
|
146
|
+
&,
|
|
147
|
+
.disable-rfs &,
|
|
148
|
+
&.disable-rfs {
|
|
149
|
+
@content;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
@else if $rfs-class == enable and $rfs-mode == min-media-query {
|
|
153
|
+
.enable-rfs &,
|
|
154
|
+
&.enable-rfs {
|
|
155
|
+
@content;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
@else {
|
|
159
|
+
@content;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// Internal mixin that adds enable classes to the selector if needed.
|
|
164
|
+
@mixin _rfs-media-query-rule {
|
|
165
|
+
|
|
166
|
+
@if $rfs-class == enable {
|
|
167
|
+
@if $rfs-mode == min-media-query {
|
|
168
|
+
@content;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
@include _rfs-media-query {
|
|
172
|
+
.enable-rfs &,
|
|
173
|
+
&.enable-rfs {
|
|
174
|
+
@content;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
@else {
|
|
179
|
+
@if $rfs-class == disable and $rfs-mode == min-media-query {
|
|
180
|
+
.disable-rfs &,
|
|
181
|
+
&.disable-rfs {
|
|
182
|
+
@content;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
@include _rfs-media-query {
|
|
186
|
+
@content;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// Helper function to get the formatted non-responsive value
|
|
192
|
+
@function rfs-value($values) {
|
|
193
|
+
// Convert to list
|
|
194
|
+
$values: if(type-of($values) != list, ($values,), $values);
|
|
195
|
+
|
|
196
|
+
$val: '';
|
|
197
|
+
|
|
198
|
+
// Loop over each value and calculate value
|
|
199
|
+
@each $value in $values {
|
|
200
|
+
@if $value == 0 {
|
|
201
|
+
$val: $val + ' 0';
|
|
202
|
+
}
|
|
203
|
+
@else {
|
|
204
|
+
// Cache $value unit
|
|
205
|
+
$unit: if(type-of($value) == "number", unit($value), false);
|
|
206
|
+
|
|
207
|
+
@if $unit == px {
|
|
208
|
+
// Convert to rem if needed
|
|
209
|
+
$val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);
|
|
210
|
+
}
|
|
211
|
+
@else if $unit == rem {
|
|
212
|
+
// Convert to px if needed
|
|
213
|
+
$val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);
|
|
214
|
+
}
|
|
215
|
+
@else {
|
|
216
|
+
// If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
|
|
217
|
+
$val: $val + ' ' + $value;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// Remove first space
|
|
223
|
+
@return unquote(str-slice($val, 2));
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// Helper function to get the responsive value calculated by RFS
|
|
227
|
+
@function rfs-fluid-value($values) {
|
|
228
|
+
// Convert to list
|
|
229
|
+
$values: if(type-of($values) != list, ($values,), $values);
|
|
230
|
+
|
|
231
|
+
$val: '';
|
|
232
|
+
|
|
233
|
+
// Loop over each value and calculate value
|
|
234
|
+
@each $value in $values {
|
|
235
|
+
@if $value == 0 {
|
|
236
|
+
$val: $val + ' 0';
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
@else {
|
|
240
|
+
// Cache $value unit
|
|
241
|
+
$unit: if(type-of($value) == "number", unit($value), false);
|
|
242
|
+
|
|
243
|
+
// If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
|
|
244
|
+
@if not $unit or $unit != px and $unit != rem {
|
|
245
|
+
$val: $val + ' ' + $value;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
@else {
|
|
249
|
+
// Remove unit from $value for calculations
|
|
250
|
+
$value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));
|
|
251
|
+
|
|
252
|
+
// Only add the media query if the value is greater than the minimum value
|
|
253
|
+
@if abs($value) <= $rfs-base-value or not $enable-rfs {
|
|
254
|
+
$val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);
|
|
255
|
+
}
|
|
256
|
+
@else {
|
|
257
|
+
// Calculate the minimum value
|
|
258
|
+
$value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);
|
|
259
|
+
|
|
260
|
+
// Calculate difference between $value and the minimum value
|
|
261
|
+
$value-diff: abs($value) - $value-min;
|
|
262
|
+
|
|
263
|
+
// Base value formatting
|
|
264
|
+
$min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);
|
|
265
|
+
|
|
266
|
+
// Use negative value if needed
|
|
267
|
+
$min-width: if($value < 0, -$min-width, $min-width);
|
|
268
|
+
|
|
269
|
+
// Use `vmin` if two-dimensional is enabled
|
|
270
|
+
$variable-unit: if($rfs-two-dimensional, vmin, vw);
|
|
271
|
+
|
|
272
|
+
// Calculate the variable width between 0 and $rfs-breakpoint
|
|
273
|
+
$variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};
|
|
274
|
+
|
|
275
|
+
// Return the calculated value
|
|
276
|
+
$val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
// Remove first space
|
|
283
|
+
@return unquote(str-slice($val, 2));
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
// RFS mixin
|
|
287
|
+
@mixin rfs($values, $property: font-size) {
|
|
288
|
+
@if $values != null {
|
|
289
|
+
$val: rfs-value($values);
|
|
290
|
+
$fluidVal: rfs-fluid-value($values);
|
|
291
|
+
|
|
292
|
+
// Do not print the media query if responsive & non-responsive values are the same
|
|
293
|
+
@if $val == $fluidVal {
|
|
294
|
+
#{$property}: $val;
|
|
295
|
+
}
|
|
296
|
+
@else {
|
|
297
|
+
@include _rfs-rule {
|
|
298
|
+
#{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);
|
|
299
|
+
|
|
300
|
+
// Include safari iframe resize fix if needed
|
|
301
|
+
min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
@include _rfs-media-query-rule {
|
|
305
|
+
#{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
// Shorthand helper mixins
|
|
312
|
+
@mixin font-size($value) {
|
|
313
|
+
@include rfs($value);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
@mixin padding($value) {
|
|
317
|
+
@include rfs($value, padding);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
@mixin padding-top($value) {
|
|
321
|
+
@include rfs($value, padding-top);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
@mixin padding-right($value) {
|
|
325
|
+
@include rfs($value, padding-right);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
@mixin padding-bottom($value) {
|
|
329
|
+
@include rfs($value, padding-bottom);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
@mixin padding-left($value) {
|
|
333
|
+
@include rfs($value, padding-left);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
@mixin margin($value) {
|
|
337
|
+
@include rfs($value, margin);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
@mixin margin-top($value) {
|
|
341
|
+
@include rfs($value, margin-top);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
@mixin margin-right($value) {
|
|
345
|
+
@include rfs($value, margin-right);
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
@mixin margin-bottom($value) {
|
|
349
|
+
@include rfs($value, margin-bottom);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
@mixin margin-left($value) {
|
|
353
|
+
@include rfs($value, margin-left);
|
|
354
|
+
}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
// ====================================
|
|
2
|
+
// Custom Mixins 清單 (依順序排序)
|
|
3
|
+
// ====================================
|
|
4
|
+
|
|
5
|
+
// Layout 各種置中方法
|
|
6
|
+
// scrollbar樣式
|
|
7
|
+
|
|
8
|
+
// 尺寸設定: rwd-square / size / solid-size
|
|
9
|
+
// Text: 文字溢排
|
|
10
|
+
// List Style: 數字標號
|
|
11
|
+
|
|
12
|
+
// Image 背景 2x 3x 設定
|
|
13
|
+
|
|
14
|
+
// ====================================
|
|
15
|
+
// Layout 各種置中方法
|
|
16
|
+
// ====================================
|
|
17
|
+
|
|
18
|
+
// 使用 flex 上下左右置中
|
|
19
|
+
@mixin flex-center() {
|
|
20
|
+
display: flex;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
align-items: center;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// 使用 position 上下左右置中
|
|
26
|
+
@mixin position-center() {
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 0;
|
|
29
|
+
left: 0;
|
|
30
|
+
right: 0;
|
|
31
|
+
bottom: 0;
|
|
32
|
+
margin: auto;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// 使用inline-block:before垂直至中
|
|
36
|
+
@mixin vertical-middle() {
|
|
37
|
+
// 加在父層
|
|
38
|
+
&:before {
|
|
39
|
+
content: "";
|
|
40
|
+
display: inline-block;
|
|
41
|
+
vertical-align: middle;
|
|
42
|
+
width: 0;
|
|
43
|
+
height: 100%;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@mixin vertical-middle-item() {
|
|
48
|
+
// 加在要置中的項目
|
|
49
|
+
display: inline-block;
|
|
50
|
+
vertical-align: middle;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// ====================================
|
|
54
|
+
// scrollbar樣式
|
|
55
|
+
// ====================================
|
|
56
|
+
|
|
57
|
+
:root {
|
|
58
|
+
--scrollbar-width: 10px;
|
|
59
|
+
--scrollbar-hover-color: var(--bs-primary);
|
|
60
|
+
}
|
|
61
|
+
@mixin scrollbar(
|
|
62
|
+
$background: rgba(var(--bs-emphasis-color-rgb), 0.05),
|
|
63
|
+
$default-color: rgba(var(--bs-emphasis-color-rgb), 0.2),
|
|
64
|
+
$hover-color: var(--scrollbar-hover-color),
|
|
65
|
+
$width: var(--scrollbar-width),
|
|
66
|
+
$height: var(--scrollbar-width),
|
|
67
|
+
$border-radius: var(--scrollbar-width),
|
|
68
|
+
$y: auto,
|
|
69
|
+
$x: hidden
|
|
70
|
+
) {
|
|
71
|
+
overflow-y: $y;
|
|
72
|
+
overflow-x: $x;
|
|
73
|
+
|
|
74
|
+
// for FireFox
|
|
75
|
+
scrollbar-width: auto;
|
|
76
|
+
scrollbar-color: $default-color $background;
|
|
77
|
+
|
|
78
|
+
&::-webkit-scrollbar {
|
|
79
|
+
width: $width;
|
|
80
|
+
height: $height;
|
|
81
|
+
}
|
|
82
|
+
&::-webkit-scrollbar,
|
|
83
|
+
&::-webkit-scrollbar-track {
|
|
84
|
+
background-color: $background;
|
|
85
|
+
}
|
|
86
|
+
&::-webkit-scrollbar-thumb {
|
|
87
|
+
background-color: $default-color;
|
|
88
|
+
border-radius: $border-radius;
|
|
89
|
+
}
|
|
90
|
+
&:hover {
|
|
91
|
+
// for FireFox
|
|
92
|
+
scrollbar-color: $hover-color $background;
|
|
93
|
+
|
|
94
|
+
&::-webkit-scrollbar-thumb {
|
|
95
|
+
border-radius: $border-radius;
|
|
96
|
+
background-color: $hover-color;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// ====================================
|
|
102
|
+
// 尺寸設定: rwd-square / size / solid-width
|
|
103
|
+
// ====================================
|
|
104
|
+
|
|
105
|
+
@mixin rwd-square($size) {
|
|
106
|
+
width: $size;
|
|
107
|
+
height: auto;
|
|
108
|
+
&:before {
|
|
109
|
+
content: "";
|
|
110
|
+
display: block;
|
|
111
|
+
padding-bottom: 100%;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@mixin size($w, $h: $w) {
|
|
116
|
+
width: $w;
|
|
117
|
+
height: $h;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@mixin solid-size($w, $h: $w) {
|
|
121
|
+
width: $w;
|
|
122
|
+
max-width: $w;
|
|
123
|
+
min-width: $w;
|
|
124
|
+
height: $h;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// ====================================
|
|
128
|
+
// Text: 文字溢排
|
|
129
|
+
// ====================================
|
|
130
|
+
|
|
131
|
+
// 單行
|
|
132
|
+
@mixin text-overflow() {
|
|
133
|
+
overflow: hidden;
|
|
134
|
+
text-overflow: ellipsis;
|
|
135
|
+
white-space: nowrap;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// 多行
|
|
139
|
+
@mixin text-line-clamp($line-clamp) {
|
|
140
|
+
display: -webkit-box;
|
|
141
|
+
-webkit-line-clamp: $line-clamp;
|
|
142
|
+
-webkit-box-orient: vertical;
|
|
143
|
+
overflow: hidden;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// ====================================
|
|
147
|
+
// List Style: 數字標號
|
|
148
|
+
// ====================================
|
|
149
|
+
|
|
150
|
+
// 數字標號
|
|
151
|
+
@mixin list-counter() {
|
|
152
|
+
list-style-type: none;
|
|
153
|
+
padding: 0;
|
|
154
|
+
margin: auto;
|
|
155
|
+
li {
|
|
156
|
+
counter-increment: step-counter;
|
|
157
|
+
&:before {
|
|
158
|
+
content: counter(step-counter);
|
|
159
|
+
display: inline-block;
|
|
160
|
+
vertical-align: top;
|
|
161
|
+
font-size: 16px;
|
|
162
|
+
text-align: center;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// ====================================
|
|
168
|
+
// Image 背景 2x 3x 設定
|
|
169
|
+
// ====================================
|
|
170
|
+
@mixin background-image-retina($file, $type) {
|
|
171
|
+
background-image: url($file + "." + $type);
|
|
172
|
+
@media screen and (-webkit-min-device-pixel-ratio: 2),
|
|
173
|
+
(-moz-min-device-pixel-ratio: 2),
|
|
174
|
+
screen and (min--moz-device-pixel-ratio: 2) {
|
|
175
|
+
background-image: url($file + "@2x." + $type);
|
|
176
|
+
}
|
|
177
|
+
@media screen and (-webkit-min-device-pixel-ratio: 3),
|
|
178
|
+
(-moz-min-device-pixel-ratio: 3),
|
|
179
|
+
screen and (min--moz-device-pixel-ratio: 3) {
|
|
180
|
+
background-image: url($file + "@3x." + $type);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@mixin background-image-retina-amp($file, $type) {
|
|
185
|
+
background-image: url($file + "." + $type);
|
|
186
|
+
@media screen and (-webkit-min-device-pixel-ratio: 2),
|
|
187
|
+
(-moz-min-device-pixel-ratio: 2),
|
|
188
|
+
screen and (min-resolution: 2dppx) {
|
|
189
|
+
background-image: url($file + "@2x." + $type);
|
|
190
|
+
}
|
|
191
|
+
@media screen and (-webkit-min-device-pixel-ratio: 3),
|
|
192
|
+
(-moz-min-device-pixel-ratio: 3),
|
|
193
|
+
screen and (min-resolution: 3dppx) {
|
|
194
|
+
background-image: url($file + "@3x." + $type);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
// ====================================
|
|
199
|
+
// Construction Mixins
|
|
200
|
+
// ====================================
|
|
201
|
+
|
|
202
|
+
@mixin tableHeadTH() {
|
|
203
|
+
border-radius: 0;
|
|
204
|
+
background-color: $gray-200;
|
|
205
|
+
font-size: 0.85rem;
|
|
206
|
+
font-weight: normal;
|
|
207
|
+
letter-spacing: 0.5px;
|
|
208
|
+
color: $gray-600;
|
|
209
|
+
padding-left: 0.75rem;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
@mixin tableTdNum() {
|
|
213
|
+
color: $gray-500;
|
|
214
|
+
font-size: 0.85rem;
|
|
215
|
+
vertical-align: middle !important;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
@mixin linkBtn() {
|
|
219
|
+
text-decoration: none;
|
|
220
|
+
letter-spacing: 0.5px;
|
|
221
|
+
display: flex;
|
|
222
|
+
align-items: center;
|
|
223
|
+
margin-right: 0.5rem;
|
|
224
|
+
&:hover {
|
|
225
|
+
color: $primary;
|
|
226
|
+
background-color: rgba($primary, 0.1);
|
|
227
|
+
}
|
|
228
|
+
}
|