integarting admin dashboard

This commit is contained in:
UronShrestha
2024-07-12 12:51:02 +05:45
parent 2510de390a
commit 1550ab5d30
1758 changed files with 313760 additions and 10 deletions

View File

@ -0,0 +1,60 @@
/* Context Menu */
.context-menu-icon {
&:before {
color: $body-color;
font: normal normal normal 15px/1 "themify";
}
&.context-menu-icon-cut {
&:before {
content: '\e613';
}
}
&.context-menu-icon-edit {
&:before {
content: '\e61c';
}
}
&.context-menu-icon-copy {
&:before {
content: '\e6a3';
}
}
&.context-menu-icon-paste {
&:before {
content: '\e6c8';
}
}
&.context-menu-icon-delete {
&:before {
content: '\e605';
}
}
&.context-menu-icon-quit {
&:before {
content: '\e646';
}
}
}
.context-menu-list {
background: $card-bg;
box-shadow: none;
border: 1px solid $border-color;
.context-menu-item {
background: $card-bg;
span {
color: $body-color;
font-size: .75rem;
font-weight: 600;
}
&.context-menu-hover {
background: rgba($white, .3);
span {
color: $white;
}
}
}
.context-menu-separator {
border-bottom: 1px solid $border-color;
}
}