This commit is contained in:
2026-03-03 16:30:57 +07:00
parent a13304e40e
commit c253e1a370
7569 changed files with 1324841 additions and 0 deletions
@@ -0,0 +1,55 @@
/* Context Menu */
.context-menu-icon {
&:before {
color: $black;
font: normal normal normal 15px/1 "Material Design Icons";
}
&.context-menu-icon-cut {
&:before {
content: '\F190';
}
}
&.context-menu-icon-edit {
&:before {
content: '\F3EF';
}
}
&.context-menu-icon-copy {
&:before {
content: '\F18F';
}
}
&.context-menu-icon-paste {
&:before {
content: '\F613';
}
}
&.context-menu-icon-delete {
&:before {
content: '\F6CB';
}
}
&.context-menu-icon-quit {
&:before {
content: '\F156';
}
}
}
.context-menu-list {
box-shadow: none;
border: 1px solid $border-color;
.context-menu-item {
span {
color: $black;
font-size: .75rem;
font-family: $type1-semibold;
}
&.context-menu-hover {
background: $black;
span {
color: $white;
}
}
}
}