File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -336,6 +336,13 @@ button.btn-password {
336336 border : 1px solid # ced4da ;
337337}
338338
339+ button .btn-inner {
340+ background-color : white;
341+ border-top : 1px solid # ced4da ;
342+ border-bottom : 1px solid # ced4da ;
343+ border-right : 1px solid # ced4da ;
344+ }
345+
339346.pwstrength_viewport_progress {
340347 margin-top : -10px ;
341348 margin-bottom : 15px ;
Original file line number Diff line number Diff line change @@ -61,15 +61,15 @@ Entry.prototype.formGroup = function(input) {
6161}
6262
6363Entry . prototype . btn = function ( name , icon ) {
64- return '<button id="btn_entry_' + name + '_' + this . id + '" type="button" class="btn btn-default">' +
65- '<span class="fa fa-' + icon + '"></span>' +
64+ return '<button id="btn_entry_' + name + '_' + this . id + '" type="button" class="btn btn-default btn-inner ">' +
65+ '<span class="fa fa-' + icon + '" style="color:#bbb" ></span>' +
6666 '</button>' ;
6767}
6868
6969Entry . prototype . input = function ( type , with_value ) {
7070 return '<div ' + ( type != 'file' ? 'class="input-group mif"' : '' ) + '>' +
7171 '<input ' +
72- ( type != 'file' ? 'class="form-control" ' : ' ' ) +
72+ ( type != 'file' ? 'class="form-control" style="border-right: none" ' : ' ' ) +
7373 'data-entry-type="' + this . type + '" ' +
7474 'type="' + type + '" ' +
7575 'name="' + this . id + '" ' +
You can’t perform that action at this time.
0 commit comments