-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathimport.html
More file actions
59 lines (55 loc) · 2.17 KB
/
import.html
File metadata and controls
59 lines (55 loc) · 2.17 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
<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 #c22;
}
#vp-wrapper #vp_userOption input[type="text"]:valid,
#vp-wrapper #vp_userOption input[type="text"]:focus {
border: default;
}
/* import library table style */
.vp-add-library,
.vp-add-alias {
width: 98%;
}
</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 vp-option-horizontal-table-layout" style="min-width: 250px; max-width: 450px;">
<colgroup><col width="*"/><col width="120px"/><col width="30px"/></colgroup>
<tr>
<th>Package Name</th>
<th>Alias</th>
<th></th>
</tr>
<tr>
<td colspan="3"><input type="button" id="vp_addLibrary" value="Add Library" style="width:100%;"/></td>
</tr>
</table>
</div>
</div>
</form>
</div>