mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
ENH: icon before text
Change-Id: I714aa5d744bb7d6e83b2a58add37bc67302fdd25
This commit is contained in:
parent
ff89c4d04d
commit
1c71204e55
2 changed files with 246 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
<<<<<<< HEAD
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
@ -40,3 +41,47 @@
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
=======
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="Cache-Control" content="max-age=7200" />
|
||||||
|
<title>引导_P1</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/common.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/dark.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="5.css" />
|
||||||
|
<script type="text/javascript" src="../js/jquery-2.1.1.min.js"></script>
|
||||||
|
<script type="text/javascript" src="../js/json2.js"></script>
|
||||||
|
<script type="text/javascript" src="../../data/text.js"></script>
|
||||||
|
<script type="text/javascript" src="../js/globalapi.js"></script>
|
||||||
|
<script type="text/javascript" src="../js/common.js"></script>
|
||||||
|
<script type="text/javascript" src="5.js"></script>
|
||||||
|
</head>
|
||||||
|
<body onLoad="OnInit()">
|
||||||
|
<div id="Title">
|
||||||
|
<div class="trans" tid="t64">Bambu Network Plugin</div>
|
||||||
|
</div>
|
||||||
|
<div id="Content">
|
||||||
|
|
||||||
|
<div id="FeatureText">
|
||||||
|
<div ><a tid="t75" class="trans TextS1">Bambu Network plug-in Provides the following features:</a></div>
|
||||||
|
<div><span class="TextPoint">●</span> <a tid="t65" class="trans" ></a></div>
|
||||||
|
<div><span class="TextPoint">●</span> <a tid="t66" class="trans" ></a></div>
|
||||||
|
<div><span class="TextPoint">●</span> <a tid="t67" class="trans" ></a></div>
|
||||||
|
<div><span class="TextPoint">●</span> <a tid="t68" class="trans" ></a></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div id="CheckArea"><input id="InstallCheck" onClick="SendInstallPluginCheck()" checked type="checkbox"><a tid="t69" class="trans TextS1">Install Bambu Network Plug-in. </a></div>
|
||||||
|
<div id="RestartText" tid="t70" class="trans" ></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="AcceptArea">
|
||||||
|
<div class="GrayBtn trans" tid="t8" id="PreBtn" onclick="window.history.back()">Back</div>
|
||||||
|
<div class="NormalBtn trans" tid="t25" id="AcceptBtn" onclick="FinishGuide()">Finish</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
>>>>>>> 41ae44c5f (ENH: icon before text)
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<<<<<<< HEAD
|
||||||
*
|
*
|
||||||
{
|
{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -191,3 +192,203 @@ body
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
=======
|
||||||
|
*
|
||||||
|
{
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
font-family: "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans;
|
||||||
|
}
|
||||||
|
|
||||||
|
html
|
||||||
|
{
|
||||||
|
height:100%;
|
||||||
|
background-color: #626262;
|
||||||
|
}
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
height:100%;
|
||||||
|
max-height: 660px;
|
||||||
|
max-width: 820px;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
background-color: #fff;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.TextPoint
|
||||||
|
{
|
||||||
|
font-size:1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ZScrol::-webkit-scrollbar {/*滚动条整体样式*/
|
||||||
|
width: 12px; /*高宽分别对应横竖滚动条的尺寸*/
|
||||||
|
height: 12px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ZScrol::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
|
||||||
|
border-radius: 6px;
|
||||||
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||||
|
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||||
|
background-color: #AAAAAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ZScrol::-webkit-scrollbar-track {/*滚动条里面轨道*/
|
||||||
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||||
|
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||||
|
border-radius: 10px;
|
||||||
|
background: #EDEDED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----Three Part----*/
|
||||||
|
body
|
||||||
|
{
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#Title
|
||||||
|
{
|
||||||
|
height: 12%;
|
||||||
|
display: flex;
|
||||||
|
text-align: center;
|
||||||
|
flex-direction:column;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Title div
|
||||||
|
{
|
||||||
|
font-size:28px;
|
||||||
|
line-height: 28px;
|
||||||
|
color: #00AE42;
|
||||||
|
padding: 0px 10mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#Content
|
||||||
|
{
|
||||||
|
height: 76%;
|
||||||
|
padding: 20px 40px;
|
||||||
|
overflow-x: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
|
text-align: left;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 22px;
|
||||||
|
color: #464646;
|
||||||
|
position: relative;
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Content div
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#AcceptArea
|
||||||
|
{
|
||||||
|
height:12%;
|
||||||
|
padding: 0mm 10mm;
|
||||||
|
text-align: left;
|
||||||
|
display: flex;
|
||||||
|
justify-content:flex-end;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*--Btn--*/
|
||||||
|
.NormalBtn
|
||||||
|
{
|
||||||
|
padding: 3mm 9mm;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #00AE42;
|
||||||
|
border-radius: 16px;
|
||||||
|
color: #fff;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.NormalBtn:hover
|
||||||
|
{
|
||||||
|
background-color:#009638;
|
||||||
|
}
|
||||||
|
|
||||||
|
.GrayBtn
|
||||||
|
{
|
||||||
|
padding: 3mm 9mm;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #575757;
|
||||||
|
border-radius: 18px;
|
||||||
|
color: #575757;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.GrayBtn:hover
|
||||||
|
{
|
||||||
|
background-color:#E8E8E8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SmallBtn
|
||||||
|
{
|
||||||
|
padding: 2px 4mm;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #D9D9D9;
|
||||||
|
border-radius: 6px;
|
||||||
|
color: #000;
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SmallBtn:hover
|
||||||
|
{
|
||||||
|
background-color: #CCCCCC;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.SmallBtn_Green
|
||||||
|
{
|
||||||
|
padding: 2px 4mm;
|
||||||
|
font-size: 14px;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #00AE42;
|
||||||
|
border-radius: 6px;
|
||||||
|
color: #fff;
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SmallBtn_Green:hover
|
||||||
|
{
|
||||||
|
background-color: #009638;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---HyperLink---*/
|
||||||
|
.HyperLink
|
||||||
|
{
|
||||||
|
color: #00AE42;
|
||||||
|
text-decoration: underline;
|
||||||
|
font-weight: 700;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*----------------Light Mode-------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
>>>>>>> 41ae44c5f (ENH: icon before text)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue