Fixed table presentations with new bootstrap, added HTML::abbr(), added public access to Database::config(), enabled DB compression to be disabled in database.php

This commit is contained in:
Deon George
2016-05-03 11:01:28 +10:00
parent 113597f9eb
commit 8f659c50c6
13 changed files with 126 additions and 226 deletions

View File

@@ -1218,27 +1218,6 @@ a.list-group-item.active > .badge,
/*------------------------------------------------------------------
[ Pagination / .pagination ]
*/
ul.pagination li a {
padding: 0 10px;
margin-right: .25em;
margin-left: .25em;
color: #444;
line-height: 32px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
ul.pagination li.active a {
font-weight: 600;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
background-color: #F90;
border-color: #F90;
}
ul.pagination li.active a:hover {
background-color: #F90;
border-color: #F90;
}
.pager li {
margin-right: .25em;
margin-left: .25em;

View File

@@ -82,18 +82,24 @@ table .text-right {
font-weight: normal;
color: #000;
}
.form-group [class*=" fa-spin"] {
margin-left: -35px;
position: relative;
margin-top: 10px;
}
.navbar .navbar-form .navbar-search-addon [class*=" fa-spin"] {
padding: 10px 10px;
pointer-events: none;
right: 0px;
margin-top: 0px;
visibility: visible;
}
.navbar .navbar-form .navbar-search-addon i {
position: absolute;
padding: 10px 10px;
pointer-events: none;
}
.navbar .navbar-form .navbar-search-addon img {
position: absolute;
padding: 6px 10px;
pointer-events: none;
right: 0px;
visibility: hidden;
}
.form-group {
margin-bottom: 25px;
@@ -102,3 +108,13 @@ table .text-right {
ul.typeahead.dropdown-menu {
min-width: 560px;
}
legend [class^="fa-"],
legend [class*=" fa-"] {
display: inline-block;
margin-top: -3px;
width: 25px;
font-size: 16px;
color: #555;
vertical-align: middle;
}