Compare commits

..

1 Commits

Author SHA1 Message Date
root
cd9319883b style update 2021-08-09 23:24:09 +08:00
8 changed files with 9224 additions and 26 deletions

View File

@ -21,8 +21,8 @@
<div class="input-group">
<a class="navbar-brand" href="#"> <img alt="Brand"
src="./img/logo-1.png" style="height: 30px">
</a><a class="navbar-brand">数瑞浏览器&nbsp;&nbsp; </a> <input id="urlInput"
type="text" class="form-control" placeho=lder="输入地址" style="display: none;">
</a><a class="navbar-brand">智能合约浏览器&nbsp;&nbsp; </a> <input id="urlInput"
type="text" class="form-control" placeholder="输入地址" style="display: none;">
<button class="btn btn-outline-secondary" type="button"
onclick="connectNode()" style="display: none;">GO</button>

View File

@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Cache-Control" content="no-cache"/>
<title>数瑞浏览器</title>
<title>智能合约浏览器</title>
<script src="./js/createWS.js"></script>
<script src="./js/cryptico.js"></script>
<script src="./js/jquery-2.1.4.js"></script>
@ -23,7 +23,7 @@
<img alt="Brand"
src="./img/logo-1.png" style="height: 30px">
</a>
<a class="navbar-brand">数瑞浏览器&nbsp;&nbsp; </a>
<a class="navbar-brand">智能合约浏览器&nbsp;&nbsp; </a>
<div class="input-group-prepend">
<input id="urlInput" style="border-top-left-radius: 5px; border-bottom-left-radius: 5px"
type="text" placeholder="输入地址">

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@
border: 1px solid rgba(0, 0, 0, .125);
border-radius: 5px;
background: white;
color: #2E324C;
color: #304156;
}
.userName:hover {
@ -85,16 +85,16 @@ div .card {
.projectLine.collapsed {
background: #D5D6DB;
color: #2E324C;
color: #304156;
}
.projectLine {
background: #2E324C;
background: #304156;
color: white;
}
.projectLine.collapsed:hover {
background: #2E324C;
background: #304156;
color: white;
}
@ -113,7 +113,7 @@ div .card {
}
.headerFooter {
background: #2E324C;
background: #304156;
color: white;
}

BIN
img/logo-1.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -826,8 +826,6 @@ function getRequestParameters() {
}
}
function changeRender() {
if (global.urlparam["noRender"] === "true") {
global.urlparam["noRender"] = undefined;
@ -837,4 +835,4 @@ function changeRender() {
switchRenderBtn.innerHTML = "加载界面";
}
changeApp();
}
}

View File

@ -3,7 +3,7 @@ var getDateDaysBefore = function (daysAgo) {
return new Date(dateStr).getTime() - daysAgo * 24 * 3600 * 1000;
};
let primaryColor = "#2E324C";
let primaryColor = "#304156";
// ======Vue start
var headerVue = "";
@ -49,15 +49,9 @@ var initVue = function () {
newKey.id = this.sm2KeyList.length;
newKey.title = headerVue.shortName;
newKey.sm2Key = this.sm2KeyStr;
var exist = false;
for (var i=0;i<this.sm2KeyList.length;i++){
var iterKey = this.sm2KeyList[i];
if (iterKey.sm2Key==newKey.sm2Key)
exist = true;
}
if (!exist)
this.sm2KeyList.push(newKey);
this.sm2KeyList.push(newKey);
localStorage.setItem("PrivKeyList", JSON.stringify(this.sm2KeyList));
getSession();
listProjects("priv");
}

9214
js/jquery-2.1.4.js vendored

File diff suppressed because one or more lines are too long