style: 同步样式

This commit is contained in:
Argo Zhang 2019-07-19 18:11:17 +08:00
parent 0f95ca819a
commit 6f2797dc80
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
3 changed files with 23 additions and 10 deletions

View File

@ -48,7 +48,8 @@
}
.card, .modal-footer, .form-control, .popover, .date .input-group-text,
.input-group .btn:not(.btn-secondary):not(.btn-primary):not(.btn-warning):not(.btn-info):not(.btn-danger) {
.input-group .btn:not(.btn-secondary):not(.btn-primary):not(.btn-warning):not(.btn-info):not(.btn-danger),
.form-select-input:hover {
border-color: #5198cb;
}
@ -74,7 +75,7 @@
color: #467fa7;
}
.breadcrumb > li + li:before, .breadcrumb, .pagination-detail {
.breadcrumb > li + li:before, .breadcrumb, .pagination-detail, .form-select-append {
color: #337ab7;
}

View File

@ -36,18 +36,18 @@
padding-bottom: 6px;
}
.form-inline select.form-control, .form-inline .select.form-control {
min-width: 194px;
.form-inline input.form-control, .form-inline .input-group, .form-select > input.form-control {
width: 194px;
}
.form-inline .input-group input.form-control {
width: 1%;
}
.modal-lg {
max-width: calc(90%);
}
.input-group.date {
width: 194px;
}
.btn-fill {
width: auto;
}

View File

@ -481,7 +481,7 @@ input.pending {
margin-left: 6px;
}
.btn span:last-child {
.btn i + span {
margin-left: 4px;
}
@ -554,7 +554,6 @@ input.pending {
margin-left: 5px;
}
.bootstrap-table .badge {
padding: 4px 6px;
}
@ -630,6 +629,15 @@ input.pending {
padding: 1px 5px;
}
.bootstrap-table .fixed-table-container .table.table-sm tbody td {
padding: 0.3rem;
}
/* fix bootstrap bottom margin */
.bootstrap-table .fixed-table-pagination > .pagination-detail, .bootstrap-table .fixed-table-pagination > .pagination {
margin-bottom: -5px;
}
.card-body .bootstrap-table {
margin-top: -10px;
}
@ -776,3 +784,7 @@ input.pending {
.alert-danger {
border-left: solid 4px #f78792;
}
label[for] {
cursor: pointer;
}