Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | 1x | export const ADVANCED_EDITOR_STYLES = String.raw`.djs-minimap {
background-color: var(--panel) !important;
border-color: var(--border) !important;
border-radius: 6px !important;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.djs-minimap .map {
width: 200px;
height: 120px;
}
.djs-minimap .toggle {
display: none !important;
}
.djs-minimap .viewport-dom {
border-color: var(--vscode-focusBorder, orange) !important;
}
.djs-minimap.open .overlay {
background: color-mix(in srgb, var(--panel) 20%, transparent) !important;
}
.bjs-drilldown {
width: 20px;
height: 20px;
padding: 0;
cursor: pointer;
border: none;
border-radius: 3px;
outline: none;
fill: var(--button-text, #fff);
background-color: var(--button, #0e639c);
}
.bjs-drilldown:hover {
background-color: var(--vscode-button-hoverBackground, color-mix(in srgb, var(--button) 85%, white));
}
.bjs-drilldown:focus-visible {
outline: 2px solid var(--vscode-focusBorder, #007fd4);
outline-offset: 1px;
}
.bjs-drilldown-empty {
display: none;
}
.selected .bjs-drilldown-empty {
display: inherit;
}
.bjs-breadcrumbs {
position: absolute;
display: none;
flex-wrap: wrap;
align-items: center;
top: 10px;
left: 10px;
padding: 6px 12px;
margin: 0;
font-family: var(--vscode-font-family);
font-size: 13px;
line-height: normal;
list-style: none;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
z-index: 10;
}
.bjs-breadcrumbs-shown .bjs-breadcrumbs {
display: flex;
}
.djs-palette-shown .bjs-breadcrumbs {
left: 90px;
}
.djs-palette-shown.djs-palette-two-column .bjs-breadcrumbs {
left: 140px;
}
.bjs-breadcrumbs li {
display: inline-flex;
padding-bottom: 0;
align-items: center;
}
.bjs-breadcrumbs li a {
cursor: pointer;
color: var(--vscode-textLink-foreground, var(--button));
}
.bjs-breadcrumbs li a:hover {
text-decoration: underline;
}
.bjs-breadcrumbs li:last-of-type a {
color: var(--text);
cursor: default;
text-decoration: none;
}
.bjs-breadcrumbs li:not(:first-child)::before {
content: '\203A';
padding: 0 6px;
color: var(--muted);
font-size: 16px;
}
.bjs-breadcrumbs .bjs-crumb {
display: inline-block;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.djs-direct-editing-parent {
color: var(--text) !important;
border-color: var(--vscode-focusBorder, #007fd4) !important;
}
.djs-direct-editing-content {
color: var(--text) !important;
}
.djs-direct-editing-parent[style*="background-color: rgb(255, 255, 255)"],
.djs-direct-editing-parent[style*="background-color: #ffffff"] {
background-color: var(--surface) !important;
}
@media (max-width: 900px) {
.layout {
grid-template-columns: 1fr;
grid-template-rows: minmax(0, 1fr) minmax(0, 40%);
}
.sidebar {
border-left: 0;
border-top: 1px solid var(--border);
}
.resize-handle {
display: none;
}
}`; |