Skip to content

Commit eedfe07

Browse files
committed
better styling
1 parent c3562d2 commit eedfe07

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

arc/css/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

arc/js/entries/base.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ Entry.prototype.formGroup = function(input) {
6161
}
6262

6363
Entry.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

6969
Entry.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 + '" ' +

0 commit comments

Comments
 (0)