U xterm & sftp
@ -9,6 +9,7 @@ import (
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"path"
|
||||
"strconv"
|
||||
"strings"
|
||||
)
|
||||
@ -22,6 +23,7 @@ func (s Server) Routes() []core.Route {
|
||||
core.NewRoute("/server/getTotal", http.MethodGet, s.GetTotal),
|
||||
core.NewRoute("/server/getOption", http.MethodGet, s.GetOption),
|
||||
core.NewRoute("/server/getPublicKey", http.MethodGet, s.GetPublicKey),
|
||||
core.NewRoute("/server/getTerminalRecord", http.MethodGet, s.GetTerminalRecord),
|
||||
core.NewRoute("/server/check", http.MethodPost, s.Check).Roles(core.RoleAdmin, core.RoleManager),
|
||||
core.NewRoute("/server/add", http.MethodPost, s.Add).Roles(core.RoleAdmin, core.RoleManager),
|
||||
core.NewRoute("/server/edit", http.MethodPut, s.Edit).Roles(core.RoleAdmin, core.RoleManager),
|
||||
@ -76,6 +78,10 @@ func (Server) GetOption(gp *core.Goploy) core.Response {
|
||||
}
|
||||
}
|
||||
|
||||
func (Server) GetTerminalRecord(*core.Goploy) core.Response {
|
||||
return response.File{Filename: path.Join(core.GetLogPath(), "demo.cast")}
|
||||
}
|
||||
|
||||
func (Server) GetPublicKey(gp *core.Goploy) core.Response {
|
||||
publicKeyPath := gp.URLQuery.Get("path")
|
||||
|
||||
|
@ -55,6 +55,10 @@ func GetConfigFile() string {
|
||||
return path.Join(GetAssetDir(), "goploy.toml")
|
||||
}
|
||||
|
||||
func GetLogPath() string {
|
||||
return path.Join(GetAssetDir(), "tmp")
|
||||
}
|
||||
|
||||
func GetRepositoryPath() string {
|
||||
if config.Toml.APP.RepositoryPath != "" {
|
||||
return path.Join(config.Toml.APP.RepositoryPath, "repository")
|
||||
|
@ -1,43 +1,33 @@
|
||||
package response
|
||||
|
||||
import (
|
||||
"github.com/pkg/sftp"
|
||||
"golang.org/x/crypto/ssh"
|
||||
"io"
|
||||
"net/http"
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type SftpFile struct {
|
||||
Client *ssh.Client
|
||||
type File struct {
|
||||
Filename string
|
||||
}
|
||||
|
||||
//JSON response
|
||||
func (sf SftpFile) Write(w http.ResponseWriter) error {
|
||||
defer sf.Client.Close()
|
||||
|
||||
sftpClient, err := sftp.NewClient(sf.Client)
|
||||
func (f File) Write(w http.ResponseWriter) error {
|
||||
file, err := os.Open(f.Filename)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer sftpClient.Close()
|
||||
|
||||
srcFile, err := sftpClient.Open(sf.Filename) //远程
|
||||
fileStat, err := file.Stat()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer srcFile.Close()
|
||||
|
||||
fileStat, err := srcFile.Stat()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
w.Header().Set("Content-Disposition", "attachment; filename="+fileStat.Name())
|
||||
w.Header().Set("Content-Type", "application/octet-stream")
|
||||
w.Header().Set("Content-Type", "application/x-asciicast")
|
||||
w.Header().Set("Content-Length", strconv.FormatInt(fileStat.Size(), 10))
|
||||
_, err = io.Copy(w, srcFile)
|
||||
|
||||
_, err = io.Copy(w, file)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
100
utils/Recorder.go
Normal file
@ -0,0 +1,100 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"os"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Env struct {
|
||||
Shell string `json:"SHELL"`
|
||||
Term string `json:"TERM"`
|
||||
}
|
||||
|
||||
type Header struct {
|
||||
Title string `json:"title"`
|
||||
Version int `json:"version"`
|
||||
Height int `json:"height"`
|
||||
Width int `json:"width"`
|
||||
Env Env `json:"env"`
|
||||
Timestamp int `json:"Timestamp"`
|
||||
}
|
||||
|
||||
type Recorder struct {
|
||||
File *os.File
|
||||
Timestamp int
|
||||
}
|
||||
|
||||
func (recorder *Recorder) Close() {
|
||||
if recorder.File != nil {
|
||||
_ = recorder.File.Close()
|
||||
}
|
||||
}
|
||||
|
||||
func (recorder *Recorder) WriteHeader(header *Header) (err error) {
|
||||
var p []byte
|
||||
|
||||
if p, err = json.Marshal(header); err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
if _, err := recorder.File.Write(p); err != nil {
|
||||
return err
|
||||
}
|
||||
if _, err := recorder.File.Write([]byte("\n")); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
recorder.Timestamp = header.Timestamp
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func (recorder *Recorder) WriteData(data string) (err error) {
|
||||
now := int(time.Now().UnixNano())
|
||||
|
||||
delta := float64(now-recorder.Timestamp*1000*1000*1000) / 1000 / 1000 / 1000
|
||||
|
||||
row := make([]interface{}, 0)
|
||||
row = append(row, delta)
|
||||
row = append(row, "o")
|
||||
row = append(row, data)
|
||||
|
||||
var s []byte
|
||||
if s, err = json.Marshal(row); err != nil {
|
||||
return
|
||||
}
|
||||
if _, err := recorder.File.Write(s); err != nil {
|
||||
return err
|
||||
}
|
||||
if _, err := recorder.File.Write([]byte("\n")); err != nil {
|
||||
return err
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
func NewRecorder(recordingPath, term string, h int, w int) (recorder *Recorder, err error) {
|
||||
recorder = &Recorder{}
|
||||
var file *os.File
|
||||
file, err = os.Create(recordingPath)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
recorder.File = file
|
||||
|
||||
header := &Header{
|
||||
Title: "",
|
||||
Version: 2,
|
||||
Height: h,
|
||||
Width: w,
|
||||
Env: Env{Shell: "/bin/bash", Term: term},
|
||||
Timestamp: int(time.Now().Unix()),
|
||||
}
|
||||
|
||||
if err := recorder.WriteHeader(header); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return recorder, nil
|
||||
}
|
31
web/package-lock.json
generated
@ -53,6 +53,15 @@
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz",
|
||||
"integrity": "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA=="
|
||||
},
|
||||
"@babel/runtime": {
|
||||
"version": "7.16.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
|
||||
"integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"regenerator-runtime": "^0.13.4"
|
||||
}
|
||||
},
|
||||
"@babel/types": {
|
||||
"version": "7.15.0",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz",
|
||||
@ -664,6 +673,16 @@
|
||||
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
|
||||
"dev": true
|
||||
},
|
||||
"asciinema-player": {
|
||||
"version": "3.0.0-rc.1",
|
||||
"resolved": "https://registry.npmjs.org/asciinema-player/-/asciinema-player-3.0.0-rc.1.tgz",
|
||||
"integrity": "sha512-r0yRCnifQ+UuyInLBwanupOUk7FPIs1NgD3D+egaSCXzK1+PSQf0aHo/dfpZFY2sml9mA0cqUHJFQ4KnuUJS1Q==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.15.4",
|
||||
"solid-js": "^1.1.6"
|
||||
}
|
||||
},
|
||||
"assign-symbols": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
|
||||
@ -3083,6 +3102,12 @@
|
||||
"picomatch": "^2.2.1"
|
||||
}
|
||||
},
|
||||
"regenerator-runtime": {
|
||||
"version": "0.13.9",
|
||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
|
||||
"integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==",
|
||||
"dev": true
|
||||
},
|
||||
"regex-not": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
|
||||
@ -3388,6 +3413,12 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"solid-js": {
|
||||
"version": "1.3.3",
|
||||
"resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.3.3.tgz",
|
||||
"integrity": "sha512-0pyHpLZIgQDI1Z+MgxXQRPY10dhXfKJdptb4UCJQ9ArQOLq2gtFA1acEsvSAtPMVdqQ8bqj68FOTXLpz6hm2Mg==",
|
||||
"dev": true
|
||||
},
|
||||
"source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
|
1
web/src/icons/svg/file/3gp.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M385.286655 842.43078l9.849567-13.221491c6.211438 6.122704 13.931369 10.82565 23.514731 10.82565 10.64818 0 17.924437-5.235355 17.924437-14.641247 0-10.381976-6.122704-16.859619-29.105026-16.859619v-15.084922c19.344194 0 25.644367-6.655113 25.644367-16.14974 0-8.25234-5.14662-13.132756-14.108838-13.221491-7.542461 0.17747-13.665165 3.726863-19.965338 9.405893l-10.648181-12.866551c9.139688-7.986135 19.255459-12.955286 31.678337-12.955286 20.409012 0 34.251646 9.938302 34.251646 28.040208 0 11.446794-6.388908 19.699133-17.658232 24.04714v0.709879c11.979203 3.283189 21.118891 12.156672 21.118891 25.910572 0 19.344194-16.948354 30.613518-37.091162 30.613518-16.770884 0.088735-28.040208-6.122704-35.405199-14.552513zM471.536915 869.2287c0-6.655113 4.170537-12.422877 11.446794-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276257-13.39896 0-5.945234 4.170537-11.535529 8.873484-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559446-20.852687 0-18.811785 15.262392-28.927556 32.210746-28.927556 4.436742 0 8.696014 0.887348 11.979202 1.952167h28.750087v15.351126H533.29636c2.129636 2.75078 3.726863 7.098787 3.726864 12.156672 0 17.924437-13.665165 27.064125-30.790988 27.064125-3.105719 0-6.832582-0.709879-10.293241-1.863431-2.307106 1.863432-3.460659 3.726863-3.460659 6.832582 0 4.259272 3.105719 6.566378 12.511612 6.566378h13.57643c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.3026 28.395147-18.90052 0-33.364298-6.388908-33.364298-20.497747z m56.70156-4.259272c0-5.679029-4.702946-7.098787-13.221491-7.098787h-9.672097c-4.880416 0-8.25234-0.443674-11.091854-1.153553-3.549393 2.839515-5.235355 5.945234-5.235355 9.228423 0 6.655113 7.453726 10.559445 19.077989 10.559446 11.890468 0 20.142808-5.235355 20.142808-11.535529z m-9.672097-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247s-12.511612 5.235355-12.511612 14.641247 5.590295 14.641248 12.511612 14.641248c7.010052 0.088735 12.422877-5.235355 12.422877-14.641248zM561.868977 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
web/src/icons/svg/file/7z.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#8C72FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M511.97338 286.790988v93.082842h93.082842V286.790988h-93.082842z m-93.082843 93.082842V472.956672h93.082843V379.87383h-93.082843zM511.97338 566.12825V473.045407h93.082842V566.12825h-93.082842z m-62.912999 101.157712V575.001733h125.914732v92.284229h-125.914732z m77.288042-60.872097h-28.661352v-15.528596h-27.419064V642.440208h83.588215v-51.643674h-27.507799v15.617331z" fill="#FFFFFF" /><path d="M488.041594 767.18364h-47.473136v-17.569498h70.100519v12.689082c-24.490815 29.90364-27.774003 51.466205-29.459965 92.816637h-21.207626c1.863432-36.647487 7.986135-59.984749 28.040208-87.936221zM523.269324 843.850537l35.671404-51.998613h-31.678336v-16.593414h57.855112v11.269324l-35.760138 51.998613h36.913691v16.593414h-63.001733v-11.269324z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 1.7 KiB |
1
web/src/icons/svg/file/aac.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#DF3D54" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M647.915147 323.438475l-82.257192 21.828769v241.891162c0 35.848873-29.016291 64.865165-64.865165 64.865164-35.848873 0-64.865165-29.016291-64.865164-64.865164 0-35.848873 29.016291-64.865165 64.865164-64.865165 18.456846 0 35.05026 7.719931 46.851993 20.054073v-228.935876l100.270364-26.531715v36.558752z" fill="#FFFFFF" /><path d="M397.265858 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597228-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM481.475217 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613519 35.22773v46.585788h-17.125824l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM564.708492 815.366655c0-26.620451 19.07799-42.060312 40.72929-42.060312 9.849567 0 17.392028 3.815598 23.248526 8.873484l-9.938301 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245407-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528596-6.388908l8.25234 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088042 9.672097-22.006239-0.088735-38.865858-15.439861-38.865858-41.794108z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/aep.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#E06AFF" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M441.278336 557.680693H310.483189l-34.606586 109.321317h-45.964645l121.566725-357.778856h50.312651l121.566725 357.778856h-47.828076l-34.251647-109.321317z m-11.180589-36.115078l-17.037088-54.660658c-13.22149-40.55182-24.40208-79.595147-36.115078-121.034316h-2.040902c-11.180589 41.971577-22.982322 80.571231-35.671403 121.034316l-17.569498 54.660658h108.433969zM549.62357 534.698371c0-85.895321 58.121317-139.579896 119.614558-139.579896 67.34974 0 105.416984 48.804159 105.416985 124.494974 0 9.760832-0.976083 19.07799-1.952167 25.378163H593.990988c2.92825 56.612825 37.62357 92.727903 87.847487 92.727903 25.821837 0 46.851993-7.808666 66.373657-21.030156l16.061005 29.282495c-23.425997 15.173657-51.732409 27.330329-87.847487 27.33033-70.189255 0.088735-126.80208-51.2-126.80208-138.603813z m185.89948-21.47383c0-53.684575-24.40208-82.434662-65.841248-82.434662-37.62357 0-70.810399 30.258579-76.134488 82.434662h141.975736z" fill="#FFFFFF" /><path d="M389.723397 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597228-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM472.956672 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364299 38.155979 0 3.815598-0.443674 7.719931-0.976084 9.583363H493.365685c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924436-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.183709-0.088735-39.575737-15.617331-39.575737-41.794108z m52.619758-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695zM560.715425 775.25851h17.125823l1.419757 8.252339h0.532409c6.743847-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323396 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.531022 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
web/src/icons/svg/file/aepx.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#E06AFF" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M441.278336 557.680693H310.483189l-34.606586 109.321317h-45.964645l121.566725-357.778856h50.312651l121.566725 357.778856h-47.828076l-34.251647-109.321317z m-11.180589-36.115078l-17.037088-54.660658c-13.22149-40.55182-24.40208-79.595147-36.115078-121.034316h-2.040902c-11.180589 41.971577-22.982322 80.571231-35.671403 121.034316l-17.569498 54.660658h108.433969zM549.62357 534.698371c0-85.895321 58.121317-139.579896 119.614558-139.579896 67.34974 0 105.416984 48.804159 105.416985 124.494974 0 9.760832-0.976083 19.07799-1.952167 25.378163H593.990988c2.92825 56.612825 37.62357 92.727903 87.847487 92.727903 25.821837 0 46.851993-7.808666 66.373657-21.030156l16.061005 29.282495c-23.425997 15.173657-51.732409 27.330329-87.847487 27.33033-70.189255 0.088735-126.80208-51.2-126.80208-138.603813z m185.89948-21.47383c0-53.684575-24.40208-82.434662-65.841248-82.434662-37.62357 0-70.810399 30.258579-76.134488 82.434662h141.975736z" fill="#FFFFFF" /><path d="M349.792721 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597227-8.518544h-0.443675c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM433.025997 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976084 9.583363H453.435009c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924436-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.183709-0.088735-39.575737-15.617331-39.575736-41.794108z m52.619757-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695zM520.784749 775.25851h17.125823l1.419757 8.252339h0.532409c6.743847-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896708 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.531022 38.954592c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM624.604506 813.503224l-23.337262-38.15598H623.805893l7.986135 14.286309c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655112-14.286309h21.6513l-23.337262 40.640555 24.934489 39.220797h-22.538648l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108839h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.743847 14.108839l-7.453727 14.552513h-21.651299l25.111958-41.705372z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
web/src/icons/svg/file/aet.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#E06AFF" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M441.278336 557.680693H310.483189l-34.606586 109.321317h-45.964645l121.566725-357.778856h50.312651l121.566725 357.778856h-47.828076l-34.251647-109.321317z m-11.180589-36.115078l-17.037088-54.660658c-13.22149-40.55182-24.40208-79.595147-36.115078-121.034316h-2.040902c-11.180589 41.971577-22.982322 80.571231-35.671403 121.034316l-17.569498 54.660658h108.433969zM549.62357 534.698371c0-85.895321 58.121317-139.579896 119.614558-139.579896 67.34974 0 105.416984 48.804159 105.416985 124.494974 0 9.760832-0.976083 19.07799-1.952167 25.378163H593.990988c2.92825 56.612825 37.62357 92.727903 87.847487 92.727903 25.821837 0 46.851993-7.808666 66.373657-21.030156l16.061005 29.282495c-23.425997 15.173657-51.732409 27.330329-87.847487 27.33033-70.189255 0.088735-126.80208-51.2-126.80208-138.603813z m185.89948-21.47383c0-53.684575-24.40208-82.434662-65.841248-82.434662-37.62357 0-70.810399 30.258579-76.134488 82.434662h141.975736z" fill="#FFFFFF" /><path d="M405.695667 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.047141 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559446 8.962218 5.945234 0.088735 10.381976-2.75078 15.351126-7.808665zM488.928943 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363H509.337955c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924437-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951474 8.873484-22.183709-0.088735-39.575737-15.617331-39.575736-41.794108z m52.619757-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695zM578.018718 827.168388v-35.316464h-11.269325v-15.528596l12.245408-0.976084 2.39584-21.385095H598.960139v21.296361h19.699133v16.504679H598.960139v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.90052 0-26.176776-11.890468-26.176776-29.90364z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
web/src/icons/svg/file/aex.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#E06AFF" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M441.278336 557.680693H310.483189l-34.606586 109.321317h-45.964645l121.566725-357.778856h50.312651l121.566725 357.778856h-47.828076l-34.251647-109.321317z m-11.180589-36.115078l-17.037088-54.660658c-13.22149-40.55182-24.40208-79.595147-36.115078-121.034316h-2.040902c-11.180589 41.971577-22.982322 80.571231-35.671403 121.034316l-17.569498 54.660658h108.433969zM549.62357 534.698371c0-85.895321 58.121317-139.579896 119.614558-139.579896 67.34974 0 105.416984 48.804159 105.416985 124.494974 0 9.760832-0.976083 19.07799-1.952167 25.378163H593.990988c2.92825 56.612825 37.62357 92.727903 87.847487 92.727903 25.821837 0 46.851993-7.808666 66.373657-21.030156l16.061005 29.282495c-23.425997 15.173657-51.732409 27.330329-87.847487 27.33033-70.189255 0.088735-126.80208-51.2-126.80208-138.603813z m185.89948-21.47383c0-53.684575-24.40208-82.434662-65.841248-82.434662-37.62357 0-70.810399 30.258579-76.134488 82.434662h141.975736z" fill="#FFFFFF" /><path d="M395.491161 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.047141 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559446 8.962218 5.945234 0.088735 10.381976-2.75078 15.351126-7.808665zM478.724437 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.159099c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924437-5.590295l7.098786 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.183709-0.088735-39.575737-15.617331-39.575736-41.794108z m52.619757-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695zM580.237088 813.503224l-23.425996-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655113-14.286308H629.129983l-23.337262 40.640554 24.934489 39.220797h-22.449914l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.655112 14.108838l-7.453726 14.552513h-21.6513l25.023223-41.616637z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
web/src/icons/svg/file/ai.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FF9A00" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M509.160485 557.680693H378.365338l-34.606586 109.321317h-45.964645l121.566725-357.778856h50.312652l121.566724 357.778856h-47.828076l-34.251647-109.321317z m-11.180589-36.115078l-17.037088-54.660658c-13.22149-40.55182-24.40208-79.595147-36.115078-121.034316H442.786828c-11.180589 41.971577-22.982322 80.571231-35.671403 121.034316l-17.569498 54.660658h108.433969zM629.218718 318.540312c0-18.101906 13.132756-28.838821 30.790987-28.838822 17.569497 0 30.790988 10.736915 30.790988 28.838822 0 16.593414-13.22149 28.838821-30.790988 28.838821-17.658232-0.088735-30.790988-12.245407-30.790987-28.838821z m8.252339 83.410745h44.456153v265.050953h-44.456153v-265.050953z" fill="#FFFFFF" /><path d="M455.387175 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597227-8.518544h-0.443675c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM541.637435 751.033899c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.422877 4.525477 12.422877 11.358058 0 6.566378-5.235355 11.446794-12.422877 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794z m1.952166 24.224611h20.852687v79.861351h-20.852687v-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
web/src/icons/svg/file/asp.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M395.943709 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037089l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM476.603674 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.627383-4.702946-30.436049-11.18059zM554.690329 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852687l0.088735-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
web/src/icons/svg/file/aspx.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M355.569359 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364299-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037089l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM436.229324 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.627383-4.702946-30.436049-11.18059zM514.315979 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852687l0.088735-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633zM618.135737 813.503224l-23.337262-38.15598h22.538648l7.986135 14.286309c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655113-14.286309h21.6513l-23.337262 40.55182 24.934489 39.220797h-22.538648l-8.873484-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709878c-2.307106 4.525477-4.436742 9.228423-6.655113 14.108838l-7.453726 14.552513h-21.562565l24.934489-41.616637z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 4.1 KiB |
1
web/src/icons/svg/file/avi.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M414.125477 833.468562c0-17.125823 13.842634-26.088042 45.875909-29.459966-0.266205-7.808666-3.726863-13.842634-13.576429-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613519 35.22773v46.585788h-17.037089l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.875909-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910571 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351126-7.808665zM493.09948 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.62045 79.861351h-24.22461l-27.241595-79.861351zM582.455459 751.033899c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.422877 4.525477 12.422877 11.358058 0 6.566378-5.235355 11.446794-12.422877 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794z m1.952167 24.224611h20.852686v79.861351h-20.852686v-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
web/src/icons/svg/file/bak.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M410.576083 846.690052h-0.443674l-1.863432 8.429809h-16.327209v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500866 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.907452-3.638128-21.47383-10.381976z m33.807972-32.47695c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM477.748354 833.468562c0-17.125823 13.842634-26.088042 45.875909-29.459966-0.266205-7.808666-3.726863-13.842634-13.576429-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613519 35.22773v46.585788h-17.125824l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.875909-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910571 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351126-7.808665zM565.95078 741.361802h20.409012v68.414558h0.532409l27.685269-34.51785h22.804852l-27.685268 32.654419 30.258579 47.206932h-22.627383l-19.344195-33.098093-11.535528 13.132755v19.965338h-20.409012v-113.758059z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
web/src/icons/svg/file/bat.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M423.886308 846.690052h-0.443674l-1.863431 8.429809h-16.32721v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.907452-3.638128-21.473831-10.381976z m33.807973-32.47695c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633zM491.058579 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.125823l-1.597227-8.518544h-0.443675c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM579.52721 827.168388v-35.316464h-11.269324v-15.528596l12.245407-0.976084 2.484575-21.385095h17.569498v21.296361H620.256499v16.504679h-19.699133v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.989255 0-26.265511-11.890468-26.265511-29.90364z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
web/src/icons/svg/file/bmp.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M381.293588 846.690052h-0.443675l-1.863431 8.429809h-16.32721v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.907452-3.638128-21.47383-10.381976z m33.807972-32.47695c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633zM454.411092 775.25851h17.125823l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977H549.268631v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852686v-79.861351zM591.861352 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611H591.861352v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
web/src/icons/svg/file/c.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M480.596742 815.366655c0-26.620451 19.07799-42.060312 40.729289-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027036 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245408-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787869 24.668284 5.679029 0 11.091854-2.75078 15.528596-6.388908l8.252339 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088041 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
web/src/icons/svg/file/cmd.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M366.119931 815.366655c0-26.620451 19.07799-42.060312 40.729289-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027036 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245408-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528597-6.388908l8.252339 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088041 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108zM446.158752 775.25851h17.125823l1.419758 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490814-12.689082 11.446794 0 18.101906 5.14662 21.917505 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM578.994801 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.948354l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.699133-0.088735-32.565685-15.706066-32.565684-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818718-8.25234z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
web/src/icons/svg/file/cpp.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M388.756187 815.366655c0-26.620451 19.07799-42.060312 40.72929-42.060312 9.849567 0 17.392028 3.815598 23.248526 8.873484l-10.027036 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245407-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528596-6.388908l8.25234 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088042 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108zM468.795009 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896708 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.531022 38.954592c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM560.635563 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852687l0.088735-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
web/src/icons/svg/file/cs.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M445.102808 815.366655c0-26.620451 19.07799-42.060312 40.729289-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027036 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245408-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528597-6.388908l8.252339 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088041 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108zM517.599168 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
web/src/icons/svg/file/css.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M410.052548 815.366655c0-26.620451 19.07799-42.060312 40.729289-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027036 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245408-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528597-6.388908l8.252339 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088041 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108zM482.548908 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059zM553.093102 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
web/src/icons/svg/file/csv.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#1FB77A" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M484.935875 481.989879l-97.608319-172.766725h49.780243l48.804159 91.308146c9.228423 16.593414 16.593414 31.767071 28.306413 52.264818h1.952166c9.760832-20.497747 16.593414-35.671404 25.378163-52.264818l47.828076-91.308146h47.295668l-97.608319 175.2513 104.440901 182.527556h-49.780243l-52.708492-96.632235c-9.317158-17.569497-19.07799-36.115078-30.790988-57.588908h-1.952166c-10.204506 21.47383-19.521664 40.019411-28.838822 57.588908l-51.643674 96.632235h-47.295667l104.440901-185.012131z" fill="#FFFFFF" /><path d="M404.27591 815.366655c0-26.620451 19.07799-42.060312 40.729289-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027036 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245408-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787869 24.668284 5.679029 0 11.091854-2.75078 15.528596-6.388908l8.25234 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088042 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108zM476.77227 845.891438l9.583363-13.132755c7.098787 5.590295 13.931369 8.696014 21.385095 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059zM545.630503 775.25851h21.11889l11.712999 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.620451 79.861351h-24.22461l-27.241594-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
web/src/icons/svg/file/db.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFA566" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M426.823432 815.366655c0-26.088042 16.238475-42.060312 33.453032-42.060312 8.962218 0 14.552513 3.460659 20.231543 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.654419-41.794108z m52.885961 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818717-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818717-8.25234zM541.912513 846.690052h-0.443674l-1.863432 8.429809h-16.415944v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500866 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.818718-3.638128-21.385095-10.381976z m33.719237-32.47695c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M511.991127 286.808735c-97.164645 0-175.872444 32.388215-175.872444 72.318891s78.707799 72.318891 175.872444 72.31889 175.872444-32.388215 175.872443-72.31889-78.707799-72.318891-175.872443-72.318891z" fill="#FFFFFF" opacity=".6" /><path d="M511.991127 401.897816c-97.164645 0-175.872444 32.47695-175.872444 72.407626s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.407626-175.872443-72.407626z" fill="#FFFFFF" opacity=".8" /><path d="M511.991127 517.075633c-97.164645 0-175.872444 32.388215-175.872444 72.31889s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.318891-175.872443-72.31889z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
web/src/icons/svg/file/dbf.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFA566" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M400.202981 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.859619l-1.685961-8.252339h-0.443675c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.654419-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818718-8.25234zM515.292062 846.690052h-0.443674l-1.863431 8.429809h-16.415945v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.818718-3.638128-21.385096-10.381976z m33.719238-32.47695c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037089-25.555633zM630.292409 757.600277c-2.75078-0.976083-5.856499-1.685962-8.429809-1.685962-6.300173 0-9.672097 3.726863-9.672097 12.511612v6.832583h14.996187v16.504679h-14.996187v63.356672h-20.941422v-63.267937h-10.64818v-15.528596l10.64818-0.887349v-6.566378c0-16.682149 7.719931-29.459965 27.774004-29.459965 6.122704 0 11.535529 1.419757 15.084922 2.839515l-3.815598 15.351126z" fill="#FFFFFF" /><path d="M511.991127 286.808735c-97.164645 0-175.872444 32.388215-175.872444 72.318891s78.707799 72.318891 175.872444 72.31889 175.872444-32.388215 175.872443-72.31889-78.707799-72.318891-175.872443-72.318891z" fill="#FFFFFF" opacity=".6" /><path d="M511.991127 401.897816c-97.164645 0-175.872444 32.47695-175.872444 72.407626s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.407626-175.872443-72.407626z" fill="#FFFFFF" opacity=".8" /><path d="M511.991127 517.075633c-97.164645 0-175.872444 32.388215-175.872444 72.31889s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.318891-175.872443-72.31889z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/dir.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1643094307321" class="icon" viewBox="0 0 1208 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="948" xmlns:xlink="http://www.w3.org/1999/xlink" width="235.9375" height="200"><defs><style type="text/css"></style></defs><path d="M132.51584 120.4736h879.4368c33.26976 0 60.2368 26.96704 60.2368 60.23168v409.6c0 33.26976-26.96704 60.2368-60.2368 60.2368H132.51584c-33.26464 0-60.23168-26.96704-60.23168-60.2368v-409.6c0-33.26464 26.96704-60.2368 60.23168-60.2368z" fill="#F9B552" p-id="949"></path><path d="M469.8368 0c73.18528 0 132.51584 59.33056 132.51584 132.51584v84.3264h469.8368c73.18528 0 132.51584 59.33568 132.51584 132.52096v542.12096c0 73.18528-59.33056 132.51584-132.51584 132.51584H132.51584A132.51584 132.51584 0 0 1 0 891.48416V349.3632c0-4.03456 0.1792-8.06912 0.54272-12.04736A134.25664 134.25664 0 0 1 0 325.2736V132.51584C0 59.33056 59.33056 0 132.51584 0h337.32096z" fill="#FFCF5C" p-id="950"></path></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
web/src/icons/svg/file/div.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#F7CE5A" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M409.954939 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231543 8.696014l-0.887349-12.511612v-28.128943h20.941422v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.65442-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818717-5.945234-8.962218 0-16.504679 8.518544-16.50468 24.490815 0 16.504679 5.945234 24.757019 16.50468 24.757019 5.590295 0 10.293241-2.307106 14.818717-8.25234zM504.368804 751.033899c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.422877 4.525477 12.422877 11.358058 0 6.566378-5.235355 11.446794-12.422877 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794z m1.952167 24.224611h20.852686v79.861351h-20.852686v-79.861351zM540.395147 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388909 24.22461h0.709878c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712999-39.753206H618.481802l-26.62045 79.861351h-24.22461l-27.241595-79.861351z" fill="#FFFFFF" /><path d="M406.290191 634.010399l-34.872791-27.419065 97.608319-124.228769-97.608319-124.22877 34.872791-27.419064 119.082149 151.647834-119.082149 151.647834z m207.19584-8.962219l-60.694627-275.876603 43.302599-9.494627 60.694628 275.876603-43.3026 9.494627z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
web/src/icons/svg/file/dll.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M427.701906 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231543 8.696014l-0.887349-12.511612v-28.128943h20.941422v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.65442-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818717-5.945234-8.962218 0-16.504679 8.518544-16.50468 24.490815 0 16.504679 5.945234 24.757019 16.50468 24.757019 5.590295 0 10.293241-2.307106 14.818717-8.25234zM524.067938 832.758683v-91.396881h20.852686v92.372964c0 4.702946 2.307106 6.300173 4.259272 6.300173 0.887348 0 1.419757 0 2.839515-0.266204l2.57331 15.528596c-2.395841 0.976083-5.945234 1.863432-10.82565 1.863432-14.552513-0.088735-19.699133-9.583362-19.699133-24.40208zM568.967764 832.758683v-91.396881h20.852687v92.372964c0 4.702946 2.307106 6.300173 4.259272 6.300173 0.887348 0 1.419757 0 2.839514-0.266204l2.573311 15.528596c-2.395841 0.976083-5.945234 1.863432-10.82565 1.863432-14.552513-0.088735-19.699133-9.583362-19.699134-24.40208z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
web/src/icons/svg/file/doc.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#3E8AF0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M309.95078 309.223154h46.851993l37.62357 194.772964c6.832582 38.510919 14.197574 77.110572 21.030156 115.710225h1.952167c8.25234-38.599653 17.037088-77.110572 25.821837-115.710225l49.336568-194.772964h40.995494l50.312652 194.772964c8.784749 38.067244 17.037088 76.666898 25.378163 115.710225h2.484575c6.832582-39.043328 13.665165-77.642981 20.497747-115.710225l37.62357-194.772964h43.480069L638.890815 667.00201h-54.12825l-54.216984-215.714384c-6.388908-28.306412-11.712998-54.12825-17.569498-81.547314h-1.952166c-5.856499 27.330329-12.245407 53.240901-18.101907 81.547314l-53.240901 215.714384h-53.59584l-76.134489-357.778856z" fill="#FFFFFF" /><path d="M390.433276 815.366655c0-26.088042 16.238475-42.060312 33.453032-42.060312 8.962218 0 14.552513 3.460659 20.231543 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.654419-41.794108z m52.885961 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818717-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818717-8.25234zM481.830156 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312 19.965338 0 38.333449 15.351127 38.333449 42.060312 0 26.354246-18.368111 41.794107-38.333449 41.794108-19.965338-0.088735-38.333449-15.439861-38.333449-41.794108z m55.281802 0c0-15.084922-6.122704-24.934489-16.948353-24.934489-10.82565 0-16.948354 9.849567-16.948354 24.934489 0 14.996187 6.122704 24.668284 16.948354 24.668284 10.82565 0 16.948354-9.672097 16.948353-24.668284zM571.0974 815.366655c0-26.620451 19.07799-42.060312 40.72929-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027037 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245407-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528596-6.388908l8.25234 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088042 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/docx.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#3E8AF0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M309.95078 309.223154h46.851993l37.62357 194.772964c6.832582 38.510919 14.197574 77.110572 21.030156 115.710225h1.952167c8.25234-38.599653 17.037088-77.110572 25.821837-115.710225l49.336568-194.772964h40.995494l50.312652 194.772964c8.784749 38.067244 17.037088 76.666898 25.378163 115.710225h2.484575c6.832582-39.043328 13.665165-77.642981 20.497747-115.710225l37.62357-194.772964h43.480069L638.890815 667.00201h-54.12825l-54.216984-215.714384c-6.388908-28.306412-11.712998-54.12825-17.569498-81.547314h-1.952166c-5.856499 27.330329-12.245407 53.240901-18.101907 81.547314l-53.240901 215.714384h-53.59584l-76.134489-357.778856z" fill="#FFFFFF" /><path d="M350.5026 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.654419-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818718-8.25234zM441.89948 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312 19.965338 0 38.333449 15.351127 38.333449 42.060312 0 26.354246-18.368111 41.794107-38.333449 41.794108-19.965338-0.088735-38.333449-15.439861-38.333449-41.794108z m55.281802 0c0-15.084922-6.122704-24.934489-16.948353-24.934489-10.82565 0-16.948354 9.849567-16.948354 24.934489 0 14.996187 6.122704 24.668284 16.948354 24.668284 10.82565 0 16.948354-9.672097 16.948353-24.668284zM531.166724 815.366655c0-26.620451 19.07799-42.060312 40.72929-42.060312 9.849567 0 17.392028 3.815598 23.248527 8.873484l-10.027037 13.487695c-3.993068-3.460659-7.719931-5.235355-12.245407-5.235356-12.156672 0-20.409012 9.849567-20.409012 24.934489 0 14.996187 8.25234 24.668284 19.787868 24.668284 5.679029 0 11.091854-2.75078 15.528596-6.388908l8.25234 13.842635c-7.542461 6.655113-17.214558 9.672097-26.088042 9.672097-22.006239-0.088735-38.777123-15.439861-38.777123-41.794108zM627.177816 813.503224l-23.337261-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655113-14.286308H676.159445l-23.337261 40.640554 24.934488 39.220797h-22.449913l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.655112 14.108838l-7.453727 14.552513h-21.651299l24.934488-41.616637z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
web/src/icons/svg/file/dot.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#3E8AF0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M309.95078 309.223154h46.851993l37.62357 194.772964c6.832582 38.510919 14.197574 77.110572 21.030156 115.710225h1.952167c8.25234-38.599653 17.037088-77.110572 25.821837-115.710225l49.336568-194.772964h40.995494l50.312652 194.772964c8.784749 38.067244 17.037088 76.666898 25.378163 115.710225h2.484575c6.832582-39.043328 13.665165-77.642981 20.497747-115.710225l37.62357-194.772964h43.480069L638.890815 667.00201h-54.12825l-54.216984-215.714384c-6.388908-28.306412-11.712998-54.12825-17.569498-81.547314h-1.952166c-5.856499 27.330329-12.245407 53.240901-18.101907 81.547314l-53.240901 215.714384h-53.59584l-76.134489-357.778856z" fill="#FFFFFF" /><path d="M397.975737 815.366655c0-26.088042 16.238475-42.060312 33.453032-42.060312 8.962218 0 14.552513 3.460659 20.231543 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.654419-41.794108z m52.885961 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818717-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818717-8.25234zM489.372617 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312 19.965338 0 38.333449 15.351127 38.333449 42.060312 0 26.354246-18.368111 41.794107-38.333449 41.794108-19.965338-0.088735-38.333449-15.439861-38.333449-41.794108z m55.281802 0c0-15.084922-6.122704-24.934489-16.948353-24.934489s-16.948354 9.849567-16.948354 24.934489c0 14.996187 6.122704 24.668284 16.948354 24.668284s16.948354-9.672097 16.948353-24.668284zM582.632929 827.168388v-35.316464h-11.269324v-15.528596l12.245407-0.976084 2.395841-21.385095h17.569497v21.296361h19.699134v16.504679h-19.699134v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808666-1.685962l3.460658 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.90052 0-26.176776-11.890468-26.176776-29.90364z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.0 KiB |
1
web/src/icons/svg/file/eps.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#0092BF" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M291.937608 309.223154h102.045061c80.571231 0 134.167071 26.79792 134.167071 104.97331 0 75.60208-53.684575 110.829809-131.77123 110.82981h-59.097401v141.975736H291.937608v-357.778856z m98.584402 179.155633c63.001733 0 92.727903-22.982322 92.727903-74.182323 0-51.732409-31.767071-68.325823-94.680069-68.325823h-51.288735v142.508146h53.240901zM561.336568 636.743432l22.00624-29.282496c22.893588 18.545581 46.851993 31.234662 78.619064 31.234662 35.138995 0 52.176083-18.545581 52.176083-41.527903 0-26.79792-31.234662-39.043328-60.517158-50.312652-37.091161-13.665165-79.062738-31.767071-79.062738-76.666897 0-41.971577 33.719237-75.158406 91.308146-75.158406 32.654419 0 61.493241 13.665165 82.523396 29.72617l-21.47383 28.838821c-18.545581-13.665165-37.091161-23.425997-61.049566-23.425996-33.186828 0-48.360485 17.569497-48.360486 38.067244 0 25.378163 28.838821 34.695321 58.564992 45.87591 38.599653 14.641248 81.014905 30.258579 81.014904 80.571231 0 42.94766-34.162912 78.619064-96.632235 78.619064-37.62357 0.088735-73.738648-15.617331-99.116812-36.558752z" fill="#FFFFFF" /><path d="M395.402426 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.247833c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924436-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.094974-0.088735-39.487002-15.617331-39.487002-41.794108z m52.531023-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695zM483.161179 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442287 38.954592c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633zM566.660659 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385095 8.696014 7.986135 0 11.535529-3.460659 11.535529-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.82877-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241595 9.849567l-9.405893 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559445 7.719931 0 5.856499 7.808666 7.986135 16.238474 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436048-11.18059z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
web/src/icons/svg/file/exe.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M395.402426 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.247833c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924436-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.094974-0.088735-39.487002-15.617331-39.487002-41.794108z m52.531023-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695zM496.826343 813.503224l-23.337262-38.244714H496.02773l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655112-14.286308h21.6513l-23.337261 40.640554 24.934488 39.220797h-22.538648l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.655112 14.108838l-7.453727 14.552513h-21.562565l24.934489-41.616637zM552.019411 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.159099c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924437-5.590295l7.098786 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.183709-0.088735-39.575737-15.617331-39.575736-41.794108z m52.619757-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392028 17.658232h32.47695z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
web/src/icons/svg/file/flv.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M436.75286 768.869601c0-16.682149 7.719931-29.459965 27.774003-29.459965 6.122704 0 11.535529 1.419757 15.084922 2.839515l-3.815598 15.351126c-2.75078-0.976083-5.856499-1.685962-8.429809-1.685962-6.300173 0-9.672097 3.726863-9.672097 12.511612v6.832583h14.996187v16.504679h-14.996187v63.356672h-20.941421v-63.267937h-10.648181v-15.528596l10.648181-0.887349v-6.566378z m79.861351 86.42773c-2.307106 0.976083-5.856499 1.863432-10.64818 1.863432-14.641248 0-19.699133-9.583362-19.699133-24.40208v-91.396881h20.852686v92.372964c0 4.702946 2.307106 6.300173 4.170537 6.300173 0.887348 0 1.597227 0 2.839515-0.266204l2.484575 15.528596zM521.849567 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.620451 79.861351h-24.22461l-27.241594-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
web/src/icons/svg/file/gif.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M426.992028 869.2287c0-6.655113 4.170537-12.422877 11.446793-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276256-13.39896 0-5.945234 4.170537-11.535529 8.873484-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559446-20.852687 0-18.811785 15.262392-28.927556 32.210745-28.927556 4.436742 0 8.696014 0.887348 11.979203 1.952167h28.750087v15.351126h-13.665165c2.129636 2.75078 3.726863 7.098787 3.726863 12.156672 0 17.924437-13.665165 27.064125-30.790988 27.064125-3.105719 0-6.832582-0.709879-10.293241-1.863431-2.307106 1.863432-3.460659 3.726863-3.460658 6.832582 0 4.259272 3.105719 6.566378 12.511612 6.566378h13.576429c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.302599 28.395147-18.811785 0-33.364298-6.388908-33.364298-20.497747z m56.790294-4.259272c0-5.679029-4.702946-7.098787-13.22149-7.098787h-9.760832c-4.880416 0-8.25234-0.443674-11.091854-1.153553-3.549393 2.839515-5.235355 5.945234-5.235356 9.228423 0 6.655113 7.453726 10.559445 19.07799 10.559446 11.979203 0 20.231542-5.235355 20.231542-11.535529z m-9.672097-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247-7.098787 0-12.511612 5.235355-12.511611 14.641247s5.50156 14.729983 12.511611 14.729983c7.010052 0 12.422877-5.32409 12.422877-14.729983zM515.371924 751.033899c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.422877 4.525477 12.422876 11.358058 0 6.566378-5.235355 11.446794-12.422876 11.446794s-12.511612-4.880416-12.511612-11.446794z m2.040901 24.224611h20.763951v79.861351H517.32409v-79.861351zM603.308146 757.600277c-2.75078-0.976083-5.856499-1.685962-8.42981-1.685962-6.300173 0-9.672097 3.726863-9.672097 12.511612v6.832583h14.996187v16.504679h-14.996187v63.356672h-20.941421v-63.267937h-10.64818v-15.528596l10.64818-0.887349v-6.566378c0-16.682149 7.719931-29.459965 27.774003-29.459965 6.122704 0 11.535529 1.419757 15.084923 2.839515l-3.815598 15.351126z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.4 KiB |
1
web/src/icons/svg/file/h.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M477.579757 741.361802h20.852687v28.661352l-0.887349 14.996187c6.388908-5.945234 14.286308-11.712998 25.111959-11.712998 17.214558 0 24.668284 11.979203 24.668284 32.033276v49.780242h-21.030156v-47.206932c0-12.245407-3.460659-16.682149-11.269324-16.682149-6.566378 0-10.64818 3.105719-16.682149 8.962218v54.926863h-20.763952v-113.758059z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
web/src/icons/svg/file/htm.svg
Normal file
After Width: | Height: | Size: 6.5 KiB |
1
web/src/icons/svg/file/html.svg
Normal file
After Width: | Height: | Size: 6.8 KiB |
1
web/src/icons/svg/file/java.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M356.989116 885.644645l3.726863-15.528596c2.129636 0.709879 4.259272 1.153553 6.566378 1.153552 6.832582 0 8.873484-4.525477 8.873484-13.576429v-82.434662h20.941421v81.813518c0 17.125823-6.566378 30.613518-26.620451 30.613518-6.211438 0.088735-10.293241-0.887348-13.487695-2.040901z m17.125823-134.610746c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.511612 4.525477 12.511612 11.358058 0 6.566378-5.412825 11.446794-12.511612 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794zM415.465373 833.468562c0-17.125823 13.842634-26.088042 45.875909-29.459966-0.266205-7.808666-3.726863-13.842634-13.576429-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.763951-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613519 35.22773v46.585788h-17.125824l-1.597227-8.518544h-0.354939c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.875909-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910571 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351126-7.808665zM494.439376 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.624264-39.753206h20.054072l-26.62045 79.861351h-24.22461l-27.15286-79.861351zM578.471265 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.037088l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.047141 10.559446-14.286308-0.088735-23.692201-10.204506-23.692201-23.692201z m45.964645-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.293241-2.75078 15.351127-7.808665z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
web/src/icons/svg/file/jpeg.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M352.543501 885.644645l3.726863-15.528596c2.129636 0.709879 4.259272 1.153553 6.566378 1.153552 6.832582 0 8.873484-4.525477 8.873483-13.576429v-82.434662h20.941421v81.813518c0 17.125823-6.566378 30.613518-26.62045 30.613518-6.211438 0.088735-10.293241-0.887348-13.487695-2.040901z m17.125823-134.610746c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.511612 4.525477 12.511612 11.358058 0 6.566378-5.412825 11.446794-12.511612 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794zM415.012825 775.25851H432.138648l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633zM501.795494 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.159099c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924437-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.183709-0.088735-39.575737-15.617331-39.575737-41.794108z m52.619757-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392027 17.658232h32.476949zM582.632929 869.2287c0-6.655113 4.170537-12.422877 11.446794-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276257-13.39896 0-5.945234 4.170537-11.535529 8.873484-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559446-20.852687 0-18.811785 15.262392-28.927556 32.210746-28.927556 4.436742 0 8.696014 0.887348 11.979202 1.952167h28.750087v15.351126h-13.665165c2.129636 2.75078 3.726863 7.098787 3.726863 12.156672 0 17.924437-13.665165 27.064125-30.790987 27.064125-3.105719 0-6.832582-0.709879-10.293241-1.863431-2.307106 1.863432-3.460659 3.726863-3.460659 6.832582 0 4.259272 3.105719 6.566378 12.511612 6.566378h13.57643c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.3026 28.395147-18.811785 0-33.364298-6.388908-33.364298-20.497747z m56.70156-4.259272c0-5.679029-4.702946-7.098787-13.221491-7.098787h-9.672097c-4.880416 0-8.25234-0.443674-11.091854-1.153553-3.549393 2.839515-5.235355 5.945234-5.235355 9.228423 0 6.655113 7.453726 10.559445 19.077989 10.559446 11.890468 0 20.142808-5.235355 20.142808-11.535529z m-9.672097-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247s-12.511612 5.235355-12.511612 14.641247 5.590295 14.641248 12.511612 14.641248 12.422877-5.235355 12.422877-14.641248z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 4.3 KiB |
1
web/src/icons/svg/file/jpg.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M393.805199 885.644645l3.726863-15.528596c2.129636 0.709879 4.259272 1.153553 6.566378 1.153552 6.832582 0 8.873484-4.525477 8.873484-13.576429v-82.434662H433.913345v81.813518c0 17.125823-6.566378 30.613518-26.620451 30.613518-6.211438 0.088735-10.293241-0.887348-13.487695-2.040901z m17.125824-134.610746c0-6.832582 5.235355-11.358059 12.511611-11.358058 7.098787 0 12.511612 4.525477 12.511612 11.358058 0 6.566378-5.412825 11.446794-12.511612 11.446794-7.276256 0-12.511612-4.880416-12.511611-11.446794zM456.274523 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763952v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM542.790988 869.2287c0-6.655113 4.170537-12.422877 11.446794-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276257-13.39896 0-5.945234 4.170537-11.535529 8.873484-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559446-20.852687 0-18.811785 15.262392-28.927556 32.210745-28.927556 4.436742 0 8.696014 0.887348 11.979203 1.952167h28.750087v15.351126h-13.665165c2.129636 2.75078 3.726863 7.098787 3.726863 12.156672 0 17.924437-13.665165 27.064125-30.790988 27.064125-3.105719 0-6.832582-0.709879-10.29324-1.863431-2.307106 1.863432-3.460659 3.726863-3.460659 6.832582 0 4.259272 3.105719 6.566378 12.511612 6.566378h13.57643c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.3026 28.395147-18.811785 0-33.364298-6.388908-33.364298-20.497747z m56.70156-4.259272c0-5.679029-4.702946-7.098787-13.221491-7.098787h-9.672097c-4.880416 0-8.25234-0.443674-11.091854-1.153553-3.549393 2.839515-5.235355 5.945234-5.235356 9.228423 0 6.655113 7.453726 10.559445 19.07799 10.559446 11.890468 0 20.142808-5.235355 20.142808-11.535529z m-9.672097-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247s-12.511612 5.235355-12.511612 14.641247 5.590295 14.641248 12.511612 14.641248 12.422877-5.235355 12.422877-14.641248z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
web/src/icons/svg/file/js.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M447.054974 885.644645l3.726863-15.528596c2.129636 0.709879 4.259272 1.153553 6.566378 1.153552 6.832582 0 8.873484-4.525477 8.873483-13.576429v-82.434662h20.941422v81.813518c0 17.125823-6.566378 30.613518-26.620451 30.613518-6.211438 0.088735-10.293241-0.887348-13.487695-2.040901z m17.125823-134.610746c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.511612 4.525477 12.511612 11.358058 0 6.566378-5.412825 11.446794-12.511612 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794zM501.981837 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.82565 0-22.627383-4.702946-30.436049-11.18059z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
web/src/icons/svg/file/json.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M356.545442 885.644645l3.726863-15.528596c2.129636 0.709879 4.259272 1.153553 6.566378 1.153552 6.832582 0 8.873484-4.525477 8.873483-13.576429v-82.434662h20.941422v81.813518c0 17.125823-6.566378 30.613518-26.620451 30.613518-6.211438 0.088735-10.293241-0.887348-13.487695-2.040901z m17.125823-134.610746c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.511612 4.525477 12.511612 11.358058 0 6.566378-5.412825 11.446794-12.511612 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794zM411.472305 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214559-6.832582-7.098787 0-10.559445 3.105719-10.559445 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.82565 0-22.627383-4.702946-30.436049-11.18059zM484.589809 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312s38.333449 15.351127 38.333449 42.060312c0 26.354246-18.368111 41.794107-38.333449 41.794108s-38.333449-15.439861-38.333449-41.794108z m55.281803 0c0-15.084922-6.122704-24.934489-16.948354-24.934489s-16.948354 9.849567-16.948353 24.934489c0 14.996187 6.122704 24.668284 16.948353 24.668284s16.948354-9.672097 16.948354-24.668284zM578.73747 775.25851h17.125823l1.419757 10.559445h0.532409c7.010052-6.832582 15.084922-12.511612 25.910572-12.511612 17.214558 0 24.668284 11.979203 24.668284 32.033276v49.780242h-20.941421v-47.206932c0-12.245407-3.460659-16.682149-11.269324-16.682149-6.566378 0-10.64818 3.105719-16.682149 8.962218v54.926863h-20.852686l0.088735-79.861351z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
web/src/icons/svg/file/jsp.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M401.356534 885.644645l3.726863-15.528596c2.129636 0.709879 4.259272 1.153553 6.566378 1.153552 6.832582 0 8.873484-4.525477 8.873483-13.576429v-82.434662h20.941421v81.813518c0 17.125823-6.566378 30.613518-26.62045 30.613518-6.211438 0.088735-10.293241-0.887348-13.487695-2.040901z m17.125823-134.610746c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.511612 4.525477 12.511612 11.358058 0 6.566378-5.412825 11.446794-12.511612 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794zM456.283397 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385095 8.696014 7.986135 0 11.535529-3.460659 11.535529-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.82877-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241595 9.849567l-9.405893 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559445 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272443 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.82565 0-22.627383-4.702946-30.436048-11.18059zM534.370052 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.852686l0.088735-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
web/src/icons/svg/file/lib.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M433.203466 832.758683v-91.396881h20.852687v92.372964c0 4.702946 2.307106 6.300173 4.259272 6.300173 0.887348 0 1.419757 0 2.839514-0.266204l2.573311 15.528596c-2.395841 0.976083-5.945234 1.863432-10.82565 1.863432-14.552513-0.088735-19.699133-9.583362-19.699134-24.40208zM476.062392 751.033899c0-6.832582 5.32409-11.358059 12.600346-11.358058 7.098787 0 12.422877 4.525477 12.422877 11.358058 0 6.566378-5.235355 11.446794-12.422877 11.446794-7.276256 0-12.600347-4.880416-12.600346-11.446794z m2.040901 24.224611h20.852686v79.861351h-20.852686v-79.861351zM540.128943 846.690052h-0.443674l-1.863432 8.429809h-16.415944v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500866 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.907452-3.638128-21.385095-10.381976z m33.719237-32.47695c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 3.5 KiB |
1
web/src/icons/svg/file/m4v.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M371.532756 775.25851H388.658579l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863H418.828423v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852686v-79.861351zM577.663778 827.789532h-12.511612v27.330329h-19.521663v-27.330329h-44.899827v-14.286308l39.309532-63.889082h25.111958v62.114385H577.663778v16.061005z m-32.12201-15.97227v-21.562565c0-6.122704 0.532409-15.706066 0.887348-21.82877h-0.532409c-2.57331 5.590295-5.412825 11.358059-8.429809 17.125823l-16.415945 26.265512h24.490815zM583.609012 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.62045 79.861351h-24.22461l-27.241595-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
web/src/icons/svg/file/mdb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFA566" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M362.668146 775.25851h17.125823l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852686v-79.861351zM495.504194 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.948353l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.565685-15.706066-32.565685-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.50156 0 10.204506-2.307106 14.818718-8.25234zM610.504541 846.690052h-0.443674l-1.863432 8.429809h-16.32721v-113.758059h20.852687v28.661352l-0.443675 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.187522 0-14.907452-3.638128-21.47383-10.381976z m33.807972-32.47695c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M511.991127 286.808735c-97.164645 0-175.872444 32.388215-175.872444 72.318891s78.707799 72.318891 175.872444 72.31889 175.872444-32.388215 175.872443-72.31889-78.707799-72.318891-175.872443-72.318891z" fill="#FFFFFF" opacity=".6" /><path d="M511.991127 401.897816c-97.164645 0-175.872444 32.47695-175.872444 72.407626s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.407626-175.872443-72.407626z" fill="#FFFFFF" opacity=".8" /><path d="M511.991127 517.075633c-97.164645 0-175.872444 32.388215-175.872444 72.31889s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.318891-175.872443-72.31889z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
web/src/icons/svg/file/mdf.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFA566" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M381.746135 775.25851h17.125823l1.419758 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490814-12.689082 11.446794 0 18.101906 5.14662 21.917505 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM514.582184 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.948354l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.565685-15.706066-32.565684-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.50156 0 10.204506-2.307106 14.818718-8.25234zM653.540936 757.600277c-2.75078-0.976083-5.856499-1.685962-8.429809-1.685962-6.300173 0-9.672097 3.726863-9.672098 12.511612v6.832583h14.996188v16.504679h-14.996188v63.356672h-20.941421v-63.267937h-10.64818v-15.528596l10.64818-0.887349v-6.566378c0-16.682149 7.719931-29.459965 27.774004-29.459965 6.122704 0 11.535529 1.419757 15.084922 2.839515l-3.815598 15.351126z" fill="#FFFFFF" /><path d="M511.991127 286.808735c-97.164645 0-175.872444 32.388215-175.872444 72.318891s78.707799 72.318891 175.872444 72.31889 175.872444-32.388215 175.872443-72.31889-78.707799-72.318891-175.872443-72.318891z" fill="#FFFFFF" opacity=".6" /><path d="M511.991127 401.897816c-97.164645 0-175.872444 32.47695-175.872444 72.407626s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.407626-175.872443-72.407626z" fill="#FFFFFF" opacity=".8" /><path d="M511.991127 517.075633c-97.164645 0-175.872444 32.388215-175.872444 72.31889s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.318891-175.872443-72.31889z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/mkv.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M370.201733 775.25851h17.125823l1.419758 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490814-12.689082 11.446794 0 18.101906 5.14662 21.917505 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM507.563258 741.361802h20.409012v68.414558h0.532409l27.685269-34.51785h22.804853l-27.685269 32.654419 30.258579 47.206932h-22.627383l-19.344194-33.098093-11.535529 13.132755v19.965338h-20.409012v-113.758059zM584.585095 775.25851h21.030156l11.712999 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709878c1.952166-8.163605 4.259272-16.415945 6.388909-24.22461l11.712998-39.753206h20.054073l-26.620451 79.861351h-24.22461l-27.15286-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.5 KiB |
1
web/src/icons/svg/file/mov.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M368.870711 775.25851H385.996534l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863H416.166378v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852686v-79.861351zM501.263085 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312s38.333449 15.351127 38.333449 42.060312c0 26.354246-18.368111 41.794107-38.333449 41.794108s-38.333449-15.439861-38.333449-41.794108z m55.281802 0c0-15.084922-6.122704-24.934489-16.948353-24.934489-10.82565 0-16.948354 9.849567-16.948354 24.934489 0 14.996187 6.122704 24.668284 16.948354 24.668284 10.82565 0 16.948354-9.672097 16.948353-24.668284zM585.117504 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388909 24.22461h0.709878c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.624264-39.753206h20.054073l-26.620451 79.861351H612.270364l-27.15286-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
web/src/icons/svg/file/mp3.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#DF3D54" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M647.915147 323.438475l-82.257192 21.828769v241.891162c0 35.848873-29.016291 64.865165-64.865165 64.865164-35.848873 0-64.865165-29.016291-64.865164-64.865164 0-35.848873 29.016291-64.865165 64.865164-64.865165 18.456846 0 35.05026 7.719931 46.851993 20.054073v-228.935876l100.270364-26.531715v36.558752z" fill="#FFFFFF" /><path d="M366.65234 775.25851h17.125823l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM504.013865 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037089-25.555633zM588.311958 842.43078l9.849567-13.221491c6.300173 6.122704 13.931369 10.82565 23.514731 10.82565 10.64818 0 17.924437-5.235355 17.924437-14.641247 0-10.381976-6.122704-16.859619-29.105026-16.859619v-15.084922c19.344194 0 25.644367-6.655113 25.644368-16.14974 0-8.25234-5.14662-13.132756-14.108839-13.221491-7.542461 0.088735-13.665165 3.638128-19.965338 9.405893l-10.64818-12.866551c9.139688-7.986135 19.255459-12.955286 31.678336-12.955286 20.409012 0 34.251646 9.938302 34.251646 28.040208 0 11.446794-6.388908 19.699133-17.658232 24.04714v0.709879c11.979203 3.283189 21.118891 12.156672 21.118891 25.910572 0 19.344194-16.948354 30.613518-37.091161 30.613518-16.770884 0.088735-28.040208-6.122704-35.4052-14.552513z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/mp4.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M366.65234 775.25851h17.125823l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM504.013865 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037089-25.555633zM664.535182 827.789532h-12.511612v27.330329h-19.521664v-27.330329h-44.899826v-14.286308l39.309532-63.889082h25.111958v62.114385h12.511612v16.061005z m-32.033276-15.97227v-21.562565c0-6.122704 0.532409-15.706066 0.887349-21.82877h-0.532409c-2.57331 5.590295-5.412825 11.358059-8.42981 17.125823l-16.415944 26.265512h24.490814z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
web/src/icons/svg/file/mpeg.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M324.503293 775.25851H341.629116l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863H371.79896v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM461.864818 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037089-25.555633zM548.736222 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.159099c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924437-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951474 8.873484-22.272444-0.088735-39.575737-15.617331-39.575736-41.794108z m52.531022-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392027 17.658232h32.476949zM629.484922 869.2287c0-6.655113 4.170537-12.422877 11.446794-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276257-13.39896 0-5.945234 4.170537-11.535529 8.873484-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559446-20.852687 0-18.811785 15.262392-28.927556 32.210746-28.927556 4.436742 0 8.696014 0.887348 11.979202 1.952167h28.750087v15.351126H691.244367c2.129636 2.75078 3.726863 7.098787 3.726864 12.156672 0 17.924437-13.665165 27.064125-30.790988 27.064125-3.105719 0-6.832582-0.709879-10.293241-1.863431-2.307106 1.863432-3.460659 3.726863-3.460659 6.832582 0 4.259272 3.105719 6.566378 12.511612 6.566378h13.57643c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.3026 28.395147-18.811785 0-33.364298-6.388908-33.364298-20.497747z m56.790295-4.259272c0-5.679029-4.702946-7.098787-13.221491-7.098787h-9.672097c-4.880416 0-8.25234-0.443674-11.091854-1.153553-3.549393 2.839515-5.235355 5.945234-5.235356 9.228423 0 6.655113 7.453726 10.559445 19.07799 10.559446 11.801733 0 20.142808-5.235355 20.142808-11.535529z m-9.760832-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247-7.098787 0-12.511612 5.235355-12.511612 14.641247s5.590295 14.641248 12.511612 14.641248c7.010052 0.088735 12.422877-5.235355 12.422877-14.641248z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 4.4 KiB |
1
web/src/icons/svg/file/pdf.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#CA223D" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M359.083258 657.52513c-10.293241 0-16.14974-4.614211-19.432929-9.494627-10.027036-15.262392 2.040901-40.640555 14.197574-52.442288 6.300173-6.033969 25.023224-21.562565 65.131369-37.889775 8.07487-19.07799 15.97227-40.55182 23.071057-62.469324 11.801733-36.647487 18.989255-74.271057 22.982323-100.447834-8.696014-16.061005-34.162912-65.042634-34.162912-83.676949 0-10.470711 2.307106-18.989255 7.010052-25.200693 4.880416-6.566378 11.979203-10.204506 20.054073-10.204507 9.228423 0 18.456846 4.702946 25.466898 12.955286 7.098787 8.25234 11.00312 19.255459 11.003119 30.702253 0 17.569497-2.307106 44.012478-6.300173 71.254073 17.392028 31.323397 36.292548 59.984749 52.087348 78.885269 15.617331 18.634315 34.340381 35.493934 55.902946 50.223917 37.97851-3.283189 82.878336-4.348007 99.205546 2.218371 20.852686 8.429809 24.40208 22.272444 20.763952 32.476949-6.388908 17.924437-34.87279 27.951473-58.742461 20.586482-9.760832-3.016984-35.493934-12.067938-66.994801-32.47695-26.176776 2.484575-53.240901 6.388908-78.619064 11.358059-27.507799 5.32409-53.063432 12.422877-76.045754 21.030156-19.521664 44.278683-37.357366 70.10052-53.152166 76.755633-9.583362 4.259272-17.303293 5.856499-23.425997 5.856499z m-0.976083-22.272444c1.419757 0.17747 6.033969 0.266205 15.883536-3.904332 5.945234-2.484575 16.948354-15.351127 30.968457-42.947661-21.917504 11.00312-32.388215 20.054073-35.582669 23.159792-7.808666 7.453726-12.067938 19.699133-11.269324 23.692201z m271.794801-95.478683c15.97227 8.07487 28.128943 12.245407 33.985442 14.108839 14.996187 4.614211 29.105026-2.57331 31.145927-6.388908-0.621144-0.798614-2.57331-2.662045-7.986135-4.880416-5.235355-2.129636-24.490815-4.170537-57.145234-2.839515z m-181.728943 6.477643l-0.443674 1.064818c18.72305-6.033969 38.777123-11.091854 59.807279-15.173656 17.480763-3.371924 35.848873-6.300173 54.128249-8.607279l-0.709878-0.532409 2.129636-0.17747c-14.818718-11.979203-28.128943-25.023224-39.841941-39.043328-14.996187-17.835702-29.193761-39.487002-40.37435-57.943847l-0.17747 1.153553-0.532409-0.887349c-4.348007 22.893588-10.559445 49.691508-18.989255 76.045754-4.880416 15.173657-10.204506 30.258579-15.706066 44.456153l0.709879-0.35494z m9.849567-248.368804c-0.887348 0-1.508492 0.17747-2.307106 1.242288-0.798614 1.064818-2.57331 4.259272-2.57331 11.890468 0 4.525477 5.50156 20.586482 17.037088 44.722357 1.419757-14.108839 2.129636-26.709185 2.129636-36.381283 0-13.842634-9.494627-21.47383-14.286308-21.47383z" fill="#FFFFFF" /><path d="M404.808319 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633zM492.034662 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.948353l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.565685-15.706066-32.565685-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.50156 0 10.204506-2.307106 14.818718-8.25234zM630.993414 757.600277c-2.75078-0.976083-5.856499-1.685962-8.429809-1.685962-6.300173 0-9.672097 3.726863-9.672097 12.511612v6.832583h14.996187v16.504679h-14.996187v63.356672h-20.941421v-63.267937h-10.648181v-15.528596l10.648181-0.887349v-6.566378c0-16.682149 7.719931-29.459965 27.774003-29.459965 6.122704 0 11.535529 1.419757 15.084922 2.839515l-3.815598 15.351126z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 4.9 KiB |
1
web/src/icons/svg/file/php.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M385.739203 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442287 38.954592c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM477.491023 741.361802h20.852686v28.661352l-0.887349 14.996187c6.388908-5.945234 14.286308-11.712998 25.111959-11.712998 17.214558 0 24.668284 11.979203 24.668284 32.033276v49.780242h-20.941421v-47.206932c0-12.245407-3.460659-16.682149-11.269324-16.682149-6.566378 0-10.64818 3.105719-16.682149 8.962218v54.926863h-20.852686v-113.758059zM568.710433 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852687l0.088735-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
web/src/icons/svg/file/png.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M388.836049 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442287 38.954592c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM480.587868 775.25851h17.125824l1.419757 10.559445h0.532409c7.010052-6.832582 15.084922-12.511612 25.910572-12.511612 17.214558 0 24.668284 11.979203 24.668284 32.033276v49.780242h-20.941421v-47.206932c0-12.245407-3.460659-16.682149-11.269324-16.682149-6.566378 0-10.64818 3.105719-16.682149 8.962218v54.926863h-20.852687v-79.861351zM566.749393 869.2287c0-6.655113 4.170537-12.422877 11.358059-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276256-13.39896 0-5.945234 4.170537-11.535529 8.873483-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559445-20.852687 0-18.811785 15.262392-28.927556 32.210745-28.927556 4.436742 0 8.696014 0.887348 11.979203 1.952167h28.750087v15.351126h-13.665165c2.129636 2.75078 3.726863 7.098787 3.726863 12.156672 0 17.924437-13.665165 27.064125-30.790988 27.064125-3.105719 0-6.832582-0.709879-10.293241-1.863431-2.307106 1.863432-3.460659 3.726863-3.460658 6.832582 0 4.259272 3.105719 6.566378 12.511612 6.566378h13.576429c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.302599 28.395147-18.811785 0-33.275563-6.388908-33.275564-20.497747z m56.70156-4.259272c0-5.679029-4.702946-7.098787-13.22149-7.098787h-9.672097c-4.880416 0-8.25234-0.443674-11.091855-1.153553-3.549393 2.839515-5.235355 5.945234-5.235355 9.228423 0 6.655113 7.453726 10.559445 19.07799 10.559446 11.890468 0 20.142808-5.235355 20.142807-11.535529z m-9.672097-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247-7.098787 0-12.511612 5.235355-12.511612 14.641247s5.590295 14.641248 12.511612 14.641248c7.010052 0.088735 12.422877-5.235355 12.422877-14.641248z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
web/src/icons/svg/file/ppt.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#ED6941" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M406.583016 309.223154h102.04506c80.571231 0 134.167071 26.79792 134.167071 104.97331 0 75.60208-53.684575 110.829809-131.77123 110.82981h-59.097401v141.975736h-45.3435v-357.778856z m98.584402 179.155633c62.912998 0 92.727903-22.982322 92.727903-74.182323 0-51.732409-31.767071-68.325823-94.68007-68.325823h-51.288735v142.508146h53.240902z" fill="#FFFFFF" /><path d="M401.258925 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763952v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM493.010745 775.25851h17.125823l1.419758 8.252339h0.532409c6.743847-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852687v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633zM583.875217 827.168388v-35.316464h-11.269324v-15.528596l12.245407-0.976084 2.39584-21.385095h17.569498v21.296361h19.699133v16.504679h-19.699133v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.989255 0-26.176776-11.890468-26.176776-29.90364z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
web/src/icons/svg/file/pptx.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#ED6941" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M406.583016 309.223154h102.04506c80.571231 0 134.167071 26.79792 134.167071 104.97331 0 75.60208-53.684575 110.829809-131.77123 110.82981h-59.097401v141.975736h-45.3435v-357.778856z m98.584402 179.155633c62.912998 0 92.727903-22.982322 92.727903-74.182323 0-51.732409-31.767071-68.325823-94.68007-68.325823h-51.288735v142.508146h53.240902z" fill="#FFFFFF" /><path d="M361.32825 775.25851h17.125823l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514732-10.293241 19.699133 0 31.323397 16.14974 31.323396 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442287 38.954592c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM453.080069 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.852687v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633zM543.944541 827.168388v-35.316464h-11.269324v-15.528596l12.245407-0.976084 2.39584-21.385095h17.569498v21.296361h19.699133v16.504679h-19.699133v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.989255 0-26.176776-11.890468-26.176776-29.90364zM614.57747 813.503224l-23.337262-38.15598h22.538648l7.986135 14.286309c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.743848-14.375043h21.6513l-23.425997 40.640554 24.934489 39.220797h-22.538648l-8.873484-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709878c-2.307106 4.525477-4.436742 9.228423-6.655113 14.108838l-7.453726 14.552513h-21.562565l24.934489-41.616637z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
web/src/icons/svg/file/psd.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#0092BF" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M291.937608 309.223154h102.045061c80.571231 0 134.167071 26.79792 134.167071 104.97331 0 75.60208-53.684575 110.829809-131.77123 110.82981h-59.097401v141.975736H291.937608v-357.778856z m98.584402 179.155633c63.001733 0 92.727903-22.982322 92.727903-74.182323 0-51.732409-31.767071-68.325823-94.680069-68.325823h-51.288735v142.508146h53.240901zM561.336568 636.743432l22.00624-29.282496c22.893588 18.545581 46.851993 31.234662 78.619064 31.234662 35.138995 0 52.176083-18.545581 52.176083-41.527903 0-26.79792-31.234662-39.043328-60.517158-50.312652-37.091161-13.665165-79.062738-31.767071-79.062738-76.666897 0-41.971577 33.719237-75.158406 91.308146-75.158406 32.654419 0 61.493241 13.665165 82.523396 29.72617l-21.47383 28.838821c-18.545581-13.665165-37.091161-23.425997-61.049566-23.425996-33.186828 0-48.360485 17.569497-48.360486 38.067244 0 25.378163 28.838821 34.695321 58.564992 45.87591 38.599653 14.641248 81.014905 30.258579 81.014904 80.571231 0 42.94766-34.162912 78.619064-96.632235 78.619064-37.62357 0.088735-73.738648-15.617331-99.116812-36.558752z" fill="#FFFFFF" /><path d="M395.934835 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611h-20.763952v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633zM479.434315 845.891438l9.583363-13.132755c7.098787 5.590295 13.931369 8.696014 21.385095 8.696014 7.986135 0 11.535529-3.460659 11.535529-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.82877-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059zM552.995494 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.948353l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.699133-0.088735-32.565685-15.706066-32.565685-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818718-8.25234z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
web/src/icons/svg/file/py.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M436.318059 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.763951v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633zM523.011993 885.644645l3.815598-16.14974c1.419757 0.443674 3.726863 0.976083 5.590295 0.976083 8.163605 0 12.689081-5.14662 14.996187-12.156673l1.419757-4.702946-31.057192-78.352859h21.118891l12.689081 37.091161c2.395841 7.098787 4.436742 14.818718 6.655113 22.538648h0.709878c1.863432-7.453726 3.815598-15.084922 5.67903-22.538648l10.914385-37.091161h20.054072l-28.395147 82.257192c-7.010052 18.811785-15.528596 29.637435-33.364298 29.637435-4.614211 0-7.719931-0.532409-10.82565-1.508492z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
web/src/icons/svg/file/rar.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#8C72FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M511.97338 286.790988v93.082842h93.082842V286.790988h-93.082842z m-93.082843 93.082842V472.956672h93.082843V379.87383h-93.082843zM511.97338 566.12825V473.045407h93.082842V566.12825h-93.082842z m-62.912999 101.157712V575.001733h125.914732v92.284229h-125.914732z m77.288042-60.872097h-28.661352v-15.528596h-27.419064V642.440208h83.588215v-51.643674h-27.507799v15.617331z" fill="#FFFFFF" /><path d="M419.005893 775.25851h17.125823l1.419757 14.108838h0.532409c5.856499-10.381976 14.375043-16.14974 22.627383-16.14974 4.436742 0 7.010052 0.709879 9.405893 1.685962l-3.726863 18.101907c-2.75078-0.887348-4.969151-1.242288-8.25234-1.242288-6.300173 0-13.842634 4.170537-18.368111 15.706066v47.650606h-20.763951v-79.861351zM472.690468 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917504 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.125823l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.047141 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.964645-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.293241-2.75078 15.351127-7.808665zM560.981629 775.25851h17.125823l1.419758 14.108838h0.532409c5.856499-10.381976 14.375043-16.14974 22.627383-16.14974 4.436742 0 7.010052 0.709879 9.405892 1.685962l-3.726863 18.101907c-2.75078-0.887348-4.969151-1.242288-8.252339-1.242288-6.300173 0-13.842634 4.170537-18.368111 15.706066v47.650606h-20.852687v-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
web/src/icons/svg/file/raw.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M388.392374 775.25851H405.518198l1.419757 14.108838h0.532409c5.856499-10.381976 14.375043-16.14974 22.627383-16.14974 4.436742 0 7.010052 0.709879 9.405893 1.685962l-3.726864 18.101907c-2.75078-0.887348-4.969151-1.242288-8.252339-1.242288-6.300173 0-13.842634 4.170537-18.368111 15.706066v47.650606h-20.763952v-79.861351zM442.07695 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364299-10.559446 20.231542 0 30.613518 12.156672 30.613518 35.22773v46.585788h-17.125823l-1.597227-8.518544h-0.443675c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.964644-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910571 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.293241-2.75078 15.351126-7.808665zM522.914385 775.25851h20.941421l8.696014 39.487001c1.597227 7.719931 2.57331 15.351127 3.993067 23.248527h0.532409c1.597227-7.808666 3.016984-15.706066 4.969151-23.248527l9.672097-39.487001h18.634316l9.938301 39.487001c1.863432 7.719931 3.283189 15.351127 4.969151 23.248527h0.709879c1.419757-7.808666 2.395841-15.528596 3.993067-23.248527l8.696014-39.487001H638.003466l-19.699133 79.861351H593.636049l-8.42981-34.784055c-1.685962-7.542461-3.016984-14.818718-4.525476-23.248527h-0.709879c-1.597227 8.429809-2.75078 15.794801-4.436742 23.248527l-8.163605 34.784055h-23.958405l-20.497747-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/rm.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M423.442634 775.25851h17.125824l1.419757 14.108838h0.532409c5.856499-10.381976 14.375043-16.14974 22.627383-16.14974 4.436742 0 7.010052 0.709879 9.405892 1.685962l-3.726863 18.101907c-2.75078-0.887348-4.969151-1.242288-8.252339-1.242288-6.300173 0-13.842634 4.170537-18.368111 15.706066v47.650606h-20.763952v-79.861351zM485.557019 775.25851h17.125823l1.419758 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490814-12.689082 11.446794 0 18.101906 5.14662 21.917505 13.931369 7.276256-7.719931 14.996187-13.931369 25.378162-13.931369 16.948354 0 24.757019 11.979203 24.75702 32.033276v49.868977h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
web/src/icons/svg/file/rmvb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M336.482496 775.25851h17.125823l1.419757 14.108838h0.532409c5.856499-10.381976 14.375043-16.14974 22.627383-16.14974 4.436742 0 7.010052 0.709879 9.405893 1.685962l-3.726863 18.101907c-2.75078-0.887348-4.969151-1.242288-8.25234-1.242288-6.300173 0-13.842634 4.170537-18.368111 15.706066v47.650606h-20.763951v-79.861351zM398.59688 775.25851h17.125824l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852687v-79.861351zM526.729983 775.25851h21.11889l11.712999 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.620451 79.861351h-24.22461l-27.241594-79.861351zM636.761179 846.690052h-0.443675l-1.863431 8.429809h-16.415945v-113.758059H638.890815v28.661352l-0.443675 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.098787 0-14.818718-3.638128-21.385095-10.381976z m33.807972-32.47695c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/rtf.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#3E8AF0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M309.95078 309.223154h46.851993l37.62357 194.772964c6.832582 38.510919 14.197574 77.110572 21.030156 115.710225h1.952167c8.25234-38.599653 17.037088-77.110572 25.821837-115.710225l49.336568-194.772964h40.995494l50.312652 194.772964c8.784749 38.067244 17.037088 76.666898 25.378163 115.710225h2.484575c6.832582-39.043328 13.665165-77.642981 20.497747-115.710225l37.62357-194.772964h43.480069L638.890815 667.00201h-54.12825l-54.216984-215.714384c-6.388908-28.306412-11.712998-54.12825-17.569498-81.547314h-1.952166c-5.856499 27.330329-12.245407 53.240901-18.101907 81.547314l-53.240901 215.714384h-53.59584l-76.134489-357.778856z" fill="#FFFFFF" /><path d="M435.421837 775.25851H452.54766l1.419758 14.108838h0.532409c5.856499-10.381976 14.375043-16.14974 22.627383-16.14974 4.436742 0 7.010052 0.709879 9.405892 1.685962l-3.726863 18.101907c-2.75078-0.887348-4.969151-1.242288-8.25234-1.242288-6.300173 0-13.842634 4.170537-18.36811 15.706066v47.650606h-20.763952v-79.861351zM500.553206 827.168388v-35.316464h-11.269324v-15.528596l12.245407-1.064818 2.395841-21.296361h17.569497v21.296361h19.699134v16.504679h-19.699134v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808666-1.685962l3.460658 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859618 3.016985-18.90052 0-26.176776-11.890468-26.176777-29.90364zM600.024957 757.600277c-2.75078-0.976083-5.856499-1.685962-8.42981-1.685962-6.300173 0-9.672097 3.726863-9.672097 12.511612v6.832583h14.996187v16.504679h-14.996187v63.356672h-20.941421v-63.267937h-10.64818v-15.528596l10.64818-0.887349v-6.566378c0-16.682149 7.719931-29.459965 27.774004-29.459965 6.122704 0 11.535529 1.419757 15.084922 2.839515l-3.815598 15.351126z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
web/src/icons/svg/file/svg.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M396.822184 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385095 8.696014 7.986135 0 11.535529-3.460659 11.535529-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.82877-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241595 9.849567l-9.405893 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559445 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272443 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.82565 0-22.627383-4.702946-30.436048-11.18059zM465.680416 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.624263-39.753206h20.054073l-26.62045 79.861351h-24.22461l-27.15286-79.861351zM551.753206 869.2287c0-6.655113 4.170537-12.422877 11.358059-16.504679v-0.709879c-4.170537-2.75078-7.276256-6.832582-7.276256-13.39896 0-5.945234 4.170537-11.535529 8.873483-14.996187v-0.532409c-5.412825-3.993068-10.559445-11.535529-10.559445-20.852687 0-18.811785 15.262392-28.927556 32.210745-28.927556 4.436742 0 8.696014 0.887348 11.979203 1.952167h28.750086v15.351126h-13.665164c2.129636 2.75078 3.726863 7.098787 3.726863 12.156672 0 17.924437-13.665165 27.064125-30.790988 27.064125-3.105719 0-6.832582-0.709879-10.293241-1.863431-2.307106 1.863432-3.460659 3.726863-3.460658 6.832582 0 4.259272 3.105719 6.566378 12.511611 6.566378h13.57643c19.255459 0 29.637435 5.945234 29.637435 19.965338 0 16.14974-16.682149 28.395147-43.3026 28.395147-18.72305 0-33.275563-6.388908-33.275563-20.497747z m56.70156-4.259272c0-5.679029-4.702946-7.098787-13.22149-7.098787h-9.672097c-4.880416 0-8.25234-0.443674-11.091855-1.153553-3.549393 2.839515-5.235355 5.945234-5.235355 9.228423 0 6.655113 7.453726 10.559445 19.077989 10.559446 11.890468 0 20.142808-5.235355 20.142808-11.535529z m-9.672097-62.735529c0-9.405893-5.235355-14.641248-12.422877-14.641247-7.098787 0-12.511612 5.235355-12.511612 14.641247s5.590295 14.641248 12.511612 14.641248c7.010052 0.088735 12.422877-5.235355 12.422877-14.641248z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.7 KiB |
1
web/src/icons/svg/file/tiff.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#72A9FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M591.657262 342.693934c0-21.29636 17.214558-38.510919 38.510918-38.510918s38.510919 17.214558 38.510919 38.510918-17.214558 38.510919-38.510919 38.510919-38.510919-17.214558-38.510918-38.510919z m-301.077297 310.039515h442.964298l-120.679376-159.811439c-5.057886-6.655113-12.866551-10.559445-21.207625-10.559445-8.341075 0-16.238475 3.904333-21.207626 10.559445l-47.029463 62.38059-67.34974-128.931716c-4.614211-8.784749-13.665165-14.286308-23.603466-14.286309-9.938302 0-18.989255 5.50156-23.603466 14.286309l-118.283536 226.362565z" fill="#FFFFFF" /><path d="M421.579203 827.168388v-35.316464h-11.269324v-15.528596l12.245407-1.064818 2.395841-21.296361h17.569497v21.296361h19.699133v16.504679h-19.699133v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.90052 0-26.176776-11.890468-26.176776-29.90364zM476.417331 751.033899c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.422877 4.525477 12.422877 11.358058 0 6.566378-5.235355 11.446794-12.422877 11.446794-7.276256 0-12.511612-4.880416-12.511612-11.446794z m2.040901 24.224611h20.852687v79.861351h-20.852687v-79.861351zM614.133795 757.600277c-2.839515-0.976083-5.856499-1.685962-8.518544-1.685962-6.300173 0-9.672097 3.726863-9.672097 12.511612v6.832583h15.084922v16.504679h-15.084922v63.356672h-20.852686v-63.267937h-28.750087v63.267937H525.310225v-63.267937h-10.64818v-15.528596l10.64818-0.887349v-5.590294c0-16.415945 8.429809-28.927556 28.661352-28.927557 6.388908 0 12.245407 1.419757 16.14974 3.016985l-3.815598 15.528596c-2.839515-1.242288-5.590295-1.952166-9.672097-1.952167-6.122704 0-10.293241 4.170537-10.293241 12.422877v5.324091h28.750087v-6.388909c0-16.682149 7.719931-29.459965 27.685269-29.459965 6.300173 0 11.712998 1.419757 15.262391 2.839515l-3.904333 15.351126z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
web/src/icons/svg/file/tmp.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#87A0A0" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M381.648527 827.168388v-35.316464h-11.269324v-15.528596l12.245407-1.064818 2.395841-21.296361h17.569497v21.296361h19.699133v16.504679h-19.699133v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.90052 0-26.176776-11.890468-26.176776-29.90364zM438.527556 775.25851h17.125824l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490814-12.689082 11.446794 0 18.101906 5.14662 21.917505 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977H533.29636v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.941421v-79.861351zM575.889081 775.25851h17.125824l1.419757 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787868-8.696014l0.532409 13.132755v24.224611H575.889081v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.7948 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /><path d="M283.392444 351.389948c0 2.395841 0.976083 4.614211 2.57331 6.300173 1.685962 1.685962 3.904333 2.57331 6.300173 2.573311h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484v-34.517851c0-2.395841-0.976083-4.614211-2.57331-6.300173-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300173V351.389948z m0 289.186828c0 2.395841 0.976083 4.614211 2.57331 6.300174 1.685962 1.685962 3.904333 2.57331 6.300173 2.57331h439.50364c4.880416 0 8.873484-3.993068 8.873483-8.873484V377.389255c0-2.395841-0.976083-4.614211-2.57331-6.300174-1.685962-1.685962-3.904333-2.57331-6.300173-2.57331h-439.50364c-2.395841 0-4.614211 0.976083-6.300173 2.57331-1.685962 1.685962-2.57331 3.904333-2.57331 6.300174v263.187521z" fill="#FFFFFF" /><path d="M615.526932 322.906066c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589s11.180589-4.969151 11.18059-11.180589c0-6.122704-5.057886-11.180589-11.18059-11.180589z m48.271751 0c-6.211438 0-11.180589 4.969151-11.180589 11.180589 0 6.122704 4.969151 11.180589 11.180589 11.180589 6.122704 0 11.180589-4.969151 11.180589-11.180589 0-6.122704-5.057886-11.180589-11.180589-11.180589z m37.091161 11.180589c0-6.211438 4.969151-11.180589 11.180589-11.180589s11.180589 4.969151 11.18059 11.180589c0 6.122704-4.969151 11.180589-11.18059 11.180589s-11.180589-4.969151-11.180589-11.180589z" fill="#87A0A0" /></svg>
|
After Width: | Height: | Size: 3.9 KiB |
1
web/src/icons/svg/file/txt.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M489.283882 347.290399H380.938648v-38.067245h262.122704v38.067245H534.716118v319.711611h-45.432236v-319.711611z" fill="#FFFFFF" /><path d="M426.015945 827.168388v-35.316464h-11.269325v-15.528596l12.245408-1.064818 2.39584-21.296361h17.569498v21.296361h19.699133v16.504679h-19.699133v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808665-1.685962l3.460659 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859619 3.016985-18.90052 0-26.176776-11.890468-26.176776-29.90364zM496.648873 813.503224l-23.337261-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655113-14.286308H545.719237l-23.337261 40.640554 24.934488 39.220797h-22.538648l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.655112 14.108838l-7.453726 14.552513h-21.6513l24.934488-41.616637zM559.384402 827.168388v-35.316464h-11.269324v-15.528596l12.245407-0.976084 2.395841-21.385095H580.325823v21.296361h19.699134v16.504679H580.325823v35.316464c0 9.139688 3.726863 13.39896 10.82565 13.398961 2.57331 0 5.679029-0.887348 7.808666-1.685962l3.460658 15.262391c-4.259272 1.419757-9.849567 3.016984-16.859618 3.016985-18.90052 0-26.176776-11.890468-26.176777-29.90364z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
web/src/icons/svg/file/unknown.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#9C9C9C" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M345.799653 775.25851H362.925477l1.419757 10.559445h0.532409c7.010052-6.832582 15.084922-12.511612 25.910572-12.511612 17.214558 0 24.668284 11.979203 24.668284 32.033276v49.780242h-20.941421v-47.206932c0-12.245407-3.460659-16.682149-11.269324-16.682149-6.566378 0-10.64818 3.105719-16.682149 8.962218v54.926863h-20.763952v-79.861351zM432.138648 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312 19.965338 0 38.333449 15.351127 38.333449 42.060312 0 26.354246-18.368111 41.794107-38.333449 41.794108-19.965338-0.088735-38.333449-15.439861-38.333449-41.794108z m55.370537 0c0-15.084922-6.122704-24.934489-16.948353-24.934489-10.82565 0-16.948354 9.849567-16.948354 24.934489 0 14.996187 6.122704 24.668284 16.948354 24.668284 10.736915 0 16.948354-9.672097 16.948353-24.668284zM526.375043 775.25851h17.125824l1.419757 10.559445h0.532409c7.010052-6.832582 15.084922-12.511612 25.910572-12.511612 17.214558 0 24.668284 11.979203 24.668284 32.033276v49.780242h-20.941421v-47.206932c0-12.245407-3.460659-16.682149-11.269324-16.682149-6.566378 0-10.64818 3.105719-16.682149 8.962218v54.926863h-20.852687v-79.861351zM612.714038 815.366655c0-25.910572 18.101906-42.060312 37.179896-42.060312 21.917504 0 33.364298 16.14974 33.364298 38.155979 0 3.815598-0.443674 7.719931-0.976083 9.583363h-49.159099c1.685962 13.132756 10.293241 19.965338 22.094974 19.965338 6.566378 0 12.245407-1.952166 17.924437-5.590295l7.098787 12.866551c-7.808666 5.412825-17.924437 8.873484-27.951473 8.873484-22.183709-0.088735-39.575737-15.617331-39.575737-41.794108z m52.619757-8.163605c0-10.82565-4.880416-17.658232-15.084922-17.658232-8.429809 0-15.794801 5.945234-17.392027 17.658232h32.476949z" fill="#FFFFFF" /><path d="M557.077296 377.282773c0-28.483882-17.569497-51.288735-51.288734-51.288735-23.780936 0-44.633622 11.358059-61.315772 30.436049l-24.757019-22.804853c21.917504-25.200693 52.264818-43.746274 90.775737-43.746274 53.684575 0 88.82357 32.743154 88.82357 84.564298 0 69.834315-85.540381 97.874523-76.933102 172.50052h-38.510919c-10.914385-82.700867 73.206239-113.136915 73.206239-169.661005zM472.956672 625.296638c0-19.521664 14.286308-33.719237 31.323397-33.719238 17.569497 0 31.855806 14.286308 31.855806 33.719238s-14.286308 32.831889-31.855806 32.831889c-17.037088 0-31.323397-13.310225-31.323397-32.831889z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
web/src/icons/svg/file/vob.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M382.180936 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.620451 79.861351h-24.22461l-27.241594-79.861351zM467.455113 815.366655c0-26.620451 18.368111-42.060312 38.333449-42.060312 19.965338 0 38.333449 15.351127 38.333448 42.060312 0 26.354246-18.368111 41.794107-38.333448 41.794108-19.965338-0.088735-38.333449-15.439861-38.333449-41.794108z m55.281802 0c0-15.084922-6.122704-24.934489-16.948353-24.934489-10.82565 0-16.948354 9.849567-16.948354 24.934489 0 14.996187 6.122704 24.668284 16.948354 24.668284 10.82565 0 16.948354-9.672097 16.948353-24.668284zM580.325823 846.690052h-0.443674l-1.863431 8.429809h-16.415945v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.098787 0-14.818718-3.638128-21.385096-10.381976z m33.807972-32.47695c0-15.262392-4.880416-23.692201-15.7948-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037088-25.555633z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
web/src/icons/svg/file/wav.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#DF3D54" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M647.915147 323.438475l-82.257192 21.828769v241.891162c0 35.848873-29.016291 64.865165-64.865165 64.865164-35.848873 0-64.865165-29.016291-64.865164-64.865164 0-35.848873 29.016291-64.865165 64.865164-64.865165 18.456846 0 35.05026 7.719931 46.851993 20.054073v-228.935876l100.270364-26.531715v36.558752z" fill="#FFFFFF" /><path d="M370.734142 775.25851h20.941421l8.696014 39.487001c1.597227 7.719931 2.57331 15.351127 3.993068 23.248527h0.532409c1.597227-7.808666 3.016984-15.706066 4.969151-23.248527l9.672097-39.487001h18.634315l9.938302 39.487001c1.863432 7.719931 3.283189 15.351127 4.96915 23.248527h0.798614c1.419757-7.808666 2.395841-15.528596 3.993067-23.248527l8.696014-39.487001h19.344194l-19.610398 79.861351h-24.668284l-8.42981-34.784055c-1.685962-7.542461-3.016984-14.818718-4.525476-23.248527h-0.709879c-1.597227 8.429809-2.75078 15.794801-4.436742 23.248527l-8.163605 34.784055h-23.958405l-20.675217-79.861351zM495.495321 833.468562c0-17.125823 13.842634-26.088042 45.87591-29.459966-0.266205-7.808666-3.726863-13.842634-13.57643-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613519 35.22773v46.585788h-17.125824l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.87591-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559445 8.962218 5.945234 0.088735 10.381976-2.75078 15.351127-7.808665zM574.469324 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.624264-39.753206h20.054072l-26.62045 79.861351H601.622184l-27.15286-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
web/src/icons/svg/file/wdb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFA566" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M362.313206 775.25851h20.941421l8.696014 39.487001c1.597227 7.719931 2.57331 15.351127 3.993068 23.248527h0.532409c1.597227-7.808666 3.016984-15.706066 4.969151-23.248527l9.672097-39.487001h18.634315l9.938302 39.487001c1.863432 7.719931 3.283189 15.351127 4.96915 23.248527h0.798614c1.419757-7.808666 2.395841-15.528596 3.993068-23.248527l8.696013-39.487001h19.344195l-19.610399 79.861351h-24.668284l-8.42981-34.784055c-1.685962-7.542461-3.016984-14.818718-4.525476-23.248527h-0.709879c-1.597227 8.429809-2.75078 15.794801-4.436742 23.248527l-8.163605 34.784055h-23.958405l-20.675217-79.861351zM487.074385 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.859619l-1.685962-8.252339h-0.443674c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.876603-0.088735-32.654419-15.706066-32.654419-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.50156 0 10.204506-2.307106 14.818718-8.25234zM602.074731 846.690052h-0.443674l-1.863431 8.429809h-16.415945v-113.758059h20.852686v28.661352l-0.443674 12.866551c6.300173-5.679029 14.286308-9.583362 22.094974-9.583362 19.699133 0 31.500867 16.14974 31.500867 40.463085 0 27.507799-16.415945 43.3026-33.896707 43.3026-7.098787 0-14.818718-3.638128-21.385096-10.381976z m33.807973-32.47695c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c4.969151 4.436742 10.293241 5.945234 14.552513 5.945234 9.583362 0.088735 17.037088-8.163605 17.037089-25.555633z" fill="#FFFFFF" /><path d="M511.991127 286.808735c-97.164645 0-175.872444 32.388215-175.872444 72.318891s78.707799 72.318891 175.872444 72.31889 175.872444-32.388215 175.872443-72.31889-78.707799-72.318891-175.872443-72.318891z" fill="#FFFFFF" opacity=".6" /><path d="M511.991127 401.897816c-97.164645 0-175.872444 32.47695-175.872444 72.407626s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.407626-175.872443-72.407626z" fill="#FFFFFF" opacity=".8" /><path d="M511.991127 517.075633c-97.164645 0-175.872444 32.388215-175.872444 72.31889s78.707799 72.318891 175.872444 72.318891 175.872444-32.388215 175.872443-72.318891-78.707799-72.318891-175.872443-72.31889z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
web/src/icons/svg/file/wma.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#DF3D54" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M647.915147 323.438475l-82.257192 21.828769v241.891162c0 35.848873-29.016291 64.865165-64.865165 64.865164-35.848873 0-64.865165-29.016291-64.865164-64.865164 0-35.848873 29.016291-64.865165 64.865164-64.865165 18.456846 0 35.05026 7.719931 46.851993 20.054073v-228.935876l100.270364-26.531715v36.558752z" fill="#FFFFFF" /><path d="M343.226343 775.25851h20.941421l8.696014 39.487001c1.597227 7.719931 2.57331 15.351127 3.993068 23.248527h0.532409c1.597227-7.808666 3.016984-15.706066 4.969151-23.248527l9.672097-39.487001h18.634315l9.938302 39.487001c1.863432 7.719931 3.283189 15.351127 4.96915 23.248527h0.798614c1.419757-7.808666 2.395841-15.528596 3.993067-23.248527l8.696014-39.487001h19.344194l-19.610398 79.861351h-24.668284l-8.42981-34.784055c-1.685962-7.542461-3.016984-14.818718-4.525476-23.248527h-0.709879c-1.597227 8.429809-2.75078 15.794801-4.436742 23.248527l-8.163605 34.784055h-23.958405l-20.675217-79.861351zM473.666551 775.25851h17.125823l1.419758 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490814-12.689082 11.446794 0 18.101906 5.14662 21.917505 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941422v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.852686v-79.861351zM607.123744 833.468562c0-17.125823 13.842634-26.088042 45.875909-29.459966-0.266205-7.808666-3.726863-13.842634-13.576429-13.842634-7.453726 0-14.552513 3.283189-21.917505 7.542461l-7.542461-13.842634c9.405893-5.856499 20.852686-10.559445 33.364298-10.559446 20.231542 0 30.613518 12.156672 30.613519 35.22773v46.585788h-17.125824l-1.597227-8.518544h-0.443674c-7.010052 5.945234-14.996187 10.559445-24.04714 10.559446-14.197574-0.088735-23.603466-10.204506-23.603466-23.692201z m45.875909-0.621144v-16.14974c-19.344194 2.57331-25.910572 7.808666-25.910572 14.996187 0 6.300173 4.436742 8.962218 10.559446 8.962218 5.945234 0.088735 10.381976-2.75078 15.351126-7.808665z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/wmv.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FFC466" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M324.565407 474.287695c0-103.553553 83.943154-187.496707 187.496707-187.496707 103.553553 0 187.496707 83.943154 187.496707 187.496707 0 103.553553-83.943154 187.496707-187.496707 187.496707-103.642288 0-187.496707-83.943154-187.496707-187.496707z m220.506066-79.062738c-82.523397-55.370537-104.795841-50.046447-104.79584 76.933102s22.272444 139.579896 104.884575 81.192374 82.612132-72.318891 82.612132-81.192374c-0.088735-8.873484-0.088735-21.562565-82.700867-76.933102z" fill="#FFFFFF" /><path d="M344.557366 775.25851h20.941421l8.696014 39.487001c1.597227 7.719931 2.57331 15.351127 3.993067 23.248527h0.532409c1.597227-7.808666 3.016984-15.706066 4.969151-23.248527l9.672097-39.487001h18.634316l9.938301 39.487001c1.863432 7.719931 3.283189 15.351127 4.969151 23.248527h0.798613c1.419757-7.808666 2.395841-15.528596 3.993068-23.248527l8.696014-39.487001h19.344194l-19.610399 79.861351h-24.668284l-8.429809-34.784055c-1.685962-7.542461-3.016984-14.818718-4.525477-23.248527h-0.709879c-1.597227 8.429809-2.75078 15.794801-4.436741 23.248527l-8.163605 34.784055h-23.958406l-20.675216-79.861351zM474.997574 775.25851h17.125823l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977H569.677643v-47.206932c0-12.245407-3.549393-16.682149-11.091854-16.682149-4.525477 0-9.672097 3.016984-15.351127 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852686v-79.861351zM603.130676 775.25851h21.118891l11.712998 39.753206c1.952166 7.808666 4.259272 16.14974 6.388908 24.22461h0.709879c1.952166-8.163605 4.259272-16.415945 6.388908-24.22461l11.712998-39.753206h20.054073l-26.620451 79.861351h-24.22461l-27.241594-79.861351z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.8 KiB |
1
web/src/icons/svg/file/wps.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#6880F2" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M372.952513 775.25851h20.941421l8.696014 39.487001c1.597227 7.719931 2.57331 15.351127 3.993068 23.248527h0.532409c1.597227-7.808666 3.016984-15.706066 4.96915-23.248527l9.672097-39.487001h18.634316l9.938301 39.487001c1.863432 7.719931 3.283189 15.351127 4.969151 23.248527h0.798614c1.419757-7.808666 2.395841-15.528596 3.993067-23.248527l8.696014-39.487001h19.344194l-19.610398 79.861351h-24.668285l-8.429809-34.784055c-1.685962-7.542461-3.016984-14.818718-4.525477-23.248527h-0.709878c-1.597227 8.429809-2.75078 15.794801-4.436742 23.248527l-8.163605 34.784055h-23.958405l-20.675217-79.861351zM503.392721 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.532409 13.132755v24.224611h-20.852686v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037089-25.555633zM586.892201 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214559-6.832582-7.098787 0-10.559445 3.105719-10.559445 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059z" fill="#FFFFFF" /><path d="M450.835078 659.832236l-221.038475-335.683882h156.439515l122.631542 186.165684 122.631543-186.165684h163.183362L567.965061 659.299827l-58.919931-87.758752-58.210052 88.291161z m78.264125-118.90468l38.954592 57.943848 163.005893-241.003813h-81.369844l-120.590641 183.059965z m-236.655806-182.97123l158.391681 240.471404 37.80104-57.411439-120.590641-183.059965h-75.60208z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
web/src/icons/svg/file/xd.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#FF00B3" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M333.288042 481.989879l-97.608319-172.766725h49.780242l48.80416 91.308146c9.228423 16.593414 16.593414 31.767071 28.306412 52.264818h1.952167c9.760832-20.497747 16.593414-35.671404 25.378163-52.264818l47.828076-91.308146h47.384402l-97.608319 175.2513 104.352166 182.527556h-49.780242l-52.708492-96.632235c-9.317158-17.569497-19.07799-36.115078-30.790988-57.588908h-1.952167c-10.204506 21.47383-19.521664 40.019411-28.838821 57.588908l-51.643674 96.632235h-47.295668l104.440902-185.012131zM522.115771 534.698371c0-85.895321 54.12825-139.579896 114.645408-139.579896 31.234662 0 51.288735 11.712998 74.714731 31.234662l-2.484576-45.87591v-102.045061h44.456153v388.569844h-36.115078l-4.348007-31.234662h-0.976083c-21.030156 20.497747-48.804159 37.62357-80.571231 37.623571-66.373657 0-109.321317-50.312652-109.321317-138.692548z m186.964298 64.953899v-139.136221c-22.449913-19.965338-42.503986-27.774003-64.42149-27.774004-42.94766 0-76.666898 40.995494-76.666898 101.512652 0 63.889081 26.354246 102.045061 73.206239 102.04506 24.40208-0.088735 45.87591-12.245407 67.882149-36.647487z" fill="#FFFFFF" /><path d="M453.168804 813.503224l-23.425996-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.743847-14.286308h21.6513l-23.337261 40.640554 24.934488 39.220797h-22.538648l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.655112 14.108838l-7.364992 14.552513h-21.6513l24.934489-41.616637zM508.716811 815.366655c0-26.088042 16.238475-42.060312 33.453033-42.060312 8.962218 0 14.552513 3.460659 20.231542 8.696014l-0.887348-12.511612v-28.128943h20.941421v113.758059h-16.948353l-1.685962-8.252339h-0.354939c-5.856499 5.679029-13.842634 10.293241-22.094974 10.293241-19.787868-0.088735-32.654419-15.706066-32.65442-41.794108z m52.885962 16.238475v-35.05026c-4.880416-4.436742-9.849567-5.945234-14.818718-5.945234-8.962218 0-16.504679 8.518544-16.504679 24.490815 0 16.504679 5.945234 24.757019 16.504679 24.757019 5.590295 0 10.293241-2.307106 14.818718-8.25234z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/xls.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#1FB77A" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M484.935875 481.989879l-97.608319-172.766725h49.780243l48.804159 91.308146c9.228423 16.593414 16.593414 31.767071 28.306413 52.264818h1.952166c9.760832-20.497747 16.593414-35.671404 25.378163-52.264818l47.828076-91.308146h47.295668l-97.608319 175.2513 104.440901 182.527556h-49.780243l-52.708492-96.632235c-9.317158-17.569497-19.07799-36.115078-30.790988-57.588908h-1.952166c-10.204506 21.47383-19.521664 40.019411-28.838822 57.588908l-51.643674 96.632235h-47.295667l104.440901-185.012131z" fill="#FFFFFF" /><path d="M441.189601 813.503224l-23.425996-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.743848-14.286308h21.6513l-23.337262 40.640554 24.934489 39.220797h-22.538649l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709879c-2.307106 4.525477-4.436742 9.228423-6.655112 14.108838l-7.364992 14.552513h-21.651299l24.934488-41.616637zM505.344887 832.758683v-91.396881H526.197574v92.372964c0 4.702946 2.307106 6.300173 4.259272 6.300173 0.887348 0 1.419757 0 2.839514-0.266204l2.573311 15.528596c-2.395841 0.976083-5.945234 1.863432-10.82565 1.863432-14.641248-0.088735-19.699133-9.583362-19.699134-24.40208zM542.613518 845.891438l9.583362-13.132755c7.098787 5.590295 13.931369 8.696014 21.385096 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.9 KiB |
1
web/src/icons/svg/file/xlsx.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#1FB77A" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M484.935875 481.989879l-97.608319-172.766725h49.780243l48.804159 91.308146c9.228423 16.593414 16.593414 31.767071 28.306413 52.264818h1.952166c9.760832-20.497747 16.593414-35.671404 25.378163-52.264818l47.828076-91.308146h47.295668l-97.608319 175.2513 104.440901 182.527556h-49.780243l-52.708492-96.632235c-9.317158-17.569497-19.07799-36.115078-30.790988-57.588908h-1.952166c-10.204506 21.47383-19.521664 40.019411-28.838822 57.588908l-51.643674 96.632235h-47.295667l104.440901-185.012131z" fill="#FFFFFF" /><path d="M401.258925 813.503224l-23.425996-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.743848-14.286308h21.6513l-23.337262 40.640554 24.934489 39.220797h-22.538649l-8.873483-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709878c-2.307106 4.525477-4.436742 9.228423-6.655113 14.108838l-7.364991 14.552513h-21.6513l24.934488-41.616637zM465.414211 832.758683v-91.396881H486.266898v92.372964c0 4.702946 2.307106 6.300173 4.259272 6.300173 0.887348 0 1.419757 0 2.839515-0.266204l2.57331 15.528596c-2.395841 0.976083-5.945234 1.863432-10.82565 1.863432-14.641248-0.088735-19.699133-9.583362-19.699134-24.40208zM502.682842 845.891438l9.583363-13.132755c7.098787 5.590295 13.931369 8.696014 21.385095 8.696014 7.986135 0 11.535529-3.460659 11.535528-8.42981 0-5.945234-8.25234-8.696014-16.682149-11.979202-10.115771-3.815598-21.828769-9.938302-21.828769-23.248527 0-14.375043 11.712998-24.490815 29.637435-24.490815 11.712998 0 20.497747 4.880416 27.241594 9.849567l-9.405892 12.689081c-5.679029-3.993068-11.269324-6.832582-17.214558-6.832582-7.098787 0-10.559445 3.105719-10.559446 7.719931 0 5.856499 7.808666 7.986135 16.238475 11.091854 10.559445 3.993068 22.272444 9.228423 22.272444 24.04714 0 13.931369-11.00312 25.200693-31.767071 25.200694-10.736915 0-22.538648-4.702946-30.436049-11.18059zM596.830503 813.503224l-23.337262-38.15598h22.538648l7.986135 14.286309c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.655113-14.286309h21.6513l-23.337262 40.55182 24.934489 39.220797h-22.538648l-8.873484-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709878c-2.307106 4.525477-4.436742 9.228423-6.655113 14.108838l-7.453726 14.552513h-21.6513l25.023224-41.616637z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
web/src/icons/svg/file/xml.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#57C021" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M407.922912 813.503224l-23.425997-38.244714h22.538648l7.986135 14.286308c2.307106 4.436742 4.702946 8.962218 7.098787 13.39896h0.532409c1.863432-4.436742 3.993068-8.962218 5.856499-13.39896l6.743848-14.286308h21.6513l-23.337262 40.640554 24.934489 39.220797h-22.538648l-8.873484-14.552513c-2.57331-4.702946-5.14662-9.583362-7.719931-14.108838h-0.709878c-2.307106 4.525477-4.436742 9.228423-6.655113 14.108838l-7.364991 14.552513h-21.6513l24.934489-41.616637zM472.078198 775.25851h17.125823l1.419757 10.64818h0.532409c6.655113-7.010052 14.108839-12.689081 24.490815-12.689082 11.446794 0 18.101906 5.14662 21.917504 13.931369 7.276256-7.719931 14.996187-13.931369 25.378163-13.931369 16.948354 0 24.757019 11.979203 24.757019 32.033276v49.868977h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.941421v-47.206932c0-12.245407-3.549393-16.682149-11.091855-16.682149-4.525477 0-9.672097 3.016984-15.351126 8.962218v54.926863h-20.852686v-79.861351zM609.439723 832.758683v-91.396881h20.852686v92.372964c0 4.702946 2.307106 6.300173 4.259272 6.300173 0.887348 0 1.419757 0 2.839515-0.266204l2.57331 15.528596c-2.395841 0.976083-5.945234 1.863432-10.82565 1.863432-14.552513-0.088735-19.699133-9.583362-19.699133-24.40208z" fill="#FFFFFF" /><path d="M624.826343 597.850953l-15.706066-15.706066 100.447834-100.447833-100.447834-100.536569 15.706066-15.706066 116.1539 116.1539-116.1539 116.242634z m-225.652686 0l-116.1539-116.153899 116.1539-116.1539 15.706066 15.706066-100.447834 100.447834 100.447834 100.447833-15.706066 15.706066z m143.040554-5.235355l-21.562565-5.146621 51.909879-216.690467 21.562565 5.14662-51.909879 216.690468z" fill="#FFFFFF" /><path d="M378.85338 481.164645c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507798 27.507799-12.334142 27.507799-27.507798 27.507799-27.507799-12.334142-27.507799-27.507799z m78.086655 1.064818c0-15.173657 12.334142-27.507799 27.507799-27.507799s27.507799 12.334142 27.507799 27.507799-12.334142 27.507799-27.507799 27.507799-27.507799-12.334142-27.507799-27.507799z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 3.1 KiB |
1
web/src/icons/svg/file/zip.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M852.537678 966.322357c7.542461 0 14.818718-3.016984 20.142807-8.341075s8.341075-12.600347 8.341075-20.142807V262.033969c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-532.231543c-7.542461 0-14.818718 3.016984-20.142807 8.341075s-8.341075 12.600347-8.341075 20.142807v851.67695c0 7.542461 3.016984 14.818718 8.341075 20.142807s12.600347 8.341075 20.142807 8.341075h681.039862z" fill="#8C72FE" /><path d="M881.02156 265.228423v-3.194454c0-6.743847-2.395841-13.22149-6.743848-18.368111L725.469393 67.793414c-5.412825-6.388908-13.39896-10.115771-21.740034-10.115771h-1.331023v207.55078h178.623224z" opacity=".15" /><path d="M511.97338 286.790988v93.082842h93.082842V286.790988h-93.082842z m-93.082843 93.082842V472.956672h93.082843V379.87383h-93.082843zM511.97338 566.12825V473.045407h93.082842V566.12825h-93.082842z m-62.912999 101.157712V575.001733h125.914732v92.284229h-125.914732z m77.288042-60.872097h-28.661352v-15.528596h-27.419064V642.440208h83.588215v-51.643674h-27.507799v15.617331z" fill="#FFFFFF" /><path d="M413.593068 843.850537l35.671403-51.998613h-31.678336v-16.593414h57.855113v11.269324l-35.760139 52.087348h36.913692v16.504679h-63.001733v-11.269324zM489.816291 751.033899c0-6.832582 5.235355-11.358059 12.511612-11.358058 7.098787 0 12.422877 4.525477 12.422877 11.358058 0 6.566378-5.235355 11.446794-12.422877 11.446794s-12.511612-4.880416-12.511612-11.446794z m2.040901 24.224611h20.852687v79.861351h-20.852687v-79.861351zM535.159792 775.25851h17.125823l1.419758 8.252339h0.532409c6.655113-5.679029 14.996187-10.293241 23.514731-10.293241 19.699133 0 31.323397 16.14974 31.323397 40.640555 0 27.330329-16.415945 43.213865-33.896707 43.213865-7.010052 0-13.665165-3.105719-19.787869-8.696014l0.53241 13.132755v24.224611H535.071057v-110.47487z m52.442288 38.954592c0-15.262392-4.880416-23.692201-15.794801-23.692201-5.412825 0-10.293241 2.75078-15.794801 8.25234v35.05026c5.14662 4.436742 10.293241 5.945234 14.552513 5.945234 9.672097 0.088735 17.037088-8.163605 17.037089-25.555633z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 2.3 KiB |
@ -1 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1624087271487" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2113" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M992 832h-960C14.933333 832 0 817.066667 0 800v-704C0 78.933333 14.933333 64 32 64h960c17.066667 0 32 14.933333 32 32v704c0 17.066667-14.933333 32-32 32zM64 768h896V128H64v640zM864 960h-704c-17.066667 0-32-14.933333-32-32S142.933333 896 160 896h704c17.066667 0 32 14.933333 32 32s-14.933333 32-32 32z" fill="#212121" p-id="2114"></path><path d="M661.333333 452.266667c-17.066667-6.4-23.466667 0-14.933333 14.933333L746.666667 686.933333c6.4 17.066667 17.066667 14.933333 19.2-2.133333l19.2-91.733333 91.733333-19.2c17.066667-4.266667 19.2-12.8 2.133333-19.2L661.333333 452.266667z" fill="#212121" p-id="2115"></path></svg>
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1643002668590" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3082" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M0 64v896h1024V64H0z m960 832H64V128h896v768zM896 192H128v640h768V192zM448 512h-64v64h-64v64H256v-64h64v-64h64v-64h-64v-64H256v-64h64v64h64v64h64v64z m256 128h-192v-64h192v64z" p-id="3083"></path></svg>
|
Before Width: | Height: | Size: 999 B After Width: | Height: | Size: 579 B |
@ -1,4 +1,5 @@
|
||||
{
|
||||
"default": "Default",
|
||||
"name": "Name",
|
||||
"script": "Script",
|
||||
"user": "User",
|
||||
@ -6,6 +7,7 @@
|
||||
"userName": "Username",
|
||||
"admin": "Admin",
|
||||
"role": "Role",
|
||||
"permission": "Permission",
|
||||
"account": "Account",
|
||||
"password": "Password",
|
||||
"mobile": "Mobile",
|
||||
@ -25,6 +27,7 @@
|
||||
"crontab": "Crontab",
|
||||
"command": "Command",
|
||||
"directory": "Directory",
|
||||
"type": "Type",
|
||||
"file": "File",
|
||||
"func": "Func",
|
||||
"param": "Param",
|
||||
@ -39,8 +42,11 @@
|
||||
"reject": "Reject",
|
||||
"manage": "Manage",
|
||||
"interval": "Interval",
|
||||
"desc": "Description",
|
||||
"sort" : "Sort",
|
||||
"asc": "ASC",
|
||||
"desc": "DESC",
|
||||
"size": "Size",
|
||||
"description": "Description",
|
||||
"namespace": "Namespace",
|
||||
"environment": "Environment",
|
||||
"branch": "Branch",
|
||||
@ -77,6 +83,7 @@
|
||||
"copy": "Copy",
|
||||
"approve": "Approve",
|
||||
"deny": "Deny",
|
||||
"download": "Download",
|
||||
"upload": "Upload",
|
||||
"uploading": "Uploading",
|
||||
"reUpload": "Reupload",
|
||||
@ -117,6 +124,8 @@
|
||||
"project": "Project",
|
||||
"server": "Server",
|
||||
"serverSetting": "Server",
|
||||
"serverTerminal": "Terminal",
|
||||
"serverSFTP": "SFTP",
|
||||
"serverAgent": "Monitor",
|
||||
"template": "Template",
|
||||
"crontab": "Crontab",
|
||||
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"default": "默认",
|
||||
"name": "名称",
|
||||
"script": "脚本",
|
||||
"user": "用户",
|
||||
@ -6,6 +7,7 @@
|
||||
"userName": "用户名称",
|
||||
"admin": "超管",
|
||||
"role": "角色",
|
||||
"permission": "权限",
|
||||
"account": "账号",
|
||||
"password": "密码",
|
||||
"mobile": "手机号码",
|
||||
@ -25,6 +27,7 @@
|
||||
"crontab": "定时",
|
||||
"command": "命令",
|
||||
"directory": "目录",
|
||||
"type": "类型",
|
||||
"file": "文件",
|
||||
"func": "功能",
|
||||
"param": "参数",
|
||||
@ -39,8 +42,11 @@
|
||||
"reject": "拒绝",
|
||||
"manage": "管理",
|
||||
"interval": "间隔",
|
||||
"desc": "描述",
|
||||
"sort" : "排序",
|
||||
"asc": "升序",
|
||||
"desc": "降序",
|
||||
"size": "大小",
|
||||
"description": "描述",
|
||||
"namespace": "空间",
|
||||
"environment": "环境",
|
||||
"branch": "分支",
|
||||
@ -77,6 +83,7 @@
|
||||
"copy": "复制",
|
||||
"approve": "同意",
|
||||
"deny": "拒绝",
|
||||
"download": "下载",
|
||||
"upload": "上传",
|
||||
"uploading": "上传中",
|
||||
"reUpload": "重传",
|
||||
@ -91,7 +98,7 @@
|
||||
"save": "保存",
|
||||
"cancel": "取消",
|
||||
"success": "成功",
|
||||
"open": "开启",
|
||||
"open": "打开",
|
||||
"close": "关闭",
|
||||
"stop": "暂停",
|
||||
"fail": "失败",
|
||||
@ -117,6 +124,8 @@
|
||||
"project": "项目设置",
|
||||
"server": "服务器管理",
|
||||
"serverSetting": "服务器设置",
|
||||
"serverTerminal": "Terminal",
|
||||
"serverSFTP": "SFTP",
|
||||
"serverAgent": "服务器监控",
|
||||
"serverCron": "定时任务",
|
||||
"template": "模板设置",
|
||||
|
@ -33,48 +33,6 @@
|
||||
class="breadcrumb-container"
|
||||
/>
|
||||
<div class="right">
|
||||
<div v-show="false" class="github">
|
||||
<span class="github-btn">
|
||||
<a class="gh-btn" href="https://github.com/zhenorzz" target="_blank">
|
||||
<span class="gh-ico" />
|
||||
<span class="gh-text">Follow @zhenorzz</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class="github-btn">
|
||||
<a
|
||||
class="gh-btn"
|
||||
href="https://github.com/zhenorzz/goploy/"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="gh-ico" />
|
||||
<span class="gh-text">Star</span>
|
||||
</a>
|
||||
<a
|
||||
class="gh-count"
|
||||
href="https://github.com/zhenorzz/goploy/stargazers"
|
||||
target="_blank"
|
||||
>
|
||||
{{ starCount }}
|
||||
</a>
|
||||
</span>
|
||||
<span class="github-btn github-forks">
|
||||
<a
|
||||
class="gh-btn"
|
||||
href="https://github.com/zhenorzz/goploy/fork"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="gh-ico" aria-hidden="true" />
|
||||
<span class="gh-text">Fork</span>
|
||||
</a>
|
||||
<a
|
||||
class="gh-count"
|
||||
href="https://github.com/zhenorzz/goploy/network"
|
||||
target="_blank"
|
||||
>
|
||||
{{ forkCount }}
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="international">
|
||||
<el-dropdown
|
||||
trigger="click"
|
||||
|
@ -70,6 +70,12 @@ export const constantRoutes: RouteRecordRaw[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/server/record',
|
||||
name: 'record',
|
||||
component: () => import('@/views/server/record/index.vue'),
|
||||
meta: { hidden: true },
|
||||
},
|
||||
]
|
||||
|
||||
/**
|
||||
@ -166,6 +172,26 @@ export const asyncRoutes: RouteRecordRaw[] = [
|
||||
roles: ['admin', 'manager'],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'terminal',
|
||||
name: 'ServerTerminal',
|
||||
component: () => import('@/views/server/terminal/index.vue'),
|
||||
meta: {
|
||||
title: 'serverTerminal',
|
||||
icon: 'terminal',
|
||||
roles: ['admin', 'manager'],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'sftp',
|
||||
name: 'ServerSFTP',
|
||||
component: () => import('@/views/server/sftp/index.vue'),
|
||||
meta: {
|
||||
title: 'serverSFTP',
|
||||
icon: 'ftp',
|
||||
roles: ['admin', 'manager'],
|
||||
},
|
||||
},
|
||||
{
|
||||
path: 'agent',
|
||||
name: 'ServerAgent',
|
||||
|
@ -106,7 +106,7 @@
|
||||
</el-radio-group>
|
||||
<el-popover
|
||||
placement="top-start"
|
||||
:title="$t('desc')"
|
||||
:title="$t('description')"
|
||||
width="300"
|
||||
trigger="hover"
|
||||
>
|
||||
|
@ -167,7 +167,7 @@
|
||||
<el-form-item :label="$t('monitorPage.notifyTimes')" prop="notifyTimes">
|
||||
<el-input v-model.number="formData.notifyTimes" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('desc')" prop="description">
|
||||
<el-form-item :label="$t('description')" prop="description">
|
||||
<el-input
|
||||
v-model="formData.description"
|
||||
type="textarea"
|
||||
|
@ -42,7 +42,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="description"
|
||||
:label="$t('desc')"
|
||||
:label="$t('description')"
|
||||
min-width="240"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
@ -131,7 +131,7 @@
|
||||
<el-radio :label="2">stdout+stderr</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('desc')" prop="description">
|
||||
<el-form-item :label="$t('description')" prop="description">
|
||||
<el-input
|
||||
v-model="formData.description"
|
||||
type="textarea"
|
||||
|
@ -1,360 +0,0 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
v-model="dialogVisible"
|
||||
title="WebSFTP"
|
||||
:close-on-click-modal="false"
|
||||
:fullscreen="$store.state.app.device === 'mobile'"
|
||||
>
|
||||
<el-select
|
||||
v-model="serverId"
|
||||
v-loading="serverLoading"
|
||||
filterable
|
||||
default-first-option
|
||||
placeholder="please select server"
|
||||
style="width: 100%; margin-bottom: 10px"
|
||||
@change="handleSelectServer"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in serverOption"
|
||||
:key="item.id"
|
||||
:label="`${item.name}(${item.description})`"
|
||||
:value="item.id"
|
||||
/>
|
||||
</el-select>
|
||||
<el-input
|
||||
v-model="dir"
|
||||
style="flex: 1; margin-right: 4px"
|
||||
:disabled="!wsConnected"
|
||||
:readonly="!wsConnected"
|
||||
@keyup.enter="goto(dir)"
|
||||
>
|
||||
<template #prepend>Path</template>
|
||||
<template #append>
|
||||
<i v-if="!wsConnected" class="el-icon-loading"></i>
|
||||
<el-button
|
||||
v-if="wsConnected"
|
||||
type="primary"
|
||||
icon="el-icon-right"
|
||||
@click="goto(dir)"
|
||||
/>
|
||||
<el-button
|
||||
v-if="wsConnected"
|
||||
type="primary"
|
||||
icon="el-icon-refresh-left"
|
||||
@click="back"
|
||||
/>
|
||||
<el-button
|
||||
v-if="wsConnected"
|
||||
type="primary"
|
||||
icon="el-icon-refresh"
|
||||
@click="refresh"
|
||||
/>
|
||||
<el-upload
|
||||
v-if="wsConnected"
|
||||
style="display: inline-block; width: 30px; text-align: right"
|
||||
:action="uploadHref(serverId)"
|
||||
:before-upload="beforeUpload"
|
||||
multiple
|
||||
:on-success="handleUploadSuccess"
|
||||
:on-error="handleUploadError"
|
||||
:show-file-list="false"
|
||||
>
|
||||
<el-button type="primary" icon="el-icon-upload" />
|
||||
</el-upload>
|
||||
</template>
|
||||
</el-input>
|
||||
<el-table
|
||||
v-loading="tableLoading"
|
||||
border
|
||||
stripe
|
||||
highlight-current-row
|
||||
:data="tableData"
|
||||
style="width: 100%"
|
||||
:max-height="460"
|
||||
>
|
||||
<el-table-column prop="name" :label="$t('name')" min-width="100">
|
||||
<template #default="scope">
|
||||
<i v-if="scope.row.isDir" class="el-icon-folder-opened"></i>
|
||||
{{ scope.row.name }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="size" :label="$t('size')" width="100">
|
||||
<template #default="scope">
|
||||
{{ humanSize(scope.row.size) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="mode" label="mode" width="100" />
|
||||
<el-table-column
|
||||
prop="modTime"
|
||||
:label="$t('modifiedTime')"
|
||||
width="135"
|
||||
align="center"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="operation"
|
||||
:label="$t('op')"
|
||||
width="100"
|
||||
align="center"
|
||||
:fixed="$store.state.app.device === 'mobile' ? false : 'right'"
|
||||
>
|
||||
<template #default="scope">
|
||||
<template v-if="scope.row.uploading">
|
||||
<i class="el-icon-loading"></i>
|
||||
</template>
|
||||
<template v-else>
|
||||
<el-button
|
||||
style="margin-right: 10px"
|
||||
:disabled="!scope.row.isDir"
|
||||
type="text"
|
||||
icon="el-icon-right"
|
||||
@click="goto(`${dir}/${scope.row.name}`)"
|
||||
/>
|
||||
<el-link
|
||||
:disabled="scope.row.isDir"
|
||||
:href="downloadHref(`${dir}/${scope.row.name}`)"
|
||||
target="_blank"
|
||||
:underline="false"
|
||||
>
|
||||
<i class="el-icon-download"></i>
|
||||
</el-link>
|
||||
</template>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import path from 'path-browserify'
|
||||
import { ElMessageBox, ElMessage } from 'element-plus'
|
||||
import { NamespaceKey, getNamespaceId } from '@/utils/namespace'
|
||||
import { computed, watch, defineComponent, ref } from 'vue'
|
||||
import { ServerOption } from '@/api/server'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { humanSize, parseTime } from '@/utils'
|
||||
import { HttpResponse } from '@/api/types'
|
||||
export interface sftpFile {
|
||||
name: string
|
||||
size: number
|
||||
mode: string
|
||||
modTime: string
|
||||
isDir: boolean
|
||||
uploading: boolean
|
||||
}
|
||||
export default defineComponent({
|
||||
props: {
|
||||
modelValue: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
emits: ['update:modelValue'],
|
||||
setup(props, { emit }) {
|
||||
const { t } = useI18n()
|
||||
const dialogVisible = computed({
|
||||
get: () => props.modelValue,
|
||||
set: (val) => {
|
||||
emit('update:modelValue', val)
|
||||
},
|
||||
})
|
||||
|
||||
const serverLoading = ref(false)
|
||||
const serverOption = ref<ServerOption['datagram']['list']>([])
|
||||
watch(dialogVisible, (val: boolean) => {
|
||||
if (val === true) {
|
||||
serverLoading.value = true
|
||||
new ServerOption()
|
||||
.request()
|
||||
.then((response) => {
|
||||
serverOption.value = response.data.list
|
||||
})
|
||||
.finally(() => {
|
||||
serverLoading.value = false
|
||||
})
|
||||
}
|
||||
})
|
||||
const serverId = ref('')
|
||||
const tableData = ref([] as sftpFile[])
|
||||
const wsConnected = ref(false)
|
||||
let ws: WebSocket
|
||||
const handleSelectServer = () => {
|
||||
const selectedServer = serverOption.value.find(
|
||||
(_) => _.id === Number(serverId.value)
|
||||
)
|
||||
if (!selectedServer) {
|
||||
return
|
||||
}
|
||||
if (ws) {
|
||||
ws.close()
|
||||
tableData.value = []
|
||||
dirHistory = []
|
||||
dir.value = '/'
|
||||
}
|
||||
try {
|
||||
ws = new WebSocket(
|
||||
`${location.protocol.replace('http', 'ws')}//${
|
||||
window.location.host + import.meta.env.VITE_APP_BASE_API
|
||||
}/ws/sftp?serverId=${
|
||||
selectedServer.id
|
||||
}&${NamespaceKey}=${getNamespaceId()}`
|
||||
)
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
}
|
||||
|
||||
ws.onopen = () => {
|
||||
wsConnected.value = true
|
||||
}
|
||||
ws.onerror = (error) => {
|
||||
console.log(error)
|
||||
}
|
||||
ws.onclose = (event) => {
|
||||
if (event.reason !== '') {
|
||||
ElMessage.error('sftp close, reason: ' + event.reason)
|
||||
}
|
||||
console.log(event)
|
||||
}
|
||||
ws.onmessage = (event) => {
|
||||
const responseData = JSON.parse(event.data)
|
||||
tableLoading.value = false
|
||||
if (responseData['code'] > 0) {
|
||||
ElMessage.error(responseData['message'])
|
||||
tableData.value = []
|
||||
} else {
|
||||
tableData.value = responseData['data']
|
||||
if (dir.value !== '/') {
|
||||
tableData.value.unshift({
|
||||
name: '..',
|
||||
size: 0,
|
||||
mode: '',
|
||||
modTime: '',
|
||||
isDir: true,
|
||||
uploading: false,
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const tableLoading = ref(false)
|
||||
const dir = ref('/')
|
||||
let dirHistory: string[] = []
|
||||
const goto = (target: string) => {
|
||||
tableLoading.value = true
|
||||
dir.value = path.normalize(target)
|
||||
dirHistory.push(dir.value)
|
||||
ws.send(target)
|
||||
}
|
||||
const back = () => {
|
||||
if (dirHistory.length > 1) {
|
||||
dirHistory.pop()
|
||||
dir.value = dirHistory[dirHistory.length - 1]
|
||||
ws.send(dir.value)
|
||||
}
|
||||
}
|
||||
const refresh = () => {
|
||||
tableLoading.value = true
|
||||
ws.send(dir.value)
|
||||
}
|
||||
const downloadHref = (file: string) => {
|
||||
file = path.normalize(file)
|
||||
return `${
|
||||
import.meta.env.VITE_APP_BASE_API
|
||||
}/server/downloadFile?${NamespaceKey}=${getNamespaceId()}&id=${
|
||||
serverId.value
|
||||
}&file=${file}`
|
||||
}
|
||||
|
||||
const uploadHref = (serverId: string) => {
|
||||
return `${
|
||||
import.meta.env.VITE_APP_BASE_API
|
||||
}/server/uploadFile?${NamespaceKey}=${getNamespaceId()}&id=${serverId}&filePath=${
|
||||
dir.value
|
||||
}`
|
||||
}
|
||||
|
||||
const handleUploadSuccess = (
|
||||
response: HttpResponse<string>,
|
||||
file: File
|
||||
) => {
|
||||
const tableIndex = tableData.value.findIndex((_) => file.name === _.name)
|
||||
if (tableIndex >= 0) {
|
||||
if (response.code > 0) {
|
||||
ElMessage.error(`upload failed, detail: ${response.message}`)
|
||||
tableData.value.splice(tableIndex, 1)
|
||||
} else {
|
||||
tableData.value[tableIndex].uploading = false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
const handleUploadError = (err: Error, file: File) => {
|
||||
const tableIndex = tableData.value.findIndex((_) => file.name === _.name)
|
||||
if (tableIndex >= 0) {
|
||||
ElMessage.error(`upload failed, detail: ${err.message}`)
|
||||
tableData.value.splice(tableIndex, 1)
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
const beforeUpload = async (file: File) => {
|
||||
const tableIndex = tableData.value.findIndex((_) => file.name === _.name)
|
||||
if (tableIndex >= 0) {
|
||||
const overwriteFile = await ElMessageBox.confirm('', t('tips'), {
|
||||
message: `${file.name} is already exist, would you like to overwrite it?`,
|
||||
confirmButtonText: t('confirm'),
|
||||
cancelButtonText: t('cancel'),
|
||||
type: 'warning',
|
||||
})
|
||||
.then(() => {
|
||||
tableData.value.splice(tableIndex, 1)
|
||||
return true
|
||||
})
|
||||
.catch(() => {
|
||||
ElMessage.info(t('cancel'))
|
||||
return false
|
||||
})
|
||||
if (overwriteFile === false) {
|
||||
return Promise.reject()
|
||||
}
|
||||
}
|
||||
tableData.value.unshift({
|
||||
name: file.name,
|
||||
size: file.size,
|
||||
mode: '-rw-rw-rw-',
|
||||
modTime: parseTime(file.lastModified),
|
||||
isDir: false,
|
||||
uploading: true,
|
||||
})
|
||||
return Promise.resolve()
|
||||
}
|
||||
|
||||
return {
|
||||
dialogVisible,
|
||||
serverLoading,
|
||||
serverOption,
|
||||
serverId,
|
||||
handleSelectServer,
|
||||
wsConnected,
|
||||
dir,
|
||||
tableLoading,
|
||||
tableData,
|
||||
humanSize,
|
||||
goto,
|
||||
back,
|
||||
refresh,
|
||||
downloadHref,
|
||||
uploadHref,
|
||||
handleUploadSuccess,
|
||||
handleUploadError,
|
||||
beforeUpload,
|
||||
}
|
||||
},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.xterm {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
@ -1,164 +0,0 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
v-model="dialogVisible"
|
||||
title="WebSSH"
|
||||
:close-on-click-modal="false"
|
||||
:fullscreen="$store.state.app.device === 'mobile'"
|
||||
>
|
||||
<el-select
|
||||
v-model="serverId"
|
||||
v-loading="serverLoading"
|
||||
filterable
|
||||
default-first-option
|
||||
placeholder="please select server"
|
||||
style="width: 100%"
|
||||
@change="handleSelectServer"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in serverOption"
|
||||
:key="item.id"
|
||||
:label="`${item.name}(${item.description})`"
|
||||
:value="item.id"
|
||||
/>
|
||||
</el-select>
|
||||
<el-tabs v-model="activeName" closable @tab-remove="removeTab">
|
||||
<el-tab-pane
|
||||
v-for="item in tabList"
|
||||
:key="item.name"
|
||||
:label="item.label"
|
||||
:name="item.name"
|
||||
>
|
||||
<div
|
||||
:ref="
|
||||
(el) => {
|
||||
item.el = el
|
||||
}
|
||||
"
|
||||
class="xterm"
|
||||
:style="
|
||||
$store.state.app.device === 'mobile'
|
||||
? 'height: calc(100vh - 202px)'
|
||||
: 'height:500px'
|
||||
"
|
||||
/>
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
<el-input
|
||||
v-show="tabList.length > 0"
|
||||
v-model="command"
|
||||
type="textarea"
|
||||
placeholder="Send to all windows"
|
||||
@keyup.enter="enterCommand"
|
||||
/>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import 'xterm/css/xterm.css'
|
||||
import { xterm } from './xterm'
|
||||
import { computed, watch, defineComponent, ref, nextTick } from 'vue'
|
||||
import { ServerOption } from '@/api/server'
|
||||
|
||||
export default defineComponent({
|
||||
props: {
|
||||
modelValue: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
emits: ['update:modelValue'],
|
||||
setup(props, { emit }) {
|
||||
const dialogVisible = computed({
|
||||
get: () => props.modelValue,
|
||||
set: (val) => {
|
||||
emit('update:modelValue', val)
|
||||
},
|
||||
})
|
||||
|
||||
const serverLoading = ref(false)
|
||||
const serverOption = ref<ServerOption['datagram']['list']>([])
|
||||
watch(dialogVisible, (val: boolean) => {
|
||||
if (val === true) {
|
||||
serverLoading.value = true
|
||||
new ServerOption()
|
||||
.request()
|
||||
.then((response) => {
|
||||
serverOption.value = response.data.list
|
||||
})
|
||||
.finally(() => {
|
||||
serverLoading.value = false
|
||||
})
|
||||
}
|
||||
})
|
||||
const activeName = ref('')
|
||||
const tabList = ref<{ label: string; name: string; el: HTMLDivElement }[]>(
|
||||
[]
|
||||
)
|
||||
const serverId = ref('')
|
||||
let xterms: xterm[] = []
|
||||
const handleSelectServer = () => {
|
||||
const selectedServer = serverOption.value.find(
|
||||
(_) => _.id === Number(serverId.value)
|
||||
)
|
||||
if (!selectedServer) {
|
||||
return
|
||||
}
|
||||
const tabLen = tabList.value.length
|
||||
const item = {
|
||||
label: selectedServer.ip,
|
||||
name: '' + tabLen,
|
||||
el: {} as HTMLDivElement,
|
||||
}
|
||||
tabList.value.push(item)
|
||||
activeName.value = item.name
|
||||
serverId.value = ''
|
||||
nextTick(() => {
|
||||
xterms[tabLen] = new xterm(item.el, selectedServer.id)
|
||||
xterms[tabLen].connect()
|
||||
})
|
||||
}
|
||||
|
||||
const removeTab = (targetName: string) => {
|
||||
if (activeName.value === targetName) {
|
||||
tabList.value.forEach((tab, index) => {
|
||||
if (tab.name === targetName) {
|
||||
let nextTab = tabList.value[index + 1] || tabList.value[index - 1]
|
||||
if (nextTab) {
|
||||
activeName.value = nextTab.name
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
xterms[Number(targetName)].close()
|
||||
tabList.value = tabList.value.filter((tab) => tab.name !== targetName)
|
||||
}
|
||||
|
||||
const command = ref('')
|
||||
const enterCommand = () => {
|
||||
xterms.forEach((item: xterm) => {
|
||||
item.send(command.value)
|
||||
})
|
||||
command.value = ''
|
||||
}
|
||||
|
||||
return {
|
||||
dialogVisible,
|
||||
serverLoading,
|
||||
serverOption,
|
||||
serverId,
|
||||
tabList,
|
||||
activeName,
|
||||
handleSelectServer,
|
||||
removeTab,
|
||||
command,
|
||||
enterCommand,
|
||||
}
|
||||
},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.xterm {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
@ -1,12 +1,6 @@
|
||||
<template>
|
||||
<el-row class="app-container">
|
||||
<el-row class="app-bar" type="flex" justify="end">
|
||||
<el-button @click="dialogSftpVisible = true">
|
||||
<svg-icon icon-class="ftp" />
|
||||
</el-button>
|
||||
<el-button @click="dialogTermVisible = true">
|
||||
<svg-icon icon-class="terminal" />
|
||||
</el-button>
|
||||
<el-button type="primary" icon="el-icon-plus" @click="handleAdd" />
|
||||
</el-row>
|
||||
<el-table
|
||||
@ -51,7 +45,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="description"
|
||||
:label="$t('desc')"
|
||||
:label="$t('description')"
|
||||
min-width="140"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
@ -178,7 +172,7 @@
|
||||
placeholder=""
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<el-form-item :label="$t('desc')" prop="description">
|
||||
<el-form-item :label="$t('description')" prop="description">
|
||||
<el-input
|
||||
v-model="formData.description"
|
||||
type="textarea"
|
||||
@ -240,8 +234,6 @@
|
||||
</el-row>
|
||||
</template>
|
||||
</el-dialog>
|
||||
<TheXtermDialog v-model="dialogTermVisible" />
|
||||
<TheSftpDialog v-model="dialogSftpVisible" />
|
||||
</el-row>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
@ -256,8 +248,6 @@ import {
|
||||
ServerToggle,
|
||||
ServerData,
|
||||
} from '@/api/server'
|
||||
import TheXtermDialog from './TheXtermDialog.vue'
|
||||
import TheSftpDialog from './TheSftpDialog.vue'
|
||||
import Validator from 'async-validator'
|
||||
import { defineComponent } from 'vue'
|
||||
import { copy, humanSize } from '@/utils'
|
||||
@ -265,11 +255,8 @@ import { ElMessageBox, ElMessage } from 'element-plus'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ServerIndex',
|
||||
components: { TheXtermDialog, TheSftpDialog },
|
||||
data() {
|
||||
return {
|
||||
dialogTermVisible: false,
|
||||
dialogSftpVisible: false,
|
||||
dialogVisible: false,
|
||||
tableLoading: false,
|
||||
tableData: [] as ServerList['datagram']['list'],
|
||||
|
37
web/src/views/server/record/index.vue
Normal file
@ -0,0 +1,37 @@
|
||||
<template>
|
||||
<div ref="record"></div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import 'asciinema-player/dist/bundle/asciinema-player.css'
|
||||
import * as AsciinemaPlayer from 'asciinema-player'
|
||||
import { NamespaceKey, getNamespaceId } from '@/utils/namespace'
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ServerTerminal',
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
|
||||
created() {},
|
||||
mounted() {
|
||||
const castUrl = `${location.origin}${
|
||||
import.meta.env.VITE_APP_BASE_API
|
||||
}/server/getTerminalRecord?${NamespaceKey}=${getNamespaceId()}`
|
||||
AsciinemaPlayer.create(castUrl, this.$refs['record'], {
|
||||
fit: false,
|
||||
fontSize: '14px',
|
||||
})
|
||||
},
|
||||
methods: {},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/mixin.scss';
|
||||
.template-dialog {
|
||||
padding-right: 10px;
|
||||
height: 400px;
|
||||
overflow-y: auto;
|
||||
@include scrollBar();
|
||||
}
|
||||
</style>
|
561
web/src/views/server/sftp/index.vue
Normal file
@ -0,0 +1,561 @@
|
||||
<template>
|
||||
<el-row class="app-container main">
|
||||
<el-row class="sftp-container">
|
||||
<el-row class="nav" align="middle">
|
||||
<el-row style="margin-right: 10px">
|
||||
<el-button
|
||||
:disabled="backwardHistory.length === 0"
|
||||
type="text"
|
||||
icon="el-icon-back"
|
||||
style="color: #303133; font-size: 14px"
|
||||
@click="backward"
|
||||
>
|
||||
</el-button>
|
||||
<el-button
|
||||
:disabled="forwardHistory.length === 0"
|
||||
type="text"
|
||||
icon="el-icon-right"
|
||||
style="color: #303133; font-size: 14px"
|
||||
@click="forward"
|
||||
>
|
||||
</el-button>
|
||||
<el-button
|
||||
:disabled="!wsConnected"
|
||||
type="text"
|
||||
icon="el-icon-top"
|
||||
style="color: #303133; font-size: 14px"
|
||||
@click="dotdot(dir)"
|
||||
>
|
||||
</el-button>
|
||||
</el-row>
|
||||
<el-row class="nav-path" style="flex: 1">
|
||||
<el-input
|
||||
v-model="dir"
|
||||
:disabled="!wsConnected"
|
||||
:readonly="!wsConnected"
|
||||
placeholder="Please input absolute path"
|
||||
class="input-with-select"
|
||||
@keyup.enter="dirOpen(dir)"
|
||||
>
|
||||
<template #prepend>
|
||||
<el-select
|
||||
v-model="serverId"
|
||||
placeholder="Select server"
|
||||
style="width: 140px"
|
||||
filterable
|
||||
@change="selectServer"
|
||||
>
|
||||
<el-option
|
||||
v-for="server in serverOption"
|
||||
:key="server.id"
|
||||
:label="server.name"
|
||||
:value="server.id"
|
||||
/>
|
||||
</el-select>
|
||||
</template>
|
||||
<template #append>
|
||||
<el-button icon="el-icon-refresh-right" @click="refresh" />
|
||||
</template>
|
||||
</el-input>
|
||||
</el-row>
|
||||
</el-row>
|
||||
<el-row class="operator" justify="space-between">
|
||||
<el-row class="operator-btn" align="middle">
|
||||
<el-upload
|
||||
:disabled="dir === ''"
|
||||
style="display: inline-block; width: 40px"
|
||||
:action="uploadHref"
|
||||
:before-upload="beforeUpload"
|
||||
multiple
|
||||
:on-success="handleUploadSuccess"
|
||||
:on-error="handleUploadError"
|
||||
:show-file-list="false"
|
||||
>
|
||||
<el-button
|
||||
:disabled="dir === ''"
|
||||
type="text"
|
||||
style="color: #606266"
|
||||
>
|
||||
{{ $t('upload') }}
|
||||
</el-button>
|
||||
</el-upload>
|
||||
</el-row>
|
||||
<el-row class="nav-search" align="middle">
|
||||
<el-dropdown
|
||||
:disabled="fileFilteredList.length === 0"
|
||||
@command="handleSort"
|
||||
>
|
||||
<span style="font-size: 12px; margin-right: 10px">
|
||||
{{ $t('sort') }}
|
||||
</span>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
<el-dropdown-item command="default">
|
||||
{{ $t('default') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="nameAsc">
|
||||
{{ $t('name') }} {{ $t('asc') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="nameDesc">
|
||||
{{ $t('name') }} {{ $t('desc') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="sizeAsc">
|
||||
{{ $t('size') }} {{ $t('asc') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="sizeDesc">
|
||||
{{ $t('size') }} {{ $t('desc') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="modTimeAsc">
|
||||
{{ $t('modifiedTime') }} {{ $t('asc') }}
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="modTimeDesc">
|
||||
{{ $t('modifiedTime') }} {{ $t('desc') }}
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
<el-input
|
||||
v-model="input"
|
||||
:disabled="!wsConnected"
|
||||
:readonly="!wsConnected"
|
||||
placeholder="Filter file"
|
||||
style="flex: 1"
|
||||
@input="filterFile"
|
||||
/>
|
||||
</el-row>
|
||||
</el-row>
|
||||
<el-row v-loading="fileListLoading" class="files">
|
||||
<div style="width: 100%">
|
||||
<el-empty
|
||||
v-show="fileFilteredList.length === 0"
|
||||
description="No result"
|
||||
></el-empty>
|
||||
<el-dropdown
|
||||
v-for="(file, index) in fileFilteredList"
|
||||
:key="index"
|
||||
:offset="-30"
|
||||
trigger="click"
|
||||
placement="right"
|
||||
>
|
||||
<el-row
|
||||
v-loading="file['uploading']"
|
||||
tabindex="1"
|
||||
class="file"
|
||||
:class="file.uuid === selectedFile['uuid'] ? 'file-selected' : ''"
|
||||
@click="selectFile(file)"
|
||||
>
|
||||
<svg-icon class="file-type" :icon-class="file.icon" />
|
||||
<div class="filename" :title="file.name">{{ file.name }}</div>
|
||||
</el-row>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
<el-dropdown-item v-if="selectedFile['isDir'] === true">
|
||||
<el-button
|
||||
type="text"
|
||||
@click="dirOpen(`${dir}/${selectedFile['name']}`)"
|
||||
>
|
||||
{{ $t('open') }}
|
||||
</el-button>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item v-if="selectedFile['isDir'] === false">
|
||||
<el-link
|
||||
:href="downloadHref"
|
||||
target="_blank"
|
||||
:underline="false"
|
||||
style="font-size: 12px"
|
||||
>
|
||||
{{ $t('download') }}
|
||||
</el-link>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item divided>
|
||||
<el-button
|
||||
type="text"
|
||||
@click="fileDetailDialogVisible = true"
|
||||
>
|
||||
{{ $t('detail') }}
|
||||
</el-button>
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
</div>
|
||||
</el-row>
|
||||
</el-row>
|
||||
<el-dialog v-model="fileDetailDialogVisible" title="" width="250px">
|
||||
<el-descriptions title="" direction="horizontal" :column="1">
|
||||
<el-descriptions-item :label="$t('name')">
|
||||
{{ selectedFile['name'] }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item :label="$t('type')">
|
||||
{{ selectedFile['isDir'] === true ? 'dir' : 'file' }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item :label="$t('permission')">
|
||||
{{ selectedFile['mode'] }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item :label="$t('size')">
|
||||
{{ humanSize(selectedFile['size']) }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item :label="$t('modifiedTime')">
|
||||
{{ selectedFile['modTime'] }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</el-dialog>
|
||||
</el-row>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import svgIds from 'virtual:svg-icons-names'
|
||||
import path from 'path-browserify'
|
||||
import { humanSize, parseTime } from '@/utils'
|
||||
import { NamespaceKey, getNamespaceId } from '@/utils/namespace'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import { ServerOption } from '@/api/server'
|
||||
import { HttpResponse } from '@/api/types'
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
interface file {
|
||||
uuid: number
|
||||
isDir: boolean
|
||||
modTime: string
|
||||
mode: string
|
||||
name: string
|
||||
size: number
|
||||
icon: string
|
||||
uploading: boolean
|
||||
}
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ServerSFTP',
|
||||
data() {
|
||||
return {
|
||||
fileDetailDialogVisible: false,
|
||||
serverOption: [] as ServerOption['datagram']['list'],
|
||||
serverId: '',
|
||||
ws: null as null | WebSocket,
|
||||
wsConnected: false,
|
||||
dir: '',
|
||||
lastDir: '',
|
||||
backwardHistory: [] as string[],
|
||||
forwardHistory: [] as string[],
|
||||
fileListLoading: false,
|
||||
fileList: [] as file[],
|
||||
fileFilteredList: [] as file[],
|
||||
selectedFile: {} as file,
|
||||
input: '',
|
||||
fileUUID: 0,
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
uploadHref: function () {
|
||||
return `${
|
||||
import.meta.env.VITE_APP_BASE_API
|
||||
}/server/uploadFile?${NamespaceKey}=${getNamespaceId()}&id=${
|
||||
this.serverId
|
||||
}&filePath=${this.dir}`
|
||||
},
|
||||
downloadHref: function () {
|
||||
const file = path.normalize(`${this.dir}/${this.selectedFile['name']}`)
|
||||
return `${
|
||||
import.meta.env.VITE_APP_BASE_API
|
||||
}/server/downloadFile?${NamespaceKey}=${getNamespaceId()}&id=${
|
||||
this.serverId
|
||||
}&file=${file}`
|
||||
},
|
||||
},
|
||||
|
||||
created() {
|
||||
this.getServerOption()
|
||||
},
|
||||
|
||||
methods: {
|
||||
humanSize,
|
||||
getServerOption() {
|
||||
new ServerOption().request().then((response) => {
|
||||
this.serverOption = response.data.list
|
||||
})
|
||||
},
|
||||
selectServer() {
|
||||
if (this.ws) {
|
||||
this.ws.close()
|
||||
this.fileList = this.backwardHistory = this.forwardHistory = []
|
||||
}
|
||||
try {
|
||||
this.ws = new WebSocket(
|
||||
`${location.protocol.replace('http', 'ws')}//${
|
||||
window.location.host + import.meta.env.VITE_APP_BASE_API
|
||||
}/ws/sftp?serverId=${
|
||||
this.serverId
|
||||
}&${NamespaceKey}=${getNamespaceId()}`
|
||||
)
|
||||
this.ws.onopen = () => {
|
||||
this.wsConnected = true
|
||||
}
|
||||
this.ws.onerror = (error) => {
|
||||
console.log(error)
|
||||
}
|
||||
this.ws.onclose = (event) => {
|
||||
if (event.reason !== '') {
|
||||
ElMessage.error('sftp close, reason: ' + event.reason)
|
||||
}
|
||||
console.log(event)
|
||||
}
|
||||
this.ws.onmessage = (event) => {
|
||||
const responseData = JSON.parse(event.data)
|
||||
this.fileListLoading = false
|
||||
if (responseData['code'] > 0) {
|
||||
ElMessage.error(responseData['message'])
|
||||
this.fileList = []
|
||||
} else {
|
||||
this.fileList = []
|
||||
const data = responseData['data'] ? responseData['data'] : []
|
||||
this.fileFilteredList = this.fileList = data.map((file: file) => {
|
||||
file.uuid = this.fileUUID++
|
||||
if (file.isDir) {
|
||||
file.icon = 'file-dir'
|
||||
} else {
|
||||
file.icon = this.getIcon(file.name)
|
||||
}
|
||||
return file
|
||||
})
|
||||
this.handleSort('default')
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
}
|
||||
},
|
||||
|
||||
handleSort(command: string) {
|
||||
let compareFunc = (fileA: file, fileB: file): number => {
|
||||
if (fileA.isDir > fileB.isDir) {
|
||||
// 按某种排序标准进行比较, a 小于 b
|
||||
return -1
|
||||
}
|
||||
if (fileA.isDir < fileB.isDir) {
|
||||
return 1
|
||||
}
|
||||
// a must be equal to b
|
||||
return 0
|
||||
}
|
||||
switch (command) {
|
||||
case 'nameAsc':
|
||||
compareFunc = (fileA: file, fileB: file): number => {
|
||||
return fileA.name.localeCompare(fileB.name)
|
||||
}
|
||||
break
|
||||
case 'nameDesc':
|
||||
compareFunc = (fileA: file, fileB: file): number => {
|
||||
return fileB.name.localeCompare(fileA.name)
|
||||
}
|
||||
break
|
||||
case 'sizeAsc':
|
||||
compareFunc = (fileA: file, fileB: file): number => {
|
||||
return fileA.size - fileB.size
|
||||
}
|
||||
break
|
||||
case 'sizeDesc':
|
||||
compareFunc = (fileA: file, fileB: file): number => {
|
||||
return fileB.size - fileA.size
|
||||
}
|
||||
break
|
||||
case 'modTimeAsc':
|
||||
compareFunc = (fileA: file, fileB: file): number => {
|
||||
return (
|
||||
new Date(fileA.modTime).getTime() -
|
||||
new Date(fileB.modTime).getTime()
|
||||
)
|
||||
}
|
||||
break
|
||||
case 'modTimeDesc':
|
||||
compareFunc = (fileA: file, fileB: file): number => {
|
||||
return (
|
||||
new Date(fileB.modTime).getTime() -
|
||||
new Date(fileA.modTime).getTime()
|
||||
)
|
||||
}
|
||||
break
|
||||
}
|
||||
this.fileFilteredList.sort(compareFunc)
|
||||
},
|
||||
|
||||
goto(target: string) {
|
||||
this.fileListLoading = true
|
||||
this.selectedFile = {} as file
|
||||
this.dir = path.normalize(target)
|
||||
this.ws?.send(target)
|
||||
},
|
||||
|
||||
dirOpen(dir: string) {
|
||||
if (this.lastDir !== '') {
|
||||
if (
|
||||
this.backwardHistory.length === 0 ||
|
||||
this.backwardHistory[this.backwardHistory.length - 1] !== this.lastDir
|
||||
) {
|
||||
this.backwardHistory.push(this.lastDir)
|
||||
}
|
||||
}
|
||||
this.forwardHistory = []
|
||||
this.lastDir = dir
|
||||
this.goto(dir)
|
||||
},
|
||||
|
||||
dotdot(target: string) {
|
||||
this.goto(path.resolve(target, '..'))
|
||||
},
|
||||
|
||||
backward() {
|
||||
const target = this.backwardHistory.pop()
|
||||
if (target) {
|
||||
this.lastDir = target
|
||||
this.forwardHistory.push(this.dir)
|
||||
this.goto(target)
|
||||
}
|
||||
},
|
||||
|
||||
forward() {
|
||||
const target = this.forwardHistory.pop()
|
||||
if (target) {
|
||||
this.lastDir = target
|
||||
this.backwardHistory.push(this.dir)
|
||||
this.goto(target)
|
||||
}
|
||||
},
|
||||
|
||||
refresh() {
|
||||
this.fileListLoading = true
|
||||
this.ws?.send(this.dir)
|
||||
},
|
||||
|
||||
filterFile(value: string) {
|
||||
this.fileFilteredList = this.fileList.filter((file) =>
|
||||
file.name.includes(value)
|
||||
)
|
||||
},
|
||||
|
||||
selectFile(file: file) {
|
||||
this.selectedFile = file
|
||||
},
|
||||
|
||||
async beforeUpload(file: File) {
|
||||
const fileIndex = this.fileList.findIndex(
|
||||
(_: file) => file.name === _.name
|
||||
)
|
||||
if (fileIndex >= 0) {
|
||||
ElMessage.warning(`${file.name} is already exist`)
|
||||
return Promise.reject()
|
||||
}
|
||||
this.fileList.push({
|
||||
uuid: this.fileUUID++,
|
||||
name: file.name,
|
||||
size: file.size,
|
||||
mode: '-rw-rw-rw-',
|
||||
modTime: parseTime(file.lastModified),
|
||||
isDir: false,
|
||||
uploading: true,
|
||||
icon: this.getIcon(file.name),
|
||||
})
|
||||
return Promise.resolve()
|
||||
},
|
||||
|
||||
handleUploadSuccess(response: HttpResponse<string>, file: File) {
|
||||
const fileIndex = this.fileList.findIndex(
|
||||
(_: file) => file.name === _.name
|
||||
)
|
||||
if (fileIndex >= 0) {
|
||||
if (response.code > 0) {
|
||||
ElMessage.error(`upload failed, detail: ${response.message}`)
|
||||
this.fileList.splice(fileIndex, 1)
|
||||
} else {
|
||||
this.fileList[fileIndex].uploading = false
|
||||
}
|
||||
}
|
||||
return true
|
||||
},
|
||||
|
||||
handleUploadError(err: Error, file: File) {
|
||||
const fileIndex = this.fileList.findIndex(
|
||||
(_: file) => file.name === _.name
|
||||
)
|
||||
if (fileIndex >= 0) {
|
||||
ElMessage.error(`upload failed, detail: ${err.message}`)
|
||||
this.fileList.splice(fileIndex, 1)
|
||||
}
|
||||
return true
|
||||
},
|
||||
|
||||
getIcon(filename: string) {
|
||||
let file_ext = path.extname(filename)
|
||||
file_ext = file_ext.length > 0 ? file_ext.substring(1) : ''
|
||||
if (svgIds.includes(`icon-file-${file_ext}`)) {
|
||||
return `file-${file_ext}`
|
||||
} else {
|
||||
return 'file-unknown'
|
||||
}
|
||||
},
|
||||
},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/mixin.scss';
|
||||
.main {
|
||||
flex-direction: column;
|
||||
height: calc(100vh - 84px);
|
||||
}
|
||||
.sftp-container {
|
||||
flex-direction: column;
|
||||
border: 1px solid #d8dce5;
|
||||
height: 100%;
|
||||
.nav {
|
||||
padding: 10px;
|
||||
border-bottom: 1px solid #d8dce5;
|
||||
}
|
||||
.operator {
|
||||
padding: 5px 10px;
|
||||
border-bottom: 1px solid #d8dce5;
|
||||
}
|
||||
.files {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
@include scrollBar();
|
||||
.file {
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
margin: 10px;
|
||||
height: 90px;
|
||||
width: 100px;
|
||||
cursor: pointer;
|
||||
&-selected {
|
||||
outline: 1px solid #d8dce5;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
.file-type {
|
||||
width: 50px;
|
||||
height: 60px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.filename {
|
||||
color: #303133;
|
||||
font-size: 12px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-device-width: 400px) {
|
||||
.sftp-container {
|
||||
.nav {
|
||||
flex-direction: column;
|
||||
.el-row {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
.input-with-select .el-input-group__prepend {
|
||||
background-color: #fff;
|
||||
}
|
||||
</style>
|
262
web/src/views/server/terminal/index.vue
Normal file
@ -0,0 +1,262 @@
|
||||
<template>
|
||||
<el-row class="app-container main">
|
||||
<el-row class="header">
|
||||
<el-scrollbar>
|
||||
<el-row class="nav" justify="start" align="middle">
|
||||
<div
|
||||
v-for="(terminal, index) in terminalList"
|
||||
:key="terminal.uuid"
|
||||
class="nav-item"
|
||||
:class="
|
||||
terminal.uuid === currentTerminalUUID ? 'nav-item-selected' : ''
|
||||
"
|
||||
>
|
||||
<el-row>
|
||||
<el-row class="nav-item-name">
|
||||
<el-button
|
||||
type="text"
|
||||
style="color: #bfcbd9; font-size: 14px"
|
||||
@click="selectTerminal(terminal)"
|
||||
>
|
||||
{{ terminal.server.name }}
|
||||
</el-button>
|
||||
</el-row>
|
||||
<el-button
|
||||
type="text"
|
||||
style="color: #bfcbd9"
|
||||
icon="el-icon-close"
|
||||
@click="deleteTerminal(terminal, index)"
|
||||
></el-button>
|
||||
</el-row>
|
||||
</div>
|
||||
<div class="nav-plus">
|
||||
<el-popover
|
||||
v-model:visible="serverOptionVisible"
|
||||
placement="bottom-start"
|
||||
:width="200"
|
||||
trigger="click"
|
||||
popper-class="nav-popover"
|
||||
:show-arrow="false"
|
||||
:offset="-2"
|
||||
style="background: #0e0f12"
|
||||
>
|
||||
<el-input
|
||||
v-model="serverFilterInput"
|
||||
placeholder="Filter server name"
|
||||
:input-style="{
|
||||
background: '#0e0f12',
|
||||
borderColor: '#304156',
|
||||
color: '#bfcbd9',
|
||||
}"
|
||||
@input="filterServer"
|
||||
/>
|
||||
<el-row class="server-list" type="flex" align="middle">
|
||||
<el-row v-for="server in serverFilteredOption" :key="server.id">
|
||||
<el-button
|
||||
type="text"
|
||||
style="
|
||||
color: #bfcbd9;
|
||||
width: 150px;
|
||||
text-align: left;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
"
|
||||
size="medium"
|
||||
@click="selectServer(server)"
|
||||
>
|
||||
{{ server.name }}
|
||||
</el-button>
|
||||
</el-row>
|
||||
</el-row>
|
||||
<template #reference>
|
||||
<el-button
|
||||
type="text"
|
||||
style="color: #bfcbd9; height: 45px; width: 100%"
|
||||
icon="el-icon-plus"
|
||||
@click="serverOptionVisible = !serverOptionVisible"
|
||||
></el-button>
|
||||
</template>
|
||||
</el-popover>
|
||||
</div>
|
||||
</el-row>
|
||||
</el-scrollbar>
|
||||
</el-row>
|
||||
<el-row class="terminal">
|
||||
<div
|
||||
v-for="terminal in terminalList"
|
||||
v-show="terminal.uuid === currentTerminalUUID"
|
||||
:key="terminal.uuid"
|
||||
:ref="`terminal${terminal.uuid}`"
|
||||
style="width: 100%; height: 100%"
|
||||
></div>
|
||||
</el-row>
|
||||
<el-row class="footer">
|
||||
<el-input
|
||||
v-model="command"
|
||||
:disabled="terminalList.length === 0"
|
||||
placeholder="Click here send to all windows"
|
||||
:input-style="{
|
||||
background: '#0e0f12',
|
||||
borderColor: '#304156',
|
||||
color: '#bfcbd9',
|
||||
}"
|
||||
@keyup.enter="enterCommand"
|
||||
/>
|
||||
</el-row>
|
||||
</el-row>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import 'xterm/css/xterm.css'
|
||||
import { ServerOption, ServerData } from '@/api/server'
|
||||
import { xterm } from './xterm'
|
||||
import { defineComponent } from 'vue'
|
||||
interface terminal {
|
||||
uuid: number
|
||||
xterm?: xterm | void
|
||||
server: ServerData['datagram']
|
||||
}
|
||||
export default defineComponent({
|
||||
name: 'ServerTerminal',
|
||||
data() {
|
||||
return {
|
||||
serverOptionVisible: false,
|
||||
terminalList: [] as terminal[],
|
||||
currentTerminalUUID: 0,
|
||||
serverOption: [] as ServerOption['datagram']['list'],
|
||||
serverFilteredOption: [] as ServerOption['datagram']['list'],
|
||||
serverFilterInput: '',
|
||||
command: '',
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getServerOption()
|
||||
},
|
||||
methods: {
|
||||
getServerOption() {
|
||||
new ServerOption().request().then((response) => {
|
||||
this.serverOption = this.serverFilteredOption = response.data.list
|
||||
})
|
||||
},
|
||||
filterServer(value: string) {
|
||||
this.serverFilteredOption = this.serverOption.filter((server) =>
|
||||
server.name.includes(value)
|
||||
)
|
||||
},
|
||||
selectServer(server: ServerData['datagram']) {
|
||||
if (this.terminalList.length === 0) {
|
||||
this.currentTerminalUUID = 0
|
||||
} else {
|
||||
this.currentTerminalUUID =
|
||||
this.terminalList[this.terminalList.length - 1].uuid + 1
|
||||
}
|
||||
this.terminalList.push({ uuid: this.currentTerminalUUID, server })
|
||||
this.serverOptionVisible = false
|
||||
this.$nextTick(() => {
|
||||
const x = new xterm(
|
||||
this.$refs[`terminal${this.currentTerminalUUID}`] as HTMLDivElement,
|
||||
server.id
|
||||
)
|
||||
x.connect()
|
||||
this.terminalList[this.terminalList.length - 1].xterm = x
|
||||
})
|
||||
},
|
||||
selectTerminal(terminal: terminal) {
|
||||
this.currentTerminalUUID = terminal.uuid
|
||||
},
|
||||
deleteTerminal(terminal: terminal, index: number) {
|
||||
terminal.xterm?.close()
|
||||
this.terminalList.splice(index, 1)
|
||||
if (this.currentTerminalUUID === terminal.uuid) {
|
||||
this.currentTerminalUUID =
|
||||
this.terminalList.length === 0
|
||||
? 0
|
||||
: this.terminalList[this.terminalList.length - 1].uuid
|
||||
}
|
||||
},
|
||||
enterCommand() {
|
||||
this.terminalList.forEach((terminal) => {
|
||||
terminal.xterm?.send(this.command + '\n')
|
||||
})
|
||||
this.command = ''
|
||||
},
|
||||
},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.main {
|
||||
flex-direction: column;
|
||||
height: calc(100vh - 84px);
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 100%;
|
||||
background: #0e0f12;
|
||||
}
|
||||
.nav {
|
||||
height: auto;
|
||||
flex-wrap: nowrap;
|
||||
&-item {
|
||||
color: #bfcbd9;
|
||||
font-size: 14px;
|
||||
flex-shrink: 0;
|
||||
width: 150px;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
padding: 0 10px;
|
||||
&-name {
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
width: 110px;
|
||||
display: inline-block;
|
||||
}
|
||||
&-selected {
|
||||
background: #1d2935;
|
||||
}
|
||||
}
|
||||
&-plus {
|
||||
text-align: center;
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.terminal {
|
||||
flex: 1;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
background: #1d2935;
|
||||
}
|
||||
|
||||
.footer {
|
||||
height: 28px;
|
||||
width: 100%;
|
||||
background: #0e0f12;
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width: 992px) {
|
||||
.terminal {
|
||||
width: calc(100vw - 40px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<style lang="scss">
|
||||
@import '@/styles/mixin.scss';
|
||||
.xterm .xterm-viewport {
|
||||
overflow: auto;
|
||||
@include scrollBar();
|
||||
}
|
||||
.nav-popover.el-popper {
|
||||
background: #0e0f12;
|
||||
border-color: #0e0f12;
|
||||
}
|
||||
.server-list {
|
||||
height: 216px;
|
||||
overflow-x: auto;
|
||||
flex-wrap: nowrap;
|
||||
flex-direction: column;
|
||||
margin-left: 10px;
|
||||
margin-top: 10px;
|
||||
@include scrollBar();
|
||||
}
|
||||
</style>
|
@ -1,6 +1,7 @@
|
||||
import { Terminal } from 'xterm'
|
||||
import { FitAddon } from 'xterm-addon-fit'
|
||||
import { AttachAddon } from 'xterm-addon-attach'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import { NamespaceKey, getNamespaceId } from '@/utils/namespace'
|
||||
export class xterm {
|
||||
private serverId: number
|
||||
@ -18,6 +19,27 @@ export class xterm {
|
||||
fontSize: 14,
|
||||
cursorBlink: true,
|
||||
windowsMode: isWindows,
|
||||
theme: {
|
||||
foreground: '#ebeef5',
|
||||
background: '#1d2935',
|
||||
cursor: '#e6a23c',
|
||||
black: '#000000',
|
||||
brightBlack: '#555555',
|
||||
red: '#ef4f4f',
|
||||
brightRed: '#ef4f4f',
|
||||
green: '#67c23a',
|
||||
brightGreen: '#67c23a',
|
||||
yellow: '#e6a23c',
|
||||
brightYellow: '#e6a23c',
|
||||
blue: '#409eff',
|
||||
brightBlue: '#409eff',
|
||||
magenta: '#ef4f4f',
|
||||
brightMagenta: '#ef4f4f',
|
||||
cyan: '#17c0ae',
|
||||
brightCyan: '#17c0ae',
|
||||
white: '#bbbbbb',
|
||||
brightWhite: '#ffffff',
|
||||
},
|
||||
})
|
||||
const fitAddon = new FitAddon()
|
||||
this.terminal.open(this.element)
|
||||
@ -31,10 +53,13 @@ export class xterm {
|
||||
}&rows=${this.terminal.rows}&cols=${this.terminal.cols}`
|
||||
)
|
||||
this.terminal.loadAddon(new AttachAddon(this.websocket))
|
||||
this.websocket.onclose = function (evt) {
|
||||
ElMessage.error(evt.reason)
|
||||
}
|
||||
}
|
||||
public close(): void {
|
||||
this.websocket.close()
|
||||
this.terminal.dispose()
|
||||
this.websocket.close()
|
||||
}
|
||||
|
||||
public send(message: string): void {
|
2
ws/WS.go
@ -18,7 +18,7 @@ const (
|
||||
pingPeriod = (pongWait * 9) / 10
|
||||
|
||||
// Maximum message size allowed from peer.
|
||||
maxMessageSize = 512
|
||||
maxMessageSize = 10240
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -6,8 +6,10 @@ import (
|
||||
"github.com/zhenorzz/goploy/core"
|
||||
"github.com/zhenorzz/goploy/model"
|
||||
"github.com/zhenorzz/goploy/response"
|
||||
"github.com/zhenorzz/goploy/utils"
|
||||
"golang.org/x/crypto/ssh"
|
||||
"net/http"
|
||||
"path"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
@ -101,6 +103,8 @@ func (hub *Hub) Xterm(gp *core.Goploy) core.Response {
|
||||
return response.Empty{}
|
||||
}
|
||||
|
||||
recorder, _ := utils.NewRecorder(path.Join(core.GetLogPath(), "demo.cast"), "xterm", rows, cols)
|
||||
defer recorder.Close()
|
||||
ticker := time.NewTicker(pingPeriod)
|
||||
defer ticker.Stop()
|
||||
flushMessageTick := time.NewTicker(time.Millisecond * time.Duration(120))
|
||||
@ -124,6 +128,7 @@ func (hub *Hub) Xterm(gp *core.Goploy) core.Response {
|
||||
c.Close()
|
||||
return
|
||||
}
|
||||
recorder.WriteData(comboWriter.buffer.String())
|
||||
comboWriter.buffer.Reset()
|
||||
}
|
||||
case <-stop:
|
||||
|