forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimport.html
More file actions
74 lines (70 loc) · 2.46 KB
/
Copy pathimport.html
File metadata and controls
74 lines (70 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<div class="vp-option-page" id="vp_optImport">
<style>
/* 화살표 접이박스 */
#vp-wrapper .vp-option-page .vp-accordion-header {
font-weight: bold;
}
#vp-wrapper .vp-option-page .vp-arrow-right,
#vp-wrapper .vp-option-page .vp-arrow-down {
background-repeat: no-repeat;
}
#vp-wrapper .vp-option-page .vp-spread {
min-height: 100px;
}
#vp-wrapper .vp-option-page .vp-minimize {
height: 25px;
overflow: hidden;
}
#vp-wrapper .vp-common-block {
border-bottom: 1px solid darkgray;
}
/* empty required input */
#vp-wrapper #vp_userOption input[type="text"]:invalid{
border: 1px solid var(--highlight-color);
}
#vp-wrapper #vp_userOption input[type="text"]:valid,
#vp-wrapper #vp_userOption input[type="text"]:focus {
border: default;
}
/* import library table style */
#vp_tblImport {
width: 100%;
min-width: 250px;
max-width: 450px;
}
#vp_tblImport tr {
height: 30px;
line-height: 30px;
}
.vp-add-library,
.vp-add-alias {
width: 100%;
height: 30px;
line-height: 30px;
}
#vp_addLibrary {
width: 88px;
margin-top: 15px;
}
</style>
<!-- Import 기능 -->
<form id="vp_optionForm">
<div class="vp-accordion-container vp-accordion-open">
<div class="vp-accordion-header"><span class="vp-accordion-indicator"></span><span class="vp-accordion-caption" data-caption-id="TODO:Variable">Required Input & Output</span></div>
<div id="vp_userOption" class="vp-list-container vp-accordion-content">
<input type="hidden" id="vp_importMeta"/>
<table id="vp_tblImport" class="vp-tbl-basic w90">
<colgroup><col width="40%"/><col width="40%"/><col width="*"/></colgroup>
<tr>
<th>Library Name</th>
<th>Alias</th>
<th></th>
</tr>
<tr>
<td colspan="3"><input type="button" id="vp_addLibrary" value="+ Library" class="vp-button"/></td>
</tr>
</table>
</div>
</div>
</form>
</div>