jobdone-shared-files 0.0.1-beta.94 → 0.0.1-beta.96
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.
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
<div class="nav-item navbar-line-item btn nav-link border-0">
|
|
56
56
|
<a href="https://docs.jobdone.cc/" target="_blank">
|
|
57
57
|
<span class="align-middle">使用指南</span>
|
|
58
|
-
<span class="material-icons icon-18 align-middle
|
|
58
|
+
<span class="material-icons icon-18 align-middle icon-help ms-1">help</span>
|
|
59
59
|
</a>
|
|
60
60
|
</div>
|
|
61
61
|
<div class="nav-item navbar-line-item btn nav-link border-0 dropdown">
|
|
@@ -352,4 +352,8 @@
|
|
|
352
352
|
-webkit-background-clip: text;
|
|
353
353
|
color: transparent;
|
|
354
354
|
}
|
|
355
|
+
|
|
356
|
+
.icon-help{
|
|
357
|
+
color: #c8d1ff;
|
|
358
|
+
}
|
|
355
359
|
</style>
|
package/package.json
CHANGED
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
// scrollbar樣式
|
|
51
51
|
// ====================================
|
|
52
52
|
--scrollbar-width: 10px;
|
|
53
|
-
--scrollbar-hover-color: var(--bs-primary);
|
|
54
53
|
}
|
|
55
54
|
|
|
56
55
|
[v-cloak]{
|
|
57
56
|
display: none !important;
|
|
58
57
|
}
|
|
59
58
|
|
|
60
|
-
|
|
59
|
+
html,
|
|
61
60
|
.overflow-auto, .overflow-scroll,
|
|
62
61
|
.overflow-y-auto, .overflow-y-scroll,
|
|
63
62
|
.offcanvas-body, textarea{
|
|
64
63
|
@include scrollbar();
|
|
64
|
+
transition: $transition-base;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.overflow-x-auto, .overflow-x-scroll, .scrollbar-sm, .table-responsive{
|
|
@@ -682,6 +682,9 @@ $list-highlight-border-w: .4rem;
|
|
|
682
682
|
|
|
683
683
|
.list-group{
|
|
684
684
|
overflow: hidden;
|
|
685
|
+
&, > li{
|
|
686
|
+
list-style-type: none !important;
|
|
687
|
+
}
|
|
685
688
|
> li{
|
|
686
689
|
position: relative;
|
|
687
690
|
}
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
// scrollbar樣式
|
|
56
56
|
// ====================================
|
|
57
57
|
|
|
58
|
-
// 自訂變數 (--scrollbar-width
|
|
58
|
+
// 自訂變數 (--scrollbar-width) 在 "LayoutBase" 中設定
|
|
59
59
|
@mixin scrollbar(
|
|
60
|
-
$background:
|
|
61
|
-
$default-color:
|
|
62
|
-
$hover-color: var(--
|
|
60
|
+
$background: var(--gray-200),
|
|
61
|
+
$default-color: var(--gray-500),
|
|
62
|
+
$hover-color: var(--bs-primary),
|
|
63
63
|
$width: var(--scrollbar-width),
|
|
64
64
|
$height: var(--scrollbar-width),
|
|
65
65
|
$border-radius: var(--scrollbar-width),
|
|
@@ -69,31 +69,36 @@
|
|
|
69
69
|
overflow-y: $y;
|
|
70
70
|
overflow-x: $x;
|
|
71
71
|
|
|
72
|
-
//
|
|
73
|
-
scrollbar-width: auto
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
&::-webkit-scrollbar,
|
|
81
|
-
&::-webkit-scrollbar-track {
|
|
82
|
-
background-color: $background;
|
|
83
|
-
}
|
|
84
|
-
&::-webkit-scrollbar-thumb {
|
|
85
|
-
background-color: $default-color;
|
|
86
|
-
border-radius: $border-radius;
|
|
72
|
+
// Chrome 121 / Edge 121 / FireFox
|
|
73
|
+
@supports (scrollbar-width: auto) {
|
|
74
|
+
scrollbar-width: auto;
|
|
75
|
+
scrollbar-color: $default-color $background;
|
|
76
|
+
&:hover{
|
|
77
|
+
scrollbar-color: $hover-color $background;
|
|
78
|
+
}
|
|
87
79
|
}
|
|
88
|
-
&:hover {
|
|
89
|
-
// for FireFox
|
|
90
|
-
scrollbar-color: $hover-color $background;
|
|
91
80
|
|
|
81
|
+
@supports selector(::-webkit-scrollbar) {
|
|
92
82
|
&::-webkit-scrollbar-thumb {
|
|
83
|
+
background-color: $default-color;
|
|
93
84
|
border-radius: $border-radius;
|
|
94
|
-
|
|
85
|
+
}
|
|
86
|
+
&::-webkit-scrollbar,
|
|
87
|
+
&::-webkit-scrollbar-track {
|
|
88
|
+
background-color: $background;
|
|
89
|
+
}
|
|
90
|
+
&::-webkit-scrollbar {
|
|
91
|
+
width: $width;
|
|
92
|
+
height: $height;
|
|
93
|
+
}
|
|
94
|
+
&:hover {
|
|
95
|
+
&::-webkit-scrollbar,
|
|
96
|
+
&::-webkit-scrollbar-thumb {
|
|
97
|
+
background-color: $hover-color;
|
|
98
|
+
}
|
|
95
99
|
}
|
|
96
100
|
}
|
|
101
|
+
|
|
97
102
|
}
|
|
98
103
|
|
|
99
104
|
// ====================================
|
package/treeItem.vue
CHANGED
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
.btn-text {
|
|
169
169
|
width: 100%;
|
|
170
170
|
text-align: left;
|
|
171
|
-
|
|
171
|
+
overflow-wrap: anywhere;
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
174
|
|
|
@@ -183,6 +183,7 @@
|
|
|
183
183
|
input[type="checkbox"], input[type="radio"] {
|
|
184
184
|
position: absolute;
|
|
185
185
|
@include size(0);
|
|
186
|
+
opacity: 0;
|
|
186
187
|
pointer-events: none;
|
|
187
188
|
|
|
188
189
|
~ .btn-title .material-icons:before {
|