143 lines
No EOL
1.9 KiB
CSS
143 lines
No EOL
1.9 KiB
CSS
/* Tables */
|
|
|
|
.table {
|
|
background-color: #F4F4F4;
|
|
}
|
|
|
|
.table-striped tbody tr:nth-of-type(odd) {
|
|
background-color: rgba(0, 0, 0, 0.02);
|
|
}
|
|
|
|
.table thead th {
|
|
font-size: 0.8em;
|
|
text-transform: uppercase!important;
|
|
}
|
|
|
|
.table td {
|
|
border-top: none;
|
|
}
|
|
|
|
|
|
/* Common elements */
|
|
|
|
a {
|
|
color: #1A66A6;
|
|
}
|
|
|
|
a:hover {
|
|
color: #1A66A6;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.bg-success {
|
|
background-color: #8BC34A!important;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #06A8C5!important;
|
|
}
|
|
|
|
.text-danger {
|
|
color: #D40000!important;
|
|
}
|
|
|
|
a.text-danger:focus,
|
|
a.text-danger:hover {
|
|
color: #790000!important;
|
|
}
|
|
|
|
|
|
/* Buttons */
|
|
|
|
.btn {
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: .25rem .75rem;
|
|
}
|
|
|
|
.btn-save {
|
|
color: #5b8e09;
|
|
}
|
|
|
|
.btn-save:hover {
|
|
color: #466d07;
|
|
}
|
|
|
|
.btn-cancel:hover {
|
|
color: #000;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0378D3;
|
|
border-color: #0378D3;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #0270c4;
|
|
border-color: #0270c4;
|
|
}
|
|
|
|
.btn-primary-disabled {
|
|
background-color: #71b6ff !important;
|
|
border-color: #71b6ff !important;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #6c757d;
|
|
border-color: #6c757d;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #5a6268;
|
|
border-color: #5a6268;
|
|
}
|
|
|
|
.btn-light {
|
|
color: #212529;
|
|
background-color: #f3f3f3;
|
|
border-color: #ced4d9;
|
|
}
|
|
|
|
.btn-light.focus,
|
|
.btn-light:focus {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.btn.focus,
|
|
.btn:focus {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
|
|
/* Form */
|
|
|
|
.form-control:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
|
|
/* Right sidebar Options */
|
|
|
|
#sidebarOptions .card {
|
|
background: none;
|
|
border: none;
|
|
}
|
|
|
|
#sidebarOptions a {
|
|
color: #212529;
|
|
}
|
|
|
|
.nav-link {
|
|
border-color: #f9f9f9;
|
|
}
|
|
|
|
.nav-link.active {
|
|
background-color: #f9f9f9 !important;
|
|
border-color: #dee2e6 #dee2e6 #f9f9f9 !important;
|
|
}
|
|
|
|
.tab-content>.active {
|
|
background-color: #f9f9f9 !important;
|
|
} |