feat: sync mixly root files and common folder
This commit is contained in:
32
mixly/common/templates/html/dialog/firmware.html
Normal file
32
mixly/common/templates/html/dialog/firmware.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<style>
|
||||
div[m-id="{{d.mId}}"] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > .select2-container {
|
||||
margin: 10px 10px 20px 10px;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > .layui-btn-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > .layui-btn-container > button {
|
||||
font-family: "Lato", "Noto Sans SC";
|
||||
}
|
||||
</style>
|
||||
<div m-id="{{d.mId}}">
|
||||
<select class="type"></select>
|
||||
<div class="layui-btn-container">
|
||||
<button type="button" class="cancel layui-btn layui-btn-sm self-adaption-btn">{{d.cancel}}</button>
|
||||
<button type="button" class="burn layui-btn layui-btn-sm self-adaption-btn">{{d.burn}}</button>
|
||||
</div>
|
||||
</div>
|
||||
34
mixly/common/templates/html/dialog/new-file.html
Normal file
34
mixly/common/templates/html/dialog/new-file.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<style>
|
||||
div[m-id="{{d.mId}}"] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > .layer-message {
|
||||
margin: 10px 10px 20px 10px;
|
||||
min-width: 220px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > .layui-btn-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > .layui-btn-container > button {
|
||||
font-family: "Lato", "Noto Sans SC";
|
||||
}
|
||||
</style>
|
||||
<div m-id="{{d.mId}}">
|
||||
<div class="layer-message">{{d.message}}</div>
|
||||
<div class="layui-btn-container">
|
||||
<button type="button" class="cancel layui-btn layui-btn-sm self-adaption-btn">{{d.cancel}}</button>
|
||||
<button type="button" class="ok layui-btn layui-btn-sm self-adaption-btn">{{d.ok}}</button>
|
||||
</div>
|
||||
</div>
|
||||
17
mixly/common/templates/html/dialog/progress.html
Normal file
17
mixly/common/templates/html/dialog/progress.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<style>
|
||||
div[m-id="{{d.mId}}"] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 15px 10px 12px 10px;
|
||||
}
|
||||
|
||||
div[m-id="{{d.mId}}"] > progress {
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
<div m-id="{{d.mId}}">
|
||||
<progress class="mixly-progress"></progress>
|
||||
</div>
|
||||
12
mixly/common/templates/html/dialog/shadow-all.html
Normal file
12
mixly/common/templates/html/dialog/shadow-all.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<style>
|
||||
div[m-id="{{d.mId}}"] {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
background: transparent;
|
||||
z-index: 400;
|
||||
}
|
||||
</style>
|
||||
<div m-id="{{d.mId}}"></div>
|
||||
12
mixly/common/templates/html/dialog/shadow-nav.html
Normal file
12
mixly/common/templates/html/dialog/shadow-nav.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<style>
|
||||
div[m-id="{{d.mId}}"] {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
height: var(--nav-height);
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
z-index: 400;
|
||||
}
|
||||
</style>
|
||||
<div m-id="{{d.mId}}"></div>
|
||||
Reference in New Issue
Block a user