-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Process SCSS as a part of the build script
- Loading branch information
Showing
9 changed files
with
259 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
.tales-beyond-extension-contextmenu { | ||
h2 { | ||
color: #ab79d6; | ||
margin: 0rem 0 0 0; | ||
display: flex; | ||
gap: .5rem; | ||
line-height: 1.2; | ||
align-items: center; | ||
font-size: 1rem; | ||
img { | ||
width: 1.5rem; | ||
} | ||
} | ||
|
||
.arrow { | ||
position: absolute; | ||
width: 0; | ||
height: 0; | ||
border-top: 10px solid transparent; | ||
border-bottom: 10px solid transparent; | ||
top: calc(50% - 10px); | ||
.left { | ||
border-right: 10px solid #27272c; | ||
left: -10px; | ||
} | ||
.right { | ||
border-left: 10px solid #27272c; | ||
right: -10px; | ||
} | ||
} | ||
.menu { | ||
position: absolute; | ||
z-index: 2000; | ||
background: #27272c; | ||
padding: 6px 8px; | ||
color: #c5c5ce; | ||
border-radius: .5em; | ||
box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.3); | ||
text-align: center; | ||
font-size: 12px; | ||
min-width: max-content; | ||
/* Required because of Popover API */ | ||
inset: 0px auto auto 0px; | ||
margin: 0; | ||
border: none; | ||
} | ||
|
||
.item { | ||
padding: 6px 8px; | ||
margin: 2px; | ||
line-height: 18px; | ||
|
||
&:hover { | ||
background-color: #ab79d6; | ||
color: #351d4a; | ||
cursor: pointer; | ||
} | ||
.advantage:not(:hover) { | ||
text-decoration: green wavy underline; | ||
} | ||
.disadvantage:not(:hover) { | ||
text-decoration: red wavy underline; | ||
} | ||
} | ||
} |
Oops, something went wrong.