photo/public/css/fixes.css

78 lines
1.5 KiB
CSS
Raw Normal View History

2019-11-08 12:08:34 +00:00
/* Fixes for data tables */
.dataTables_wrapper .dataTables_paginate .paginate_button {
2019-12-14 11:29:54 +00:00
padding: 0em 0em;
margin-left: 0px;
border: 0px solid;
2019-11-08 12:08:34 +00:00
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
2019-12-14 11:29:54 +00:00
border: 0px solid;
background: #fff;
2019-11-08 12:08:34 +00:00
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
2019-12-14 11:29:54 +00:00
box-shadow: 0 0 0px #fff;
background-color: #fff;
2019-11-08 12:08:34 +00:00
}
table.dataTable thead .sorting_asc {
2019-12-14 11:29:54 +00:00
background-image: none !important;
2019-11-08 12:08:34 +00:00
}
table.dataTable thead .sorting_desc {
2019-12-14 11:29:54 +00:00
background-image: none !important;
2019-11-08 12:08:34 +00:00
}
table.dataTable thead .sorting {
2019-12-14 11:29:54 +00:00
background-image: none !important;
2019-11-08 12:08:34 +00:00
}
/* Remove blue border from chrome on buttons */
/* Remove outline for non-keyboard :focus */
*:focus:not(.focus-visible) {
2019-12-14 11:29:54 +00:00
outline: none !important;
box-shadow: none !important;
2019-11-08 12:08:34 +00:00
}
/* Optional: Customize .focus-visible */
.focus-visible {
2019-12-14 11:29:54 +00:00
outline-color: lightgreen;
2019-11-08 12:08:34 +00:00
}
*:disabled {
2019-12-14 11:29:54 +00:00
cursor: not-allowed;
2019-11-08 12:08:34 +00:00
}
/* Login Box, icons when inputs disabled */
div.login-box .input-group-append .fa {
2019-12-14 11:29:54 +00:00
width: 2.5em;
2019-11-08 12:08:34 +00:00
}
div.login-box .input-group .input-group-append span.fa {
2019-12-14 11:29:54 +00:00
line-height: 0;
2019-11-08 12:08:34 +00:00
}
#favourite.selected {
2019-12-14 11:29:54 +00:00
color: orange;
2019-11-08 12:08:34 +00:00
}
#favourite:hover {
2019-12-14 11:29:54 +00:00
cursor: pointer;
2019-11-08 12:08:34 +00:00
}
body {
2019-12-14 11:29:54 +00:00
font-size: 0.65em;
2019-11-08 12:08:34 +00:00
}
/* Change brand logo on collapse */
body.sidebar-mini.sidebar-collapse img.brand-image.img-circle.elevation-3 {
2019-11-23 01:51:30 +00:00
/* margin-left: 0px; */
max-height: 27px;
border-radius: 0;
}
body.sidebar-mini img.brand-image.img-circle.elevation-3 {
/* margin-left: 0px; */
max-height: 27px;
border-radius: 0;
2019-12-14 11:29:54 +00:00
}