Update to Laravel 8
This commit is contained in:
39
public/css/fixes.css
vendored
39
public/css/fixes.css
vendored
@@ -1,20 +1,29 @@
|
||||
body {
|
||||
font-size: 0.85em;
|
||||
}
|
||||
|
||||
/* Fixes for data tables */
|
||||
/* Fix pagination buttons */
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
||||
padding: 0em 0em;
|
||||
margin-left: 0px;
|
||||
border: 0px solid;
|
||||
padding: 0 0;
|
||||
margin-left: 0;
|
||||
border: 0 solid;
|
||||
}
|
||||
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
||||
border: 0px solid;
|
||||
border: 0 solid;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
||||
box-shadow: 0 0 0px #fff;
|
||||
box-shadow: 0 0 0 #fff;
|
||||
background-color: #fff;
|
||||
}
|
||||
.dataTables_scrollHeadInner {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
/* Remove multiple sorting images on tables */
|
||||
table.dataTable thead .sorting_asc {
|
||||
background-image: none !important;
|
||||
}
|
||||
@@ -27,6 +36,12 @@ table.dataTable thead .sorting {
|
||||
background-image: none !important;
|
||||
}
|
||||
|
||||
/* Fix textcolor on navbar focus */
|
||||
.form-control.form-control-navbar:focus {
|
||||
color: #111;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* Remove blue border from chrome on buttons */
|
||||
/* Remove outline for non-keyboard :focus */
|
||||
*:focus:not(.focus-visible) {
|
||||
@@ -35,9 +50,11 @@ table.dataTable thead .sorting {
|
||||
}
|
||||
|
||||
/* Optional: Customize .focus-visible */
|
||||
/*
|
||||
.focus-visible {
|
||||
outline-color: lightgreen;
|
||||
}
|
||||
*/
|
||||
|
||||
*:disabled {
|
||||
cursor: not-allowed;
|
||||
@@ -51,10 +68,14 @@ table.dataTable thead .sorting {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tag-selected {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.tag-selected:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.card-header h3.card-title {
|
||||
font-size: 1.0rem;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 0.85em;
|
||||
}
|
Reference in New Issue
Block a user