forked from gobysec/GobyExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
houdoudou
committed
Sep 10, 2020
1 parent
2bec9af
commit f565a57
Showing
121 changed files
with
792 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
.vscode-test/ | ||
*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## 0.1.0 - 10th Sept,2020 | ||
webfinder页入口配置的简单示例 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## 快速开始 | ||
webfinder页入口配置的简单示例 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "Webfinder", | ||
"publisher": "GobySec", | ||
"description": "webfinder页入口配置的示例", | ||
"version": "0.1.0", | ||
"engines": "1.7.199", | ||
"icon": "src/assets/img/logo.png", | ||
"initEvents": "", | ||
"main": "./src/extension.js", | ||
"contributes": { | ||
"views": { | ||
"webfinder": [ | ||
{ | ||
"command": "webfinder", | ||
"title": "webfinder", | ||
"icon": "src/assets/img/logo.png" | ||
} | ||
] | ||
} | ||
}, | ||
"scripts": {}, | ||
"devDependencies": {}, | ||
"dependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* 滚动条轨道的样式 */ | ||
::-webkit-scrollbar { | ||
width: 5px; | ||
/*竖向滚动条的宽度*/ | ||
height: 5px; | ||
/*横向滚动条的高度*/ | ||
} | ||
|
||
::-webkit-scrollbar-track { | ||
background-color: transparent; | ||
-webkit-border-radius: 0; | ||
border-radius: 0; | ||
} | ||
|
||
/* 滚动条轨道内滑块的样式 */ | ||
::-webkit-scrollbar-thumb { | ||
border-radius: 0; | ||
background-color: #A0B0CD; | ||
} | ||
|
||
/* 当焦点不在当前区域滑块的状态 */ | ||
::-webkit-scrollbar-thumb:window-inactive { | ||
background-color: #FFFFFF; | ||
-webkit-border-radius: 0; | ||
border-radius: 0; | ||
} | ||
|
||
.clearfix:before, | ||
.clearfix:after { | ||
/*清除浮动*/ | ||
content: ""; | ||
display: table; | ||
} | ||
|
||
.clearfix:after { | ||
clear: both; | ||
} | ||
|
||
.clearfix { | ||
*zoom: 1; | ||
/*IE/7/6*/ | ||
} | ||
|
||
.fl { | ||
float: left; | ||
} | ||
|
||
.fr { | ||
float: right; | ||
} | ||
|
||
.layui-input { | ||
width: 303px; | ||
height: 30px; | ||
font-size: 12px; | ||
color: #163366; | ||
background:rgba(33, 43, 66, 0); | ||
border: 1px solid rgba(207, 217, 229, 1); | ||
border-radius: 2px; | ||
} | ||
|
||
.layui-btn { | ||
width: 87px; | ||
height: 30px; | ||
line-height: 30px; | ||
font-size: 12px; | ||
color: #fff; | ||
margin-top: 0; | ||
padding: 0; | ||
background:rgba(71, 120, 199, 1); | ||
border-radius: 4px; | ||
} | ||
|
||
.res-wrap { | ||
background:rgba(255, 255, 255, 1); | ||
border: 1px solid rgba(229, 235, 247, 1); | ||
border-radius: 4px; | ||
margin-top: 20px; | ||
} | ||
|
||
.res-wrap>p { | ||
color: #7586A6; | ||
height: 21px; | ||
line-height: 21px; | ||
font-size: 12px; | ||
padding: 0 10px; | ||
background:rgba(235, 240, 248, 1); | ||
border: 1px solid rgba(229, 235, 247, 1); | ||
border-radius: 4px 4px 0 0; | ||
} | ||
|
||
#res { | ||
font-size: 12px; | ||
color: #7586A6; | ||
line-height: 18px; | ||
padding: 10px; | ||
height: 53px; | ||
overflow: auto; | ||
} | ||
|
||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.