CSS/JS updates, initial page rendering

This commit is contained in:
Deon George
2020-08-22 22:26:06 +10:00
parent 4c90ce11f2
commit f8717480fd
14 changed files with 164 additions and 60278 deletions

File diff suppressed because one or more lines are too long

10671
public/css/app.css vendored

File diff suppressed because one or more lines are too long

47
public/css/fixes.css vendored
View File

@@ -1,65 +1,60 @@
/* Fixes for data tables */
.dataTables_wrapper .dataTables_paginate .paginate_button {
padding: 0em 0em;
margin-left: 0px;
border: 0px solid;
padding: 0em 0em;
margin-left: 0px;
border: 0px solid;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
border: 0px solid;
background: #fff;
border: 0px solid;
background: #fff;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
box-shadow: 0 0 0px #fff;
background-color: #fff;
box-shadow: 0 0 0px #fff;
background-color: #fff;
}
table.dataTable thead .sorting_asc {
background-image: none !important;
background-image: none !important;
}
table.dataTable thead .sorting_desc {
background-image: none !important;
background-image: none !important;
}
table.dataTable thead .sorting {
background-image: none !important;
background-image: none !important;
}
/* Remove blue border from chrome on buttons */
/* Remove outline for non-keyboard :focus */
*:focus:not(.focus-visible) {
outline: none !important;
box-shadow: none !important;
outline: none !important;
box-shadow: none !important;
}
/* Optional: Customize .focus-visible */
.focus-visible {
outline-color: lightgreen;
}
div.login-box .input-group .input-group-append span.fa {
line-height: 0;
outline-color: lightgreen;
}
*:disabled {
cursor: not-allowed;
}
/* Login Box, icons when inputs disabled */
div.login-box .input-group-append .fa {
width: 2.5em;
cursor: not-allowed;
}
#favourite.selected {
color: orange;
color: orange;
}
#favourite:hover {
cursor: pointer;
cursor: pointer;
}
.card-header h3.card-title {
font-size: 1.0rem;
}
body {
font-size: 0.85em;
font-size: 0.85em;
}

30
public/css/print.css vendored
View File

@@ -1,19 +1,19 @@
@media print {
body {
color: #333;
font-weight: 400;
font-size: 12px;
}
body {
color: #333;
font-weight: 400;
font-size: 0.85em;
}
label {
font-weight: bold;
}
label {
font-weight: bold;
}
tr { page-break-inside:avoid; }
thead { display:table-header-group; }
tfoot { display:table-footer-group; }
tr { page-break-inside:avoid; }
thead { display:table-header-group; }
tfoot { display:table-footer-group; }
.table-responsive {
overflow: visible !important;
}
}
.table-responsive {
overflow: visible !important;
}
}

BIN
public/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

49448
public/js/app.js vendored

File diff suppressed because one or more lines are too long