update
This commit is contained in:
4
static/admin/assets/scss/themes/_custom.scss
Normal file
4
static/admin/assets/scss/themes/_custom.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
/**=====================
|
||||
custom CSS Start
|
||||
==========================**/
|
||||
// you can add your custom css here
|
||||
7063
static/admin/assets/scss/themes/_dark.scss
Normal file
7063
static/admin/assets/scss/themes/_dark.scss
Normal file
File diff suppressed because it is too large
Load Diff
7318
static/admin/assets/scss/themes/_responsive.scss
Normal file
7318
static/admin/assets/scss/themes/_responsive.scss
Normal file
File diff suppressed because it is too large
Load Diff
456
static/admin/assets/scss/themes/_theme-customizer.scss
Normal file
456
static/admin/assets/scss/themes/_theme-customizer.scss
Normal file
@@ -0,0 +1,456 @@
|
||||
/**=====================
|
||||
59. Customizer CSS Start
|
||||
==========================**/
|
||||
.customizer-links {
|
||||
position: fixed;
|
||||
right: 00px;
|
||||
top: 50%;
|
||||
z-index: 3;
|
||||
transform: translate(0, -50%);
|
||||
box-shadow: 0 0 37px rgba(8, 21, 66, 0.1);
|
||||
|
||||
>.nav {
|
||||
border-radius: 8px;
|
||||
padding: 10px;
|
||||
background-color: $white;
|
||||
}
|
||||
|
||||
&.open {
|
||||
right: 330px;
|
||||
border-radius: 8px 0 0 8px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
padding: 0;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: rgba(115, 102, 255, 0.1);
|
||||
border-radius: 5px;
|
||||
transform: scale(0);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
top: 12px;
|
||||
border-width: 5px 0 5px 5px;
|
||||
border-left-color: lighten($primary-color, 25%);
|
||||
opacity: 0;
|
||||
transform: scale(0);
|
||||
color: #fff;
|
||||
left: -10px;
|
||||
z-index: 2;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
i {
|
||||
color: var(--theme-deafult);
|
||||
}
|
||||
|
||||
&:before,
|
||||
&:after {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
span {
|
||||
opacity: 1;
|
||||
right: 48px;
|
||||
transform: scale(1);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
}
|
||||
|
||||
&+.nav-link {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
span {
|
||||
position: absolute;
|
||||
right: -60px;
|
||||
width: max-content;
|
||||
text-align: right;
|
||||
padding: 7px 10px;
|
||||
display: block;
|
||||
top: 0;
|
||||
border-radius: 5px;
|
||||
transform: scale(0);
|
||||
transition: all 0.3s ease;
|
||||
opacity: 0;
|
||||
color: var(--theme-deafult);
|
||||
background-color: lighten($primary-color, 25%);
|
||||
box-shadow: 0 0 37px rgba(8, 21, 66, 0.1);
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 17px;
|
||||
padding: 8px 10px;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
margin: 0;
|
||||
color: gray;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.customizer-contain {
|
||||
direction: ltr;
|
||||
position: fixed;
|
||||
height: calc(100vh);
|
||||
top: 79px;
|
||||
width: 333px;
|
||||
right: -335px;
|
||||
background-color: $white;
|
||||
z-index: 8;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&.open {
|
||||
right: 0px;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 0 10px 1px rgba(68, 102, 242, 0.05);
|
||||
}
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
|
||||
&.active {
|
||||
box-shadow: 0 0 11px 5px rgba(226, 226, 226, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
h6 {
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.5px;
|
||||
margin-top: 12px;
|
||||
padding-top: 12px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.customizer-header {
|
||||
padding: 15px 25px;
|
||||
border-bottom: 1px solid $light-color;
|
||||
|
||||
.icon-close {
|
||||
position: absolute;
|
||||
font-size: 18px;
|
||||
cursor: pointer;
|
||||
font-weight: 900;
|
||||
right: 24px;
|
||||
color: var(--theme-deafult);
|
||||
}
|
||||
|
||||
h5 {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.customizer-body {
|
||||
padding: 15px 25px;
|
||||
max-height: calc(100vh - 200px);
|
||||
overflow-y: scroll;
|
||||
.fade {
|
||||
&:not(.show) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.unlimited-color-layout {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.btn {
|
||||
font-size: 15px;
|
||||
padding: 4px 20px;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 1px solid $gray-60;
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
border-radius: 5px;
|
||||
background-color: $white;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.layout-grid {
|
||||
&.customizer-mix {
|
||||
.color-layout {
|
||||
height: 70px;
|
||||
width: 80px;
|
||||
border: 1px solid #f6f7fb;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-pane {
|
||||
>h6 {
|
||||
&:first-child {
|
||||
padding-top: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
cursor: pointer;
|
||||
opacity: 0.9;
|
||||
|
||||
&.active {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.color-layout {
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
border-radius: 6px;
|
||||
display: inline-block;
|
||||
margin-right: 3px;
|
||||
border: 1px solid #b8b8b8;
|
||||
padding: 3px;
|
||||
|
||||
>div {
|
||||
background-color: #7366ff;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
&[data-attr="color-2"] {
|
||||
div {
|
||||
background-color: #4831D4;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-attr="color-3"] {
|
||||
div {
|
||||
background-color: #d64dcf;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-attr="color-4"] {
|
||||
div {
|
||||
background-color: #4c2fbf;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-attr="color-5"] {
|
||||
div {
|
||||
background-color: #7c4dff;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-attr="color-6"] {
|
||||
div {
|
||||
background-color: #3949ab;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dark {
|
||||
>li {
|
||||
background-color: #2f3c4e;
|
||||
}
|
||||
}
|
||||
|
||||
.main-layout {
|
||||
>li {
|
||||
height: 65px;
|
||||
width: 85px;
|
||||
border: 1px solid $light-color;
|
||||
border-radius: 10px;
|
||||
display: inline-block;
|
||||
|
||||
&+li {
|
||||
margin-left: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
.box-layout {
|
||||
.body {
|
||||
.badge {
|
||||
left: -14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-type,
|
||||
.sidebar-setting {
|
||||
>li {
|
||||
height: 70px;
|
||||
width: 85px;
|
||||
border: 1px solid $light-color;
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
|
||||
&+li {
|
||||
margin-left: 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-type {
|
||||
li {
|
||||
&[data-attr="normal-sidebar"] {
|
||||
.body {
|
||||
ul {
|
||||
li {
|
||||
&.bg-dark,
|
||||
&.sidebar {
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
display: block;
|
||||
}
|
||||
&.bg-light,
|
||||
&.body {
|
||||
height: calc(100% - 10px);
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.body-compact {
|
||||
.body {
|
||||
ul {
|
||||
li {
|
||||
&.body {
|
||||
width: calc(100% - 25px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-types {
|
||||
margin-bottom: -30px;
|
||||
|
||||
>li {
|
||||
display: block;
|
||||
width: unset;
|
||||
height: unset;
|
||||
margin-bottom: 30px;
|
||||
|
||||
.layout-img {
|
||||
h6 {
|
||||
padding-top: 0;
|
||||
text-transform: inherit;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.box-layout {
|
||||
background: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layout-grid:not(.customizer-color) {
|
||||
li {
|
||||
padding: 5px;
|
||||
|
||||
>.header {
|
||||
height: 9px;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
|
||||
ul {
|
||||
position: absolute;
|
||||
top: -8px;
|
||||
left: 5px;
|
||||
|
||||
>li {
|
||||
display: inline-block;
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
border-radius: 5px;
|
||||
top: calc(50% - 3px);
|
||||
background-color: var(--theme-deafult);
|
||||
margin-right: 2px;
|
||||
padding: 0;
|
||||
|
||||
&:nth-child(2) {
|
||||
background-color: var(--theme-secondary);
|
||||
}
|
||||
|
||||
&:nth-child(3) {
|
||||
background-color: $success-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
>.body {
|
||||
background-color: $light-color;
|
||||
height: calc(100% - 16px);
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
margin-top: 5px;
|
||||
text-align: center;
|
||||
line-height: 3.1;
|
||||
|
||||
ul {
|
||||
height: 100%;
|
||||
background-color: $white;
|
||||
|
||||
.sidebar {
|
||||
width: 18px;
|
||||
height: 100%;
|
||||
border-radius: 3px;
|
||||
display: inline-block;
|
||||
margin-right: 3px;
|
||||
padding: 0;
|
||||
|
||||
&.compact {
|
||||
width: 12px;
|
||||
|
||||
&~.body {
|
||||
width: calc(100% - 19px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.body {
|
||||
width: calc(100% - 25px);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 3px;
|
||||
|
||||
.badge {
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**=====================
|
||||
59.Customizer CSS Ends
|
||||
==========================**/
|
||||
333
static/admin/assets/scss/themes/_update.scss
Normal file
333
static/admin/assets/scss/themes/_update.scss
Normal file
@@ -0,0 +1,333 @@
|
||||
@import "utils/variables";
|
||||
// jsgrid css
|
||||
.jsgrid-filter-row {
|
||||
select, input {
|
||||
padding: 6px 10px;
|
||||
border: 1px solid $horizontal-border-color;
|
||||
background: $white;
|
||||
}
|
||||
}
|
||||
|
||||
// popover
|
||||
.popover {
|
||||
background-color: $white;
|
||||
border: none;
|
||||
-webkit-box-shadow: 0 0 20px rgba($primary-color, 0.1);
|
||||
box-shadow: 0 0 20px rgba($primary-color, 0.1);
|
||||
.popover-header {
|
||||
background-color: $theme-medium-color;
|
||||
color: $primary-color;
|
||||
border-bottom: none;
|
||||
}
|
||||
.popover-body {
|
||||
color: rgba(43,43,43,0.7);
|
||||
}
|
||||
}
|
||||
|
||||
// tooltip css start
|
||||
.tooltip {
|
||||
&.bs-tooltip-top {
|
||||
.tooltip-arrow {
|
||||
&:before {
|
||||
border-top-color:$theme-medium-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bs-tooltip-bottom {
|
||||
.tooltip-arrow {
|
||||
&:before {
|
||||
border-bottom-color: $theme-medium-color;
|
||||
border-top-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bs-tooltip-start {
|
||||
.tooltip-arrow {
|
||||
&:before {
|
||||
border-left-color: $theme-medium-color;
|
||||
border-top-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bs-tooltip-end {
|
||||
.tooltip-arrow {
|
||||
&:before {
|
||||
border-right-color: $theme-medium-color;
|
||||
border-top-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.tooltip-inner {
|
||||
background-color: $theme-medium-color;
|
||||
color: $primary-color;
|
||||
}
|
||||
.tooltip-arrow {
|
||||
&:before {
|
||||
border-top-color: $theme-medium-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// tooltip css end
|
||||
|
||||
// dropdown css start
|
||||
.dropdown-basic {
|
||||
.dropdown {
|
||||
.dropdown-content {
|
||||
a {
|
||||
padding: 6px 16px;
|
||||
color: $dark-editor-document;
|
||||
opacity: 0.6;
|
||||
font-size: 13px;
|
||||
border-top: 1px solid $light-semi-gray;
|
||||
background: $white;
|
||||
&:hover {
|
||||
background-color: $white;
|
||||
}
|
||||
}
|
||||
.dropdown-header {
|
||||
padding: 8px 16px;
|
||||
font-weight: 400;
|
||||
color: $dark-color;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropup {
|
||||
.dropup-content {
|
||||
top: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
// dropdown css end
|
||||
// accordian css start
|
||||
.default-according {
|
||||
.card {
|
||||
.card-header {
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
&.bg-primary,&.bg-secondary {
|
||||
.btn {
|
||||
border-color: $transparent-color;
|
||||
}
|
||||
}
|
||||
i {
|
||||
position: initial;
|
||||
font-size: 20px;
|
||||
display: inline-block;
|
||||
vertical-align: text-bottom;
|
||||
margin-right: 5px;
|
||||
[dir="rtl"] & {
|
||||
margin-right: unset;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
h5 {
|
||||
margin-top: 0;
|
||||
}
|
||||
.btn-link {
|
||||
padding: 12px 20px;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
letter-spacing: 0.7px;
|
||||
font-family: Roboto;
|
||||
border: 1px solid $light-semi-gray;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
[dir="rtl"] & {
|
||||
text-align: right;
|
||||
}
|
||||
@media (max-width: 575px) {
|
||||
padding: 12px 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.card-body {
|
||||
padding: 15px 20px;
|
||||
line-height: 22px;
|
||||
font-size: 13px;
|
||||
border-color: $light-semi-gray;
|
||||
border-radius: 0;
|
||||
border-bottom-left-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
color: $dark-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
// accordian css end
|
||||
|
||||
// tab-bootstrap css start
|
||||
.nav-tabs {
|
||||
border-bottom-color: $light-semi-gray;
|
||||
.nav-bottom {
|
||||
.nav-item {
|
||||
.nav-link.active {
|
||||
border-color: $light-semi-gray;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-tabs {
|
||||
.nav-item{
|
||||
&.show {
|
||||
.nav-link {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
.nav-link {
|
||||
color: $dark-color;
|
||||
&.active {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
&.nav-bottom {
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
&.active {
|
||||
border-color: $light-gray $light-gray #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropdown-menu {
|
||||
-webkit-box-shadow: 0 0 20px rgba(89,102,122,0.1);
|
||||
box-shadow: 0 0 20px rgba(89,102,122,0.1);
|
||||
border: none;
|
||||
padding: 0;
|
||||
z-index: 1;
|
||||
.dropdown-item {
|
||||
color: #2b2b2b;
|
||||
opacity: 0.6;
|
||||
font-size: 13px;
|
||||
padding: 6px 12px;
|
||||
border-top: 1px solid $light-semi-gray;
|
||||
background: $white;
|
||||
&:hover {
|
||||
background-color: $white;
|
||||
}
|
||||
}
|
||||
.dropdown-divider {
|
||||
margin: 0;
|
||||
border-top: 1px solid #cccccc;
|
||||
}
|
||||
}
|
||||
// tab-bootstrap css end
|
||||
|
||||
.border-tab{
|
||||
.nav-tabs {
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
&.active {
|
||||
border-bottom: 2px solid $primary-color;
|
||||
}
|
||||
&.show {
|
||||
border-bottom: 2px solid $primary-color;
|
||||
}
|
||||
&:focus {
|
||||
border-bottom: 2px solid $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tabbed-card {
|
||||
.nav-tabs {
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
top: 17px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.timeliny {
|
||||
.timeliny-dot::before {
|
||||
font-size: $btn-lg-font-size;
|
||||
}
|
||||
}
|
||||
.form-builder-header-1,.form-builder-2-header {
|
||||
background-color: #f7f6ff;
|
||||
.nav-primary {
|
||||
.nav-link {
|
||||
color: $dark-color;
|
||||
font-weight: 400;
|
||||
&.active {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
h6 {
|
||||
margin-bottom: 0;
|
||||
font-weight: 400;
|
||||
line-height: 36px;
|
||||
}
|
||||
}
|
||||
.component {
|
||||
.input-group {
|
||||
.btn {
|
||||
line-height: 32px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
}
|
||||
}
|
||||
.form-builder {
|
||||
.drag-box {
|
||||
fieldset {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.login-card {
|
||||
.login-main {
|
||||
.theme-form {
|
||||
label {
|
||||
font-size: $body-font-size;
|
||||
}
|
||||
.show-hide {
|
||||
top: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// faq css start
|
||||
.faq-accordion {
|
||||
.card {
|
||||
.btn-link {
|
||||
svg {
|
||||
margin-left: 20px;
|
||||
@media (max-width: 575.98px) {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// faq css end
|
||||
.job-filter {
|
||||
.faq-form {
|
||||
.form-control {
|
||||
font-size: 14px;
|
||||
}
|
||||
.search-icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
// editor css
|
||||
button[data-toggle="dropdown"] {
|
||||
&:hover {
|
||||
~ {
|
||||
.dropdown-menu {
|
||||
display: block;
|
||||
min-width: 300px;
|
||||
top: 35px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user