Skip to content

Commit eb1f91b

Browse files
修改上傳程式碼,從上傳txt檔更改為上傳圖片檔
1 parent bcc4c66 commit eb1f91b

File tree

511 files changed

+36617
-33094
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

511 files changed

+36617
-33094
lines changed

Content/Chart.css

-47
This file was deleted.

Content/Chart.min.css

-1
This file was deleted.

Content/bootstrap-fileinput/css/fileinput-rtl.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* bootstrap-fileinput v5.2.7
2+
* bootstrap-fileinput v5.5.1
33
* http://plugins.krajee.com/file-input
44
*
55
* Krajee RTL (Right To Left) default styling for bootstrap-fileinput.
66
*
77
* Author: Kartik Visweswaran
8-
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
8+
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
99
*
1010
* Licensed under the BSD-3-Clause
1111
* https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md

Content/bootstrap-fileinput/css/fileinput-rtl.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Content/bootstrap-fileinput/css/fileinput.css

+33-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* bootstrap-fileinput v5.2.7
2+
* bootstrap-fileinput v5.5.1
33
* http://plugins.krajee.com/file-input
44
*
55
* Krajee default styling for bootstrap-fileinput.
66
*
77
* Author: Kartik Visweswaran
8-
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
8+
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
99
*
1010
* Licensed under the BSD-3-Clause
1111
* https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
@@ -50,6 +50,10 @@ input[type=file].file-loading {
5050
display: none;
5151
}
5252

53+
.file-caption .input-group {
54+
align-items: center;
55+
}
56+
5357
.btn-file input[type=file],
5458
.file-caption-icon,
5559
.file-preview .fileinput-remove,
@@ -325,7 +329,7 @@ input[type=file].file-loading {
325329
text-align: center;
326330
padding-top: 4px;
327331
font-size: 11px;
328-
color: #777;
332+
color: #999;
329333
margin-bottom: 30px;
330334
}
331335

@@ -653,8 +657,32 @@ input[type=file].file-loading {
653657
display: none;
654658
}
655659

656-
.file-preview-other-frame, .file-preview-object, .kv-zoom-body {
660+
.file-preview-other-frame, .file-preview-object, .kv-file-content, .kv-zoom-body {
657661
display: flex;
658662
align-items: center;
659663
justify-content: center;
660-
}
664+
}
665+
666+
.btn-kv-rotate,
667+
.kv-file-rotate {
668+
display: none;
669+
}
670+
671+
.rotatable:not(.hide-rotate) .btn-kv-rotate,
672+
.rotatable:not(.hide-rotate) .kv-file-rotate {
673+
display: inline-block;
674+
}
675+
676+
.rotatable .file-zoom-detail,
677+
.rotatable .kv-file-content,
678+
.rotatable .kv-file-content > :first-child {
679+
transform-origin: center center;
680+
}
681+
682+
.rotate-animate {
683+
transition: transform 0.3s ease;
684+
}
685+
686+
.kv-overflow-hidden {
687+
overflow: hidden;
688+
}

Content/bootstrap-fileinput/css/fileinput.min.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Content/bootstrap-fileinput/scss/fileinput-rtl.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* bootstrap-fileinput v5.2.7
2+
* bootstrap-fileinput v5.5.1
33
* http://plugins.krajee.com/file-input
44
*
55
* Krajee RTL (Right To Left) default styling for bootstrap-fileinput.
66
*
77
* Author: Kartik Visweswaran
8-
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
8+
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
99
*
1010
* Licensed under the BSD-3-Clause
1111
* https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md

Content/bootstrap-fileinput/scss/fileinput.scss

+49-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* bootstrap-fileinput v5.2.7
2+
* bootstrap-fileinput v5.5.1
33
* http://plugins.krajee.com/file-input
44
*
55
* Krajee default styling for bootstrap-fileinput.
66
*
77
* Author: Kartik Visweswaran
8-
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
8+
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
99
*
1010
* Licensed under the BSD-3-Clause
1111
* https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
@@ -22,7 +22,6 @@ $green: #008000 !default;
2222
$mine-shaft: #333 !default;
2323
$boston-blue: #428bca !default;
2424
$pelorous: #17a2b8 !default;
25-
$tapa: #777 !default;
2625
$black: #000 !default;
2726
$white: #fff !default;
2827
$black-20: rgba(0, 0, 0, 0.2) !default;
@@ -204,6 +203,10 @@ input[type=file].file-loading {
204203
.file-caption {
205204
@extend %set-relative;
206205

206+
.input-group {
207+
align-items: center;
208+
}
209+
207210
.file-caption-name {
208211
width: 100%;
209212
margin: 0;
@@ -385,7 +388,7 @@ input[type=file].file-loading {
385388
text-align: center;
386389
padding-top: multiply($pad, 0.8);
387390
font-size: multiply($pad, 2.2);
388-
color: $tapa;
391+
color: $mountain-mist;
389392
margin-bottom: multiply($pad, 3);
390393
}
391394

@@ -837,8 +840,49 @@ input[type=file].file-loading {
837840
box-shadow: none;
838841
}
839842

840-
.file-preview-other-frame, .file-preview-object, .kv-zoom-body {
843+
.file-preview-other-frame, .file-preview-object, .kv-file-content, .kv-zoom-body {
841844
display: flex;
842845
align-items: center;
843846
justify-content: center;
847+
}
848+
849+
.btn-kv-rotate {
850+
display: none;
851+
}
852+
853+
.kv-file-rotate {
854+
display: none;
855+
}
856+
857+
.rotatable {
858+
&:not(.hide-rotate) {
859+
.btn-kv-rotate {
860+
display: inline-block;
861+
}
862+
863+
.kv-file-rotate {
864+
display: inline-block;
865+
}
866+
}
867+
868+
.file-zoom-detail {
869+
transform-origin: center center;
870+
}
871+
872+
.kv-file-content {
873+
transform-origin: center center;
874+
875+
> :first-child {
876+
transform-origin: center center;
877+
}
878+
879+
}
880+
}
881+
882+
.rotate-animate {
883+
transition: transform 0.3s ease;
884+
}
885+
886+
.kv-overflow-hidden {
887+
overflow: hidden;
844888
}

Content/bootstrap-fileinput/scss/themes/explorer-fa/theme.scss renamed to Content/bootstrap-fileinput/scss/themes/explorer-fa4/theme.scss

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*!
2-
* bootstrap-fileinput v5.2.7
2+
* bootstrap-fileinput v5.5.1
33
* http://plugins.krajee.com/file-input
44
*
55
* Krajee Explorer Font Awesome 4.x theme style for bootstrap-fileinput. Load this theme file after loading
66
* `fileinput.css`.
77
*
88
* Author: Kartik Visweswaran
9-
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
9+
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
1010
*
1111
* Licensed under the BSD-3-Clause
1212
* https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
@@ -30,7 +30,7 @@ $pad: 5px !default;
3030
@return $pixels * $multiplier;
3131
}
3232

33-
.theme-explorer-fa {
33+
.theme-explorer-fa4 {
3434
.file-preview-frame {
3535
border: multiply($pad, 0.2) solid $alto;
3636
margin: multiply($pad, 0.4) 0;
@@ -168,7 +168,7 @@ $pad: 5px !default;
168168
}
169169

170170
@media only screen and (max-width: 1249px) {
171-
.theme-explorer-fa {
171+
.theme-explorer-fa4 {
172172
.file-preview-frame {
173173
.file-details-cell {
174174
width: 40%;
@@ -178,7 +178,7 @@ $pad: 5px !default;
178178
}
179179

180180
@media only screen and (max-width: 1023px) {
181-
.theme-explorer-fa {
181+
.theme-explorer-fa4 {
182182
.file-preview-frame {
183183
.file-details-cell {
184184
width: 30%;
@@ -188,7 +188,7 @@ $pad: 5px !default;
188188
}
189189

190190
@media only screen and (max-width: 767px) {
191-
.theme-explorer-fa {
191+
.theme-explorer-fa4 {
192192
.file-preview-frame {
193193
.file-details-cell {
194194
width: multiply($pad, 40);
@@ -198,7 +198,7 @@ $pad: 5px !default;
198198
}
199199

200200
@media only screen and (max-width: 575px) {
201-
.theme-explorer-fa {
201+
.theme-explorer-fa4 {
202202
.file-preview-frame {
203203
flex-direction: column;
204204

Content/bootstrap-fileinput/scss/themes/explorer-fas/theme.scss renamed to Content/bootstrap-fileinput/scss/themes/explorer-fa5/theme.scss

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*!
2-
* bootstrap-fileinput v5.2.7
2+
* bootstrap-fileinput v5.5.1
33
* http://plugins.krajee.com/file-input
44
*
55
* Krajee Explorer Font Awesome 5.x theme style for bootstrap-fileinput. Load this theme file after loading
66
* `fileinput.css`.
77
*
88
* Author: Kartik Visweswaran
9-
* Copyright: 2014 - 2021, Kartik Visweswaran, Krajee.com
9+
* Copyright: 2014 - 2022, Kartik Visweswaran, Krajee.com
1010
*
1111
* Licensed under the BSD-3-Clause
1212
* https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md
@@ -30,7 +30,7 @@ $pad: 5px !default;
3030
@return $pixels * $multiplier;
3131
}
3232

33-
.theme-explorer-fas {
33+
.theme-explorer-fa5 {
3434
.file-preview-frame {
3535
border: multiply($pad, 0.2) solid $alto;
3636
margin: multiply($pad, 0.4) 0;
@@ -168,7 +168,7 @@ $pad: 5px !default;
168168
}
169169

170170
@media only screen and (max-width: 1249px) {
171-
.theme-explorer-fas {
171+
.theme-explorer-fa5 {
172172
.file-preview-frame {
173173
.file-details-cell {
174174
width: 40%;
@@ -178,7 +178,7 @@ $pad: 5px !default;
178178
}
179179

180180
@media only screen and (max-width: 1023px) {
181-
.theme-explorer-fas {
181+
.theme-explorer-fa5 {
182182
.file-preview-frame {
183183
.file-details-cell {
184184
width: 30%;
@@ -188,7 +188,7 @@ $pad: 5px !default;
188188
}
189189

190190
@media only screen and (max-width: 767px) {
191-
.theme-explorer-fas {
191+
.theme-explorer-fa5 {
192192
.file-preview-frame {
193193
.file-details-cell {
194194
width: multiply($pad, 40);
@@ -198,7 +198,7 @@ $pad: 5px !default;
198198
}
199199

200200
@media only screen and (max-width: 575px) {
201-
.theme-explorer-fas {
201+
.theme-explorer-fa5 {
202202
.file-preview-frame {
203203
flex-direction: column;
204204

0 commit comments

Comments
 (0)