2025-05-30 19:59:02 +00:00
|
|
|
:root {
|
|
|
|
|
--shadow_color: rgb(171 200 214);
|
|
|
|
|
--active_color: rgb(173, 228, 253);
|
|
|
|
|
--error-color: #ff000024;
|
|
|
|
|
--warn-color: #fff6d5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html, body, .app {
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
height: 0.8em;
|
|
|
|
|
width: 0.8em;
|
|
|
|
|
min-width: 0.8em;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border-top: none !important;
|
|
|
|
|
border: 2px solid;
|
|
|
|
|
animation: rotate 0.6s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes rotate {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.app::backdrop {
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.root {
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-areas:
|
|
|
|
|
"code"
|
|
|
|
|
"bottom"
|
|
|
|
|
"statusbar";
|
2025-08-07 15:58:56 +00:00
|
|
|
grid-template-rows: auto 1fr auto;
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor_container, .bottom, .statusbar {
|
|
|
|
|
box-shadow: 1px 1px 3px 0px var(--shadow_color);
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor_container, .bottom, .statusbar {
|
|
|
|
|
margin: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor_container:focus-within,
|
|
|
|
|
.bottom:focus-within,
|
|
|
|
|
dialog {
|
|
|
|
|
outline: none;
|
|
|
|
|
box-shadow: 1px 1px 6px 3px var(--shadow_color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab_content:focus-within, .problems_container:focus-within {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor_container {
|
|
|
|
|
height: 55vh;
|
|
|
|
|
resize: vertical;
|
2025-08-07 15:58:56 +00:00
|
|
|
overflow: auto;
|
2025-05-30 19:59:02 +00:00
|
|
|
position: relative;
|
|
|
|
|
grid-area: code;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
/*
|
|
|
|
|
Makes cursor visible, but not blinking when focus is not in the editor. We
|
|
|
|
|
make it like that so transitions are visible when navigating calltree view
|
|
|
|
|
*/
|
|
|
|
|
.editor_container:not(:focus-within) .monaco-editor .cursor {
|
|
|
|
|
visibility: visible !important;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-30 19:59:02 +00:00
|
|
|
/* ace markers */
|
|
|
|
|
|
|
|
|
|
.selection {
|
2025-08-07 15:58:56 +00:00
|
|
|
background-color: rgb(148, 227, 191);
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.evaluated_ok {
|
2025-08-07 15:58:56 +00:00
|
|
|
background-color: rgba(195, 233, 251, 0.5);
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
.evaluated_error {
|
|
|
|
|
background-color: var(--error-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* end of ace markers */
|
|
|
|
|
|
|
|
|
|
.eval_error {
|
|
|
|
|
padding: 0em 1em;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tabs */
|
|
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
|
font-family: system-ui;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs > .tab {
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
padding: 0.3em 1em;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs > .tab.active {
|
|
|
|
|
background-color: rgb(225, 244, 253);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* debugger */
|
|
|
|
|
|
|
|
|
|
.bottom {
|
2025-08-07 15:58:56 +00:00
|
|
|
font-family: var(--code-font-family);
|
|
|
|
|
line-height: var(--code-line-height);
|
2025-05-30 19:59:02 +00:00
|
|
|
grid-area: bottom;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
display: grid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.debugger {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.debugger_wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.debugger, .problems_container {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logs, .io_trace {
|
|
|
|
|
padding-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logs .log {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logs .log.active {
|
|
|
|
|
background-color: var(--active_color) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logs .log.error {
|
|
|
|
|
background-color: var(--error-color);
|
|
|
|
|
color: black !important; /* override red color that is set for calltree */
|
|
|
|
|
&.native {
|
|
|
|
|
color: grey !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logs .log.warn {
|
|
|
|
|
background-color: var(--warn-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab_content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.callnode {
|
|
|
|
|
/* This makes every callnode be the size of the the longest one, so
|
|
|
|
|
* every callnode is clickable anywhere in the calltree view, and
|
|
|
|
|
* background for active callnodes is as wide as the entire container.
|
|
|
|
|
* Useful when scrolling very wide call trees */
|
|
|
|
|
min-width: fit-content;
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
.callnode .active {
|
|
|
|
|
background-color: var(--active_color);
|
|
|
|
|
}
|
|
|
|
|
.call_el {
|
|
|
|
|
/*
|
|
|
|
|
Make active callnode background start from the left of the calltree
|
|
|
|
|
view
|
|
|
|
|
*/
|
|
|
|
|
margin-left: -1000vw;
|
|
|
|
|
padding-left: 1000vw;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.call_el .expand_icon, .call_el .expand_icon_placeholder {
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
padding-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.call_header {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.call_header.error {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
.call_header.error.native {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
.call_header.native {
|
|
|
|
|
font-style: italic;
|
|
|
|
|
color: grey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.call_header .loop_step {
|
|
|
|
|
color: grey;
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
margin-right: 0.3em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* io trace */
|
|
|
|
|
.io_trace .event {
|
|
|
|
|
border-radius: 1em;
|
|
|
|
|
line-height: 2em;
|
|
|
|
|
padding: 0.1em 0.5em;
|
|
|
|
|
background-color: var(--active_color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* problems view */
|
|
|
|
|
.problem a {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* files */
|
|
|
|
|
|
|
|
|
|
.files_container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
.file_tab_container {
|
|
|
|
|
visibility: visible;
|
2025-05-30 19:59:02 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-08-07 15:58:56 +00:00
|
|
|
overflow: auto;
|
|
|
|
|
&.hidden {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files {
|
2025-08-07 15:58:56 +00:00
|
|
|
font-family: var(--code-font-family);
|
|
|
|
|
line-height: var(--code-line-height);
|
2025-05-30 19:59:02 +00:00
|
|
|
overflow: auto;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files .file {
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files > .file {
|
|
|
|
|
margin-left: 0em !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files .file_title {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-left: -100vw;
|
|
|
|
|
padding-left: 100vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files .file_title.active {
|
|
|
|
|
background-color: var(--active_color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files .file_title .select_entrypoint {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
width: 3em;
|
|
|
|
|
margin-right: 0.7em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.files .file_title .icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
width: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
.file_tabs {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
font-family: system-ui;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.tab {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 0.8em;
|
|
|
|
|
margin: 0.2em;
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background-color: rgb(225, 244, 253);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
|
color: grey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.file_access {
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-30 19:59:02 +00:00
|
|
|
.file_actions {
|
|
|
|
|
font-family: system-ui;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
background-color: rgb(225 244 253 / 80%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.file_actions .file_action {
|
|
|
|
|
margin-right: 2em;
|
2025-08-07 15:58:56 +00:00
|
|
|
&.disabled {
|
|
|
|
|
color: grey;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.file_actions .select_entrypoint_title {
|
|
|
|
|
width: 3em;
|
|
|
|
|
text-align: center;
|
2025-08-07 15:58:56 +00:00
|
|
|
margin-left: auto;
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* value_explorer */
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_container.is_not_dom_el {
|
2025-08-07 15:58:56 +00:00
|
|
|
visibility: visible !important; /* prevent monaco editor from hiding it */
|
2025-05-30 19:59:02 +00:00
|
|
|
height: 0px;
|
2025-08-07 15:58:56 +00:00
|
|
|
font-family: var(--code-font-family);
|
|
|
|
|
line-height: var(--code-line-height);
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_container.is_dom_el {
|
|
|
|
|
padding: 1em;
|
2025-08-07 15:58:56 +00:00
|
|
|
/* Make it on top of monaco editor */
|
|
|
|
|
z-index: 1;
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_wrapper {
|
|
|
|
|
/* preserve wrapper from getting clicks for code line left to it */
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_container.is_not_dom_el .embed_value_explorer_wrapper {
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_content {
|
|
|
|
|
pointer-events: initial;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
max-width: fit-content;
|
|
|
|
|
background-color: white;
|
|
|
|
|
box-shadow: 1px 2px 9px -1px var(--shadow_color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_content:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
box-shadow: 1px 2px 11px 1px var(--shadow_color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.embed_value_explorer_content > .value_explorer_node {
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value_explorer_node {
|
|
|
|
|
margin-left: 1em;
|
2025-08-07 15:58:56 +00:00
|
|
|
&.is_calltree_node_explorer > .value_explorer_header {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
&.is_calltree_node_explorer > .value_explorer_node {
|
|
|
|
|
margin-left: 0em;
|
|
|
|
|
}
|
2025-05-30 19:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value_explorer_header {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding-right: 1em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value_explorer_header .expand_icon {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value_explorer_header.active {
|
|
|
|
|
background-color: rgb(148, 227, 191);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value_explorer_key {
|
|
|
|
|
color: rgb(150, 0, 128);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* status */
|
|
|
|
|
|
|
|
|
|
.statusbar {
|
|
|
|
|
font-family: system-ui;
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
grid-area: statusbar;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.statusbar .spinner {
|
|
|
|
|
margin-right: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
.status {
|
2025-05-30 19:59:02 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
|
}
|
|
|
|
|
.status {
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
.statusbar_action, .options {
|
2025-05-30 19:59:02 +00:00
|
|
|
margin-right: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.statusbar_action.first {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.open_app_window_button {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.open_app_window_tooltip {
|
|
|
|
|
padding: 1em;
|
|
|
|
|
position: absolute;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
bottom: 100%;
|
|
|
|
|
border: none;
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
background-color: rgb(120 206 247);
|
|
|
|
|
border-radius: 21px;
|
|
|
|
|
transform: scale(0);
|
|
|
|
|
transition: transform 0.3s;
|
|
|
|
|
}
|
|
|
|
|
.open_app_window_tooltip.on {
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
.open_app_window_tooltip:after {
|
|
|
|
|
content: '';
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 20px solid transparent;
|
|
|
|
|
border-right: 20px solid transparent;
|
|
|
|
|
border-top: 20px solid rgb(120 206 247);
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -20px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.options {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
.options > * {
|
|
|
|
|
margin: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show_help, .github {
|
|
|
|
|
margin: 0em 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.statusbar_button, .upload_button {
|
|
|
|
|
border: none;
|
|
|
|
|
color: white;
|
|
|
|
|
background: rgb(23 166 236);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.statusbar_button {
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
margin-left: 1em;
|
|
|
|
|
&:last-of-type {
|
|
|
|
|
margin: 0em 0.5em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.statusbar_button[disabled] {
|
|
|
|
|
background: grey;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
.share_dialog {
|
|
|
|
|
font-family: system-ui;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-30 19:59:02 +00:00
|
|
|
.share_dialog input, .share_dialog button {
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share_dialog button {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
height: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-07 15:58:56 +00:00
|
|
|
.share_name {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
label {
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
}
|
|
|
|
|
input {
|
|
|
|
|
margin-right: 2em;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
margin: 1em 0em 2em 0em;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-30 19:59:02 +00:00
|
|
|
dialog {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog::backdrop {
|
|
|
|
|
background-color: rgb(225 244 253 / 80%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help_dialog[open] {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0;
|
|
|
|
|
min-width: 70%;
|
|
|
|
|
min-height: 70%;
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help {
|
|
|
|
|
padding: 2em;
|
|
|
|
|
border-spacing: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help th {
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help th.key {
|
|
|
|
|
width: 5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help td.key {
|
|
|
|
|
background-color: rgb(225, 244, 253, 0.5);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help_dialog form {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel:not([open]) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel[open] {
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px 0px 0px auto;
|
|
|
|
|
height: 100%;
|
|
|
|
|
max-height: 100%;
|
|
|
|
|
animation: slide-in 0.2s ease-in forwards;
|
|
|
|
|
&::backdrop {
|
|
|
|
|
background-color: rgb(225 244 253 / 60%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-in{
|
|
|
|
|
0% {
|
|
|
|
|
transform: translateX(100%);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-08-07 15:58:56 +00:00
|
|
|
|
|
|
|
|
.display-none {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|