Partial bootstrap 4.5 support
This commit is contained in:
Vendored
+90
-67
@@ -10,9 +10,24 @@ table tr .selected{
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/*
|
||||
* Bootstrap Overwrite
|
||||
*/
|
||||
body a, body a:visited {
|
||||
text-decoration: none;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.dropdown-toggle{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dropdown-toggle:hover{
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* Bootstrap Overwrite */
|
||||
|
||||
.card{
|
||||
border-radius: 0px !important;
|
||||
}
|
||||
|
||||
.form-group div{
|
||||
padding: 0px;
|
||||
@@ -31,9 +46,13 @@ body{
|
||||
font-size: 1pc;
|
||||
}
|
||||
|
||||
/*
|
||||
-------------------------------------------------------
|
||||
*/
|
||||
/* Prevent bootstrap to interfere with metis menu */
|
||||
.nav .active .collapse{
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
|
||||
/*-------------------------------------------------------*/
|
||||
|
||||
textarea{
|
||||
resize: vertical;
|
||||
@@ -59,18 +78,17 @@ textarea{
|
||||
/* BreadCrumbs -------------------------------- */
|
||||
|
||||
.breadcrumb{
|
||||
width:100%;
|
||||
width:100%;
|
||||
background-color:#ddd;
|
||||
}
|
||||
|
||||
/*
|
||||
_____ _____ _____ ______ ____ _____
|
||||
/ ____|_ _| __ \| ____| _ \ /\ | __ \
|
||||
| (___ | | | | | | |__ | |_) | / \ | |__) |
|
||||
\___ \ | | | | | | __| | _ < / /\ \ | _ /
|
||||
____) |_| |_| |__| | |____| |_) / ____ \| | \ \
|
||||
|_____/|_____|_____/|______|____/_/ \_\_| \_\
|
||||
|
||||
_____ _____ _____ ______ ____ _____
|
||||
/ ____|_ _| __ \| ____| _ \ /\ | __ \
|
||||
| (___ | | | | | | |__ | |_) | / \ | |__) |
|
||||
\___ \ | | | | | | __| | _ < / /\ \ | _ /
|
||||
____) |_| |_| |__| | |____| |_) / ____ \| | \ \
|
||||
|_____/|_____|_____/|______|____/_/ \_\_| \_\
|
||||
*/
|
||||
|
||||
#wrapper {
|
||||
@@ -79,17 +97,22 @@ textarea{
|
||||
|
||||
#sidebar-wrapper {
|
||||
background-color: #000 !important;
|
||||
height: 1000px;
|
||||
width: 200px;
|
||||
background-color: #fff;
|
||||
position: fixed!important;
|
||||
z-index: 10000;
|
||||
}
|
||||
|
||||
#wrapper.toggled {
|
||||
padding-left: 250px;
|
||||
/*padding-left: 250px;*/
|
||||
}
|
||||
|
||||
#sidebar-wrapper {
|
||||
position: fixed;
|
||||
left: 250px;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
height: 100%;
|
||||
margin-left: -250px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
@@ -106,7 +129,7 @@ textarea{
|
||||
#page-content-wrapper {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
padding: 15px;
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
#wrapper .toggled #page-content-wrapper {
|
||||
@@ -118,49 +141,6 @@ textarea{
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
|
||||
/* ------------------------------------------------------- */
|
||||
.logo{
|
||||
text-align: center;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.logo > img {
|
||||
width:50%;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------*/
|
||||
|
||||
.search-nav{
|
||||
text-align: center;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
|
||||
.search-nav > input{
|
||||
margin: 0 auto;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#side-second-menu{
|
||||
display:none;
|
||||
}
|
||||
|
||||
#side-menu li, #side-second-menu li{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
#side-menu li a, #side-second-menu li a{
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#side-menu li i, #side-second-menu li i{
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.nav-dropdown{
|
||||
margin-right: 20px !important;
|
||||
}
|
||||
|
||||
/* Sidebar responsiveness */
|
||||
@media(min-width:768px) {
|
||||
#wrapper {
|
||||
@@ -188,6 +168,49 @@ textarea{
|
||||
position: relative;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.menu-small{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.logo{
|
||||
text-align: center;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.logo > img {
|
||||
width:50%;
|
||||
}
|
||||
|
||||
.search-nav{
|
||||
text-align: center;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
|
||||
.search-nav > input{
|
||||
margin: 0 auto;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#side-second-menu{
|
||||
display:none;
|
||||
}
|
||||
|
||||
#side-menu li, #side-second-menu li{
|
||||
width:100%;
|
||||
}
|
||||
|
||||
#side-menu li a, #side-second-menu li a{
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#side-menu li i, #side-second-menu li i{
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.nav-dropdown{
|
||||
margin-right: 20px !important;
|
||||
}
|
||||
|
||||
/* Header ---------------------------*/
|
||||
@@ -201,15 +224,15 @@ textarea{
|
||||
|
||||
}
|
||||
|
||||
#menu-toggle:hover,
|
||||
#menu-toggle:hover,
|
||||
#menu-toggle:focus{
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
#progress{
|
||||
margin-bottom:0px;
|
||||
margin-bottom:0px;
|
||||
height:10px;
|
||||
border-radius: 0px !important;
|
||||
border-radius: 0px !important;
|
||||
}
|
||||
|
||||
/* HELPER ---------------------------- */
|
||||
@@ -227,7 +250,7 @@ textarea{
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
@media print {
|
||||
#sidebar-wrapper, #header{ display: none !important; }
|
||||
#wrapper { padding-left: 0px; }
|
||||
}
|
||||
@media print {
|
||||
#sidebar-wrapper, #header{ display: none !important; }
|
||||
#wrapper { padding-left: 0px; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user