jobdone-shared-files 0.0.1-beta.85 → 0.0.1-beta.87

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.
@@ -1,203 +1,203 @@
1
- @import "../Settings/basic-import";
2
- @import "../Common/Animation.scss";
3
- @import "../Settings/MobileVariables";
4
-
5
- @media only screen and (max-width: 768px) {
6
- // default layout ---------------------------------------------
7
-
8
- html, body, #app{
9
- min-height: 100%;
10
- }
11
-
12
- html{
13
- position: relative;
14
- &:before{
15
- content: "";
16
- position: fixed;
17
- top: 0;
18
- left: 0;
19
- right: 0;
20
- bottom: 0;
21
- z-index: -1;
22
- background: $gradient-bg;
23
- background-repeat: no-repeat;
24
- pointer-events: none;
25
- }
26
- }
27
-
28
- body{
29
- background: transparent;
30
- scroll-behavior: smooth;
31
- }
32
-
33
- #app{
34
- width: 100%;
35
- max-width: 767px;
36
- transition: 1s;
37
- }
38
-
39
- // background ---------------------------------------------
40
-
41
- .bg-gradient-main, .bg-gradient-main-translucent{
42
- color: rgba( $white, .7 );
43
- .text-emphasis{
44
- color: $white;
45
- }
46
- }
47
-
48
- .bg-gradient-main{
49
- background: $gradient-main;
50
- }
51
-
52
- .bg-gradient-main-translucent{
53
- background: $gradient-main-translucent;
54
- backdrop-filter: $backdrop-blur-base;
55
- }
56
-
57
- .bg-dark-translucent{
58
- background-color: rgba( 0, 22, 44, .8 );
59
- backdrop-filter: $backdrop-blur-base;
60
- }
61
-
62
- .bg-light-translucent{
63
- background-color: rgba( $white, .5 );
64
- backdrop-filter: $backdrop-blur-base;
65
- }
66
-
67
- .bg-extend{
68
- position: relative;
69
- &:before{
70
- content: "";
71
- position: absolute;
72
- top: 0;
73
- left: 0;
74
- right: 0;
75
- z-index: -1;
76
- height: 3rem;
77
- }
78
- }
79
-
80
- .bg-extend-gradient-main-translucent{
81
- &:before{
82
- background: $gradient-main-translucent;
83
- }
84
- }
85
-
86
- // navbar ---------------------------------------------
87
-
88
- .navbar-main{
89
- color: $gray-500;
90
- }
91
-
92
- // width ---------------------------------------------
93
-
94
- .w-85{
95
- width: 85% !important;
96
- }
97
-
98
- .w-min-3rem{
99
- min-width: 3rem;
100
- }
101
-
102
- // font size ---------------------------------------------
103
-
104
- .fs-min{
105
- font-size: 12px;
106
- }
107
-
108
- // button ---------------------------------------------
109
-
110
- .btn-glow{
111
- background-image: $gradient-glow;
112
- }
113
-
114
- .btn-glow-2end{
115
- --bs-btn-color: #fff;
116
- --bs-btn-hover-color: #fff;
117
- --bs-btn-border-color: rgba(255, 255, 255, 0.5);
118
- --bs-btn-hover-border-color: rgba(255, 255, 255, 0.3);
119
- background: $gradient-glow-2end;
120
- }
121
-
122
- // input ---------------------------------------------
123
-
124
-
125
- // input-group-icon
126
- .input-group-icon{
127
- $padding-left: 2rem;
128
-
129
- position: relative;
130
- .material-icons, .input-group-placeholder{
131
- position: absolute;
132
- top: 50%;
133
- transform: translateY(-50%);
134
- z-index: 6;
135
- }
136
- .material-icons{
137
- left: 0.6rem;
138
- }
139
- .input-group-placeholder{
140
- left: $padding-left;
141
- }
142
- .form-control{
143
- &:-webkit-date-and-time-value{
144
- text-align: left;
145
- }
146
- &:nth-child(1){
147
- padding-left: $padding-left;
148
- }
149
- }
150
- }
151
-
152
-
153
- // animation ---------------------------------------------
154
-
155
- .fadeIn{
156
- animation-name: fadeIn;
157
- animation-duration: 1s;
158
- }
159
-
160
- // image ---------------------------------------------
161
-
162
- .thumbnail-circle{
163
- border: 3px solid rgba($white, .3);
164
- border-radius: 50%;
165
- &-sm{
166
- border-width: 2px;
167
- }
168
- }
169
-
170
-
171
- // scroll ---------------------------------------------
172
-
173
- .overflow-y-auto{
174
- overscroll-behavior: contain;
175
- }
176
-
177
- .body-opened-modal{
178
- // position: fixed;
179
- overflow: hidden;
180
- .bg-gradient-main-translucent, .bg-dark-translucent, .bg-light-translucent{
181
- backdrop-filter: unset;
182
- }
183
- }
184
-
185
- .backdrop-filter-none{
186
- backdrop-filter: unset;
187
- }
188
-
189
- // list-group-item ---------------------------------------------
190
-
191
- .list-group-item{
192
- outline: none !important;
193
- }
194
-
195
-
196
- // reset ---------------------------------------------
197
-
198
- @media only screen and (max-width: 992px) {
199
- body{
200
- overflow: visible;
201
- }
202
- }
1
+ @import "../Settings/basic-import";
2
+ @import "../Common/Animation.scss";
3
+ @import "../Settings/MobileVariables";
4
+
5
+ @media only screen and (max-width: 768px) {
6
+ // default layout ---------------------------------------------
7
+
8
+ html, body, #app{
9
+ min-height: 100%;
10
+ }
11
+
12
+ html{
13
+ position: relative;
14
+ &:before{
15
+ content: "";
16
+ position: fixed;
17
+ top: 0;
18
+ left: 0;
19
+ right: 0;
20
+ bottom: 0;
21
+ z-index: -1;
22
+ background: $gradient-bg;
23
+ background-repeat: no-repeat;
24
+ pointer-events: none;
25
+ }
26
+ }
27
+
28
+ body{
29
+ background: transparent;
30
+ scroll-behavior: smooth;
31
+ }
32
+
33
+ #app{
34
+ width: 100%;
35
+ max-width: 767px;
36
+ transition: 1s;
37
+ }
38
+
39
+ // background ---------------------------------------------
40
+
41
+ .bg-gradient-main, .bg-gradient-main-translucent{
42
+ color: rgba( $white, .7 );
43
+ .text-emphasis{
44
+ color: $white;
45
+ }
46
+ }
47
+
48
+ .bg-gradient-main{
49
+ background: $gradient-main;
50
+ }
51
+
52
+ .bg-gradient-main-translucent{
53
+ background: $gradient-main-translucent;
54
+ backdrop-filter: $backdrop-blur-base;
55
+ }
56
+
57
+ .bg-dark-translucent{
58
+ background-color: rgba( 0, 22, 44, .8 );
59
+ backdrop-filter: $backdrop-blur-base;
60
+ }
61
+
62
+ .bg-light-translucent{
63
+ background-color: rgba( $white, .5 );
64
+ backdrop-filter: $backdrop-blur-base;
65
+ }
66
+
67
+ .bg-extend{
68
+ position: relative;
69
+ &:before{
70
+ content: "";
71
+ position: absolute;
72
+ top: 0;
73
+ left: 0;
74
+ right: 0;
75
+ z-index: -1;
76
+ height: 3rem;
77
+ }
78
+ }
79
+
80
+ .bg-extend-gradient-main-translucent{
81
+ &:before{
82
+ background: $gradient-main-translucent;
83
+ }
84
+ }
85
+
86
+ // navbar ---------------------------------------------
87
+
88
+ .navbar-main{
89
+ color: $gray-500;
90
+ }
91
+
92
+ // width ---------------------------------------------
93
+
94
+ .w-85{
95
+ width: 85% !important;
96
+ }
97
+
98
+ .w-min-3rem{
99
+ min-width: 3rem;
100
+ }
101
+
102
+ // font size ---------------------------------------------
103
+
104
+ .fs-min{
105
+ font-size: 12px;
106
+ }
107
+
108
+ // button ---------------------------------------------
109
+
110
+ .btn-glow{
111
+ background-image: $gradient-glow;
112
+ }
113
+
114
+ .btn-glow-2end{
115
+ --bs-btn-color: #fff;
116
+ --bs-btn-hover-color: #fff;
117
+ --bs-btn-border-color: rgba(255, 255, 255, 0.5);
118
+ --bs-btn-hover-border-color: rgba(255, 255, 255, 0.3);
119
+ background: $gradient-glow-2end;
120
+ }
121
+
122
+ // input ---------------------------------------------
123
+
124
+
125
+ // input-group-icon
126
+ .input-group-icon{
127
+ $padding-left: 2rem;
128
+
129
+ position: relative;
130
+ .material-icons, .input-group-placeholder{
131
+ position: absolute;
132
+ top: 50%;
133
+ transform: translateY(-50%);
134
+ z-index: 6;
135
+ }
136
+ .material-icons{
137
+ left: 0.6rem;
138
+ }
139
+ .input-group-placeholder{
140
+ left: $padding-left;
141
+ }
142
+ .form-control{
143
+ &:-webkit-date-and-time-value{
144
+ text-align: left;
145
+ }
146
+ &:nth-child(1){
147
+ padding-left: $padding-left;
148
+ }
149
+ }
150
+ }
151
+
152
+
153
+ // animation ---------------------------------------------
154
+
155
+ .fadeIn{
156
+ animation-name: fadeIn;
157
+ animation-duration: 1s;
158
+ }
159
+
160
+ // image ---------------------------------------------
161
+
162
+ .thumbnail-circle{
163
+ border: 3px solid rgba($white, .3);
164
+ border-radius: 50%;
165
+ &-sm{
166
+ border-width: 2px;
167
+ }
168
+ }
169
+
170
+
171
+ // scroll ---------------------------------------------
172
+
173
+ .overflow-y-auto{
174
+ overscroll-behavior: contain;
175
+ }
176
+
177
+ .body-opened-modal{
178
+ // position: fixed;
179
+ overflow: hidden;
180
+ .bg-gradient-main-translucent, .bg-dark-translucent, .bg-light-translucent{
181
+ backdrop-filter: unset;
182
+ }
183
+ }
184
+
185
+ .backdrop-filter-none{
186
+ backdrop-filter: unset;
187
+ }
188
+
189
+ // list-group-item ---------------------------------------------
190
+
191
+ .list-group-item{
192
+ outline: none !important;
193
+ }
194
+
195
+
196
+ // reset ---------------------------------------------
197
+
198
+ @media only screen and (max-width: 992px) {
199
+ body{
200
+ overflow: visible;
201
+ }
202
+ }
203
203
  }
@@ -1,122 +1,122 @@
1
- @import "../Settings/basic-import";
2
-
3
- html, body, #app{
4
- height: 100%;
5
- }
6
-
7
- #app{
8
- display: flex;
9
- flex-direction: column;
10
- }
11
-
12
- body{
13
- background-color: var(--gray-300);
14
- }
15
-
16
-
17
-
18
- // 兩欄開合 UI
19
-
20
- #col-aside:has(label[for="toggle-aside"]:hover){
21
- will-change: margin-left;
22
- ~ #col-main{
23
- will-change: width;
24
- }
25
- }
26
-
27
-
28
- .content-2-column{
29
- position: relative;
30
- display: flex;
31
- flex-grow: 1;
32
- overflow: hidden;
33
- z-index: 1;
34
- }
35
-
36
- #col-aside, #col-main{
37
- height: 100%;
38
- overflow-y: auto;
39
- @include scrollbar();
40
- }
41
-
42
-
43
- $aside-w: 16.25rem;
44
- $aside-close-w: 2.5rem;
45
- $aside-transition: .5s;
46
- #col-aside{
47
- @include solid-size($aside-w, auto);
48
- background-color: var(--gray-100);
49
- transition: $aside-transition;
50
- }
51
-
52
- #col-main{
53
- flex-grow: 1;
54
- transition: $aside-transition;
55
- }
56
-
57
- .toggler-open{
58
- padding: 0.5rem;
59
- background-color: var(--gray-200);
60
- > label[for="toggle-aside"]{
61
- cursor: pointer;
62
- }
63
- > label[for="toggle-aside"]:hover{
64
- .material-icons{
65
- color: var(--bs-primary);
66
- }
67
- .toggler-open-text{
68
- color: rgba(var(--bs-link-color-rgb), 0.5);
69
- }
70
- }
71
-
72
- .toggler-open-text, .material-icons{
73
- transition: $transition-base;
74
- }
75
- .material-icons{
76
- color: var(--gray-600);
77
- margin-right: 0.2rem;
78
- margin-left: 0.5rem;
79
- }
80
- }
81
-
82
- .toggler-text{
83
- color: var(--gray-500);
84
- }
85
-
86
- .content-menu{
87
- position: relative;
88
- }
89
-
90
- .toggler-close{
91
- display: none;
92
- position: absolute;
93
- top: 0;
94
- right: 0;
95
- width: $aside-close-w;
96
- text-align: center;
97
- padding: .5rem;
98
- line-height: 1.25;
99
- cursor: pointer;
100
- transition: $aside-transition;
101
- .toggler-close-text:hover{
102
- color: rgba(var(--bs-link-color-rgb), 0.5);
103
- }
104
- }
105
-
106
- #toggle-aside:checked{
107
- ~ #col-aside{
108
- margin-left: -$aside-w + $aside-close-w;
109
- .toggler-open-text, nav{
110
- display: none;
111
- }
112
- .toggler-close{
113
- display: block;
114
- }
115
- }
116
- }
117
-
118
- .thead-sticky{
119
- position: sticky;
120
- top: 2.7rem;
121
- z-index: $zindex-dropdown + 2;
122
- }
1
+ @import "../Settings/basic-import";
2
+
3
+ html, body, #app{
4
+ height: 100%;
5
+ }
6
+
7
+ #app{
8
+ display: flex;
9
+ flex-direction: column;
10
+ }
11
+
12
+ body{
13
+ background-color: var(--gray-300);
14
+ }
15
+
16
+
17
+
18
+ // 兩欄開合 UI
19
+
20
+ #col-aside:has(label[for="toggle-aside"]:hover){
21
+ will-change: margin-left;
22
+ ~ #col-main{
23
+ will-change: width;
24
+ }
25
+ }
26
+
27
+
28
+ .content-2-column{
29
+ position: relative;
30
+ display: flex;
31
+ flex-grow: 1;
32
+ overflow: hidden;
33
+ z-index: 1;
34
+ }
35
+
36
+ #col-aside, #col-main{
37
+ height: 100%;
38
+ overflow-y: auto;
39
+ @include scrollbar();
40
+ }
41
+
42
+
43
+ $aside-w: 16.25rem;
44
+ $aside-close-w: 2.5rem;
45
+ $aside-transition: .5s;
46
+ #col-aside{
47
+ @include solid-size($aside-w, auto);
48
+ background-color: var(--gray-100);
49
+ transition: $aside-transition;
50
+ }
51
+
52
+ #col-main{
53
+ flex-grow: 1;
54
+ transition: $aside-transition;
55
+ }
56
+
57
+ .toggler-open{
58
+ padding: 0.5rem;
59
+ background-color: var(--gray-200);
60
+ > label[for="toggle-aside"]{
61
+ cursor: pointer;
62
+ }
63
+ > label[for="toggle-aside"]:hover{
64
+ .material-icons{
65
+ color: var(--bs-primary);
66
+ }
67
+ .toggler-open-text{
68
+ color: rgba(var(--bs-link-color-rgb), 0.5);
69
+ }
70
+ }
71
+
72
+ .toggler-open-text, .material-icons{
73
+ transition: $transition-base;
74
+ }
75
+ .material-icons{
76
+ color: var(--gray-600);
77
+ margin-right: 0.2rem;
78
+ margin-left: 0.5rem;
79
+ }
80
+ }
81
+
82
+ .toggler-text{
83
+ color: var(--gray-500);
84
+ }
85
+
86
+ .content-menu{
87
+ position: relative;
88
+ }
89
+
90
+ .toggler-close{
91
+ display: none;
92
+ position: absolute;
93
+ top: 0;
94
+ right: 0;
95
+ width: $aside-close-w;
96
+ text-align: center;
97
+ padding: .5rem;
98
+ line-height: 1.25;
99
+ cursor: pointer;
100
+ transition: $aside-transition;
101
+ .toggler-close-text:hover{
102
+ color: rgba(var(--bs-link-color-rgb), 0.5);
103
+ }
104
+ }
105
+
106
+ #toggle-aside:checked{
107
+ ~ #col-aside{
108
+ margin-left: -$aside-w + $aside-close-w;
109
+ .toggler-open-text, nav{
110
+ display: none;
111
+ }
112
+ .toggler-close{
113
+ display: block;
114
+ }
115
+ }
116
+ }
117
+
118
+ .thead-sticky{
119
+ position: sticky;
120
+ top: 2.7rem;
121
+ z-index: $zindex-dropdown + 2;
122
+ }
@@ -1,14 +1,14 @@
1
- @import "../Settings/basic-import";
2
- html{
3
- background:
4
- linear-gradient(138deg, rgba(100, 148, 241, 0.05) 26.2%, rgba(165, 185, 255, 0.29) 88.06%),
5
- var(--gray-000);
6
- background-repeat: no-repeat;
7
- min-height: 100%;
8
- }
9
-
10
- body{
11
- @include flex-center();
12
- background: transparent;
13
- min-height: 100%;
1
+ @import "../Settings/basic-import";
2
+ html{
3
+ background:
4
+ linear-gradient(138deg, rgba(100, 148, 241, 0.05) 26.2%, rgba(165, 185, 255, 0.29) 88.06%),
5
+ var(--gray-000);
6
+ background-repeat: no-repeat;
7
+ min-height: 100%;
8
+ }
9
+
10
+ body{
11
+ @include flex-center();
12
+ background: transparent;
13
+ min-height: 100%;
14
14
  }