mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
fix monaco editor background
This commit is contained in:
@@ -165,7 +165,7 @@ short answer";
|
|||||||
}
|
}
|
||||||
<div class="col-auto me-3">
|
<div class="col-auto me-3">
|
||||||
<h3>
|
<h3>
|
||||||
Points: @quizPoints
|
Questions: @quizContext.Quiz?.Questions.Count() - Points: @quizPoints
|
||||||
</h3>
|
</h3>
|
||||||
@if (quizInCanvas != null)
|
@if (quizInCanvas != null)
|
||||||
{
|
{
|
||||||
@@ -188,7 +188,8 @@ short answer";
|
|||||||
|
|
||||||
<section
|
<section
|
||||||
class="flex-grow-1 w-100 d-flex justify-content-center border rounded-4 bg-dark-subtle"
|
class="flex-grow-1 w-100 d-flex justify-content-center border rounded-4 bg-dark-subtle"
|
||||||
style="min-height: 10%; max-width: 100%;">
|
style="min-height: 10%; max-width: 100%;"
|
||||||
|
>
|
||||||
|
|
||||||
@if(showHelp)
|
@if(showHelp)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -27,7 +27,6 @@
|
|||||||
AutomaticLayout = true,
|
AutomaticLayout = true,
|
||||||
FontFamily = "DM Mono, monospace",
|
FontFamily = "DM Mono, monospace",
|
||||||
FontSize = 16,
|
FontSize = 16,
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
get => _quizMarkdownInput;
|
get => _quizMarkdownInput;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
Console.WriteLine("setting");
|
|
||||||
_quizMarkdownInput = value;
|
_quizMarkdownInput = value;
|
||||||
|
|
||||||
try
|
try
|
||||||
@@ -52,8 +51,6 @@
|
|||||||
{
|
{
|
||||||
quizContext.StateHasChanged -= reload;
|
quizContext.StateHasChanged -= reload;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="d-flex flex-column h-100">
|
<div class="d-flex flex-column h-100">
|
||||||
|
|||||||
@@ -82,4 +82,12 @@ body {
|
|||||||
/* Handle on hover */
|
/* Handle on hover */
|
||||||
::-webkit-scrollbar-thumb:hover {
|
::-webkit-scrollbar-thumb:hover {
|
||||||
background: rgb(31, 31, 31);
|
background: rgb(31, 31, 31);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* monaco editor */
|
||||||
|
|
||||||
|
.monaco-editor-background, .monaco-editor .margin {
|
||||||
|
background-color: var(--bs-dark-bg-subtle) !important;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user