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,55 @@
/* Context Menu */
.context-menu-icon {
&:before {
color: $black;
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 {
box-shadow: none;
border: 1px solid $border-color;
.context-menu-item {
span {
color: $black;
font-size: .75rem;
font-weight: 600;
}
&.context-menu-hover {
background: $black;
span {
color: $white;
}
}
}
}