@@ -62,21 +62,22 @@ define([
62
62
63
63
idStr = `vp_apiblockClassOptionName${ uuid } ` ;
64
64
classStr = `vp-apiblock-input-class-name-${ uuid } ` ;
65
- blockCodeName = 'Name' ;
66
- inputStyleStr = 'width: 82 %' ;
65
+ blockCodeName = 'Class Name' ;
66
+ inputStyleStr = 'width: 100 %' ;
67
67
68
68
var nameDom = $ ( `<div class='vp-apiblock-blockoption-block
69
- vp-apiblock-style-flex-row-between'
70
- style='position:relative;'>
71
- <span class='vp-block-optiontab-name
72
- vp-apiblock-style-flex-column-center'>
69
+ vp-apiblock-style-flex-column-between'
70
+ style='position:relative; height: 50px; margin-bottom: 15px;'>
71
+ <div class='vp-block-optiontab-name
72
+ vp-apiblock-style-flex-column-center
73
+ vp-orange-text'>
73
74
${ blockCodeName }
74
- </span >
75
+ </div >
75
76
<input id='${ idStr } '
76
77
class='vp-apiblock-blockoption-input ${ classStr } '
77
78
style='${ inputStyleStr } '
78
79
value="${ name } "
79
- placeholder='input code line ' ></input>
80
+ placeholder='input class name ' ></input>
80
81
81
82
</div>` ) ;
82
83
@@ -90,21 +91,21 @@ define([
90
91
var uuid = thisBlock . getUUID ( ) ;
91
92
var parentClassName = thisBlock . getState ( STATE_parentClassName ) ;
92
93
93
- var name = 'Inheritance ' ;
94
+ var name = 'Super Class Name ' ;
94
95
var classStr = `vp-apiblock-input-param-${ 0 } -${ uuid } ` ;
95
- var inputStyleStr = 'width:66 %;' ;
96
+ var inputStyleStr = 'width:100 %;' ;
96
97
97
98
98
99
var nameDom = $ ( `<div class='vp-apiblock-blockoption-block
99
- vp-apiblock-style-flex-row -between'
100
- style='position:relative;'>
101
- <span class='vp-block-optiontab-name
102
- vp-apiblock-style-flex-column-center'>${ name } </span >
100
+ vp-apiblock-style-flex-column -between'
101
+ style='position:relative; height: 50px; '>
102
+ <div class='vp-block-optiontab-name
103
+ vp-apiblock-style-flex-column-center'>${ name } </div >
103
104
<input class='vp-apiblock-blockoption-input
104
105
${ classStr } '
105
106
style='${ inputStyleStr } '
106
107
value="${ parentClassName } "
107
- placeholder='input parent class' ></input>
108
+ placeholder='input super class name ' ></input>
108
109
109
110
</div>` ) ;
110
111
return nameDom ;
0 commit comments