| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent eb2f821 commit 5ec1a20
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,8 +9,10 @@ | |||
| 9 | 9 | <!-- source_link=lib/vm.js --> | |
| 10 | 10 | ||
| 11 | 11 | The `vm` module enables compiling and running code within V8 Virtual | |
| 12 | - Machine contexts. **The `vm` module is not a security mechanism. Do | ||
| 13 | - not use it to run untrusted code.** | ||
| 12 | + Machine contexts. | ||
| 13 | + | ||
| 14 | + <strong class="critical">The `vm` module is not a security | ||
| 15 | + mechanism. Do not use it to run untrusted code.</strong> | ||
| 14 | 16 | ||
| 15 | 17 | JavaScript code can be compiled and run immediately or | |
| 16 | 18 | compiled, saved, and run later. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,6 +11,7 @@ | |||
| 11 | 11 | --red1: #d60027; | |
| 12 | 12 | --red2: #d50027; | |
| 13 | 13 | --red3: #ca5010; | |
| 14 | + --red4: #ff7070; | ||
| 14 | 15 | --green1: #3e7a38; | |
| 15 | 16 | --green2: #5a8147; | |
| 16 | 17 | --green3: #64de64; | |
@@ -29,6 +30,7 @@ | |||
| 29 | 30 | --background-color-highlight: var(--white-smoke); | |
| 30 | 31 | --color-brand-primary: var(--gray6); | |
| 31 | 32 | --color-brand-secondary: var(--green1); | |
| 33 | + --color-critical: var(--red1); | ||
| 32 | 34 | --color-fill-app: var(--white); | |
| 33 | 35 | --color-fill-side-nav: var(--gray6); | |
| 34 | 36 | --color-links: var(--green1); | |
@@ -40,6 +42,7 @@ | |||
| 40 | 42 | ||
| 41 | 43 | .dark-mode { | |
| 42 | 44 | --background-color-highlight: var(--black2); | |
| 45 | + --color-critical: var(--red4); | ||
| 43 | 46 | --color-fill-app: var(--black1); | |
| 44 | 47 | --color-fill-side-nav: var(--black3); | |
| 45 | 48 | --color-links: var(--green5); | |
@@ -165,6 +168,10 @@ em code { | |||
| 165 | 168 | line-height: 1.5rem; | |
| 166 | 169 | } | |
| 167 | 170 | ||
| 171 | + .critical, .critical code { | ||
| 172 | + color: var(--color-critical); | ||
| 173 | + } | ||
| 174 | + | ||
| 168 | 175 | li.version-picker { | |
| 169 | 176 | position: relative; | |
| 170 | 177 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments