CHANGE_new_theme_ui_fixes - VADIVEL J 2025-09-29

This commit is contained in:
vadivelJ96 2025-09-29 15:59:17 +05:30
parent 69a6d819cc
commit 14a129dc3b

View File

@ -147,10 +147,9 @@
<!-- navbar -->
<style>
.nav-bar {
position: fixed !important;
z-index: 1000;
z-index: 2;
width: 90%;
margin-left: 120px !important;
background: #fff;
@ -188,32 +187,30 @@
<!-- tab-switch -->
<style>
.nav-pills ,
.nav-link
{
.nav-pills,
.nav-link {
background-color: #F5FFFF !important;
color : #00999E !important;
border-radius:10px;
color: #00999E !important;
border-radius: 10px;
}
.nav-pills
{
.nav-pills {
background-color: #F5FFFF !important;
color : #00999E !important;
box-shadow: 0px 2px 4px 0px #00000040 ;
padding-top: 5px ;
color: #00999E !important;
box-shadow: 0px 2px 4px 0px #00000040;
padding-top: 5px;
}
.nav-pills.nav-dash{
.nav-pills.nav-dash {
background-color: white !important;
box-shadow:none !important;
box-shadow: none !important;
}
.nav-pills .nav-dash {
background-color: #D4F5F6 !important;
border-radius: 10px;
color: black!important;
color: black !important;
}
@ -221,7 +218,7 @@
color: white !important;
background-color: #00999E !important;
font-size: small !important;
padding:8px 16px;
padding: 8px 16px;
border-radius: 10px !important;
box-shadow: 0px 2px 4px 0px #00000040;
@ -277,6 +274,12 @@
/* prevents flex bugs */
}
.left-side-menu ul li:hover>ul {
position: relative;
z-index: 99999 !important;
}
.img-inactive {
background-color: white;
@ -464,6 +467,7 @@
.secondary-title i {
font-size: 43px;
}
.secondary-title span {
position: relative;
}
@ -944,13 +948,15 @@
/* Applies only to tables with data-custom-table-css="table" */
table[data-custom-table-css="table"] tbody tr td {
padding: 8px 10px !important; /* spacing */
line-height: 20px; /* consistent spacing for text */
min-height: 40px; /* makes sense here if you use display:block */
vertical-align: middle; /* aligns text properly */
padding: 8px 10px !important;
/* spacing */
line-height: 20px;
/* consistent spacing for text */
min-height: 40px;
/* makes sense here if you use display:block */
vertical-align: middle;
/* aligns text properly */
}
</style>
@ -1320,6 +1326,7 @@
<!-- accordian -->
<style>
.card #collapseOne .card-body,
#collapseOne .card-body,
.card #collapseTwo .card-body,
.card #collapseThree .card-body,
.card #collapseFour .card-body {
@ -1420,7 +1427,6 @@
.fixed-header {
position: relative;
top: 0;
z-index: 1000;
background-color: #f8f9fa !important;
}
@ -1599,7 +1605,6 @@
<!-- tab swich scrollable -->
<style>
.tab-wrapper {
display: flex;
align-items: center;
@ -1610,18 +1615,28 @@
#myTab {
display: flex;
white-space: nowrap;
flex-wrap: nowrap; /* prevent wrapping */
overflow-x: auto; /* enable horizontal scroll */
flex-wrap: nowrap;
/* prevent wrapping */
overflow-x: auto;
/* enable horizontal scroll */
overflow-y: hidden;
white-space: nowrap; /* keep items on one line */
white-space: nowrap;
/* keep items on one line */
margin: 0;
padding: 0 40px; /* leave space for arrows */
padding: 0 40px;
/* leave space for arrows */
flex-grow: 1;
}
/* Hide scrollbars */
#myTab::-webkit-scrollbar { display: none; }
#myTab { -ms-overflow-style: none; scrollbar-width: none; }
#myTab::-webkit-scrollbar {
display: none;
}
#myTab {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scroll-btn {
background-color: #F4FFFF;
@ -1633,12 +1648,17 @@
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
z-index: 1;
color: #00999E;
}
.left-btn { left: 0; }
.right-btn { right: 0; }
.left-btn {
left: 0;
}
.right-btn {
right: 0;
}
</style>