jobdone-shared-files 0.0.1-beta.90 → 0.0.1-beta.92
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 +4 -1
- package/lightboxWithOverview.vue +2 -1
- package/package.json +1 -1
- package/paginate.vue +2 -1
- package/style/scss/Settings/_Mixins.scss +2 -4
- package/style/scss/Settings/_custom-variables.scss +6 -0
- package/treeItem.vue +2 -1
- package/style/scss/Settings/_basic-import.scss +0 -6
|
@@ -280,7 +280,10 @@
|
|
|
280
280
|
</script>
|
|
281
281
|
|
|
282
282
|
<style scoped lang="scss">
|
|
283
|
-
@import "
|
|
283
|
+
@import "../../bootstrap/scss/functions";
|
|
284
|
+
@import "../../bootstrap/scss/mixins";
|
|
285
|
+
@import "../style/scss/Settings/bs-variables";
|
|
286
|
+
@import "../style/scss/Settings/Mixins";
|
|
284
287
|
|
|
285
288
|
.navbar-content{
|
|
286
289
|
transition: .5s;
|
package/lightboxWithOverview.vue
CHANGED
|
@@ -73,7 +73,8 @@
|
|
|
73
73
|
</script>
|
|
74
74
|
|
|
75
75
|
<style scoped lang="scss">
|
|
76
|
-
|
|
76
|
+
@import "../bootstrap/scss/functions";
|
|
77
|
+
@import "../bootstrap/scss/mixins";
|
|
77
78
|
@import "./style/scss/Settings/bs-variables";
|
|
78
79
|
@import "./style/scss/Settings/Mixins";
|
|
79
80
|
.hover-border{
|
package/package.json
CHANGED
package/paginate.vue
CHANGED
|
@@ -104,7 +104,8 @@
|
|
|
104
104
|
</script>
|
|
105
105
|
|
|
106
106
|
<style scoped lang="scss">
|
|
107
|
-
|
|
107
|
+
@import "../bootstrap/scss/functions";
|
|
108
|
+
@import "../bootstrap/scss/mixins";
|
|
108
109
|
@import "./style/scss/Settings/bs-variables";
|
|
109
110
|
@import "./style/scss/Settings/Mixins";
|
|
110
111
|
|
|
@@ -50,14 +50,12 @@
|
|
|
50
50
|
vertical-align: middle;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
+
|
|
53
54
|
// ====================================
|
|
54
55
|
// scrollbar樣式
|
|
55
56
|
// ====================================
|
|
56
57
|
|
|
57
|
-
|
|
58
|
-
--scrollbar-width: 10px;
|
|
59
|
-
--scrollbar-hover-color: var(--bs-primary);
|
|
60
|
-
}
|
|
58
|
+
// 變數在 "_custom-variables.scss" 中設定
|
|
61
59
|
@mixin scrollbar(
|
|
62
60
|
$background: rgba(var(--bs-emphasis-color-rgb), 0.05),
|
|
63
61
|
$default-color: rgba(var(--bs-emphasis-color-rgb), 0.2),
|
|
@@ -11,4 +11,10 @@ $table-danger-bg: lighten($danger, 42%);
|
|
|
11
11
|
|
|
12
12
|
:root{
|
|
13
13
|
--backdrop-blur: blur(2px);
|
|
14
|
+
|
|
15
|
+
// ====================================
|
|
16
|
+
// scrollbar樣式
|
|
17
|
+
// ====================================
|
|
18
|
+
--scrollbar-width: 10px;
|
|
19
|
+
--scrollbar-hover-color: var(--bs-primary);
|
|
14
20
|
}
|
package/treeItem.vue
CHANGED
|
@@ -84,7 +84,8 @@
|
|
|
84
84
|
</script>
|
|
85
85
|
|
|
86
86
|
<style scoped lang="scss">
|
|
87
|
-
|
|
87
|
+
@import "../bootstrap/scss/functions";
|
|
88
|
+
@import "../bootstrap/scss/mixins";
|
|
88
89
|
@import "./style/scss/Settings/bs-variables";
|
|
89
90
|
@import "./style/scss/Settings/Mixins";
|
|
90
91
|
|