moved infocenter and sb admin js and css from include to public, get inactive parents/children oe is possible

This commit is contained in:
alex
2018-05-03 13:33:08 +02:00
parent 928fe549bb
commit e4cdac1acb
12 changed files with 21 additions and 67 deletions
+58
View File
@@ -0,0 +1,58 @@
/*custom styles for sb admin 2 template: https://startbootstrap.com/template-overviews/sb-admin-2/*/
/*optional header at right side of the main header*/
.headerright{
margin: 40px 0 20px -30px;
padding: 6.4px 0 9px;
border-bottom: 1px solid #eee;
}
/*change of panel colors (grey) */
.panel-primary > .panel-heading, .panel-primary > .panel-collapse > .panel-footer, .panel-primary > .panel-footer{
color: black;
background-color: #dfdfdf;
border-color: #dfdfdf;
}
.panel-primary{
border-color: #dfdfdf;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body{
border-top-color: #ddd;
}
/*arrow toggle for panels*/
.panel-heading .accordion-toggle:before{
/* symbol for "opening" panels */
font-family: 'Glyphicons Halflings'; /* essential for enabling glyphicon */
content: "\e114"; /* adjust as needed, taken from bootstrap.css */
/*float: right; */ /* adjust as needed */
margin: 15px;
color: grey; /* adjust as needed */
}
.panel-heading .accordion-toggle.collapsed:before{
/* symbol for "collapsed" panels */
content: "\e080"; /* adjust as needed, taken from bootstrap.css */
}
.panel-heading .accordion-toggle:hover, .panel-heading .accordion-toggle:active,
.panel-heading .accordion-toggle:focus{
text-decoration: none !important;
}
/*required asterisk for labels for required fields*/
.label-required:after
{
content:"\00a0*";
position: absolute;
top: 2px;
font-size: 1.3em;
}
/*table footer line (e.g. for sums)*/
.table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th
{
border-top-width: 2px;
}
@@ -0,0 +1,10 @@
/*stylesheet for sb admin 2 pages that do not have menu and toolbar*/
@import "admintemplate.css";
@media (min-width:768px) {
#page-wrapper {
margin-right: 250px;
margin-top: 8px;
border: 1px solid #e7e7e7;
}
}
@@ -0,0 +1,60 @@
/**
restyling mottie tablesorter default theme to fit with bootstrap sb admin template
PLEASE DO ONLY INCLUDE WHEN USING MOTTIE TABLESORTER DEFAULT THEME AND BOOTSTRAP SB ADMIN 2 TEMPLATE
**/
/* Reset font of tables */
.tablesorter-default {
font: unset !important;
}
/* Reset table colors and backgrounds on hover */
.tablesorter-default tbody > tr:hover > td {
color: unset !important;
background-color: unset !important;
}
/* Remove black border at bottom of table header */
.tablesorter-header {
border-bottom: #ccc 2px solid !important;
}
/* set colors of zebra widget */
table.tablesorter tbody tr.even td, table.tablesorter tbody tr.even:hover, table.tablesorter tbody tr.even td:hover{
background-color: #ffff;
}
table.tablesorter tbody tr.odd td, table.tablesorter tbody tr.odd:hover, table.tablesorter tbody tr.odd td:hover{
background-color: #f5f5f5;
}
/* colors for hover over table rows and clicked rows*/
table.tablesort-hover tr:hover, .tablesort-active{
background-color: #dfdfdf !important;
}
/* Remove background color from filter row */
.tablesorter-default .tablesorter-filter-row td {
background-color: white !important;
}
/* Make filter row more condensed */
.tablesorter-default input.tablesorter-filter, .tablesorter-default select.tablesorter-filter {
margin: 0px auto;
padding: 0px;
}
/* Add cursor pointer for pager icons */
.pager i {
cursor: pointer;
}
/* Stripes color of table */
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #d1d1d1;
}
/* bring datepicker to front */
#ui-datepicker-div{
z-index: 9999 !important;
}