node-red-contrib-uibuilder
Version:
Easily create data-driven web UI's for Node-RED. Single- & Multi-page. Multiple UI's. Work with existing web development workflows or mix and match with no-code/low-code features.
39 lines (34 loc) • 1.36 kB
CSS
/* NOTE: Not loading uibuilder CSS since bootstrap-vue supplies its own */
/* Load defaults from `<userDir>/node_modules/node-red-contrib-uibuilder/front-end/uib-brand.min.css`
* This is optional but reasonably complete and allows for light/dark mode switching.
*/
/* @import url("../uibuilder/uib-brand.min.css"); */
/* For this template, we only want the syntax highlight styles
/*#region Colours for Syntax Highlighted pre's */
.syntax-highlight {
color:white;
display:block;
background-color:black;
padding:5px 10px;
font-family: Consolas, "ui-monospace", "Lucida Console", monospace;
white-space: pre;
width: 99%;
max-height: 33em;
overflow: auto;
}
.syntax-highlight > .key {color:#ffbf35}
.syntax-highlight > .string {color:#5dff39;}
.syntax-highlight > .number {color:#70aeff;}
.syntax-highlight > .boolean {color:#b993ff;}
.syntax-highlight > .null {color:#93ffe4;}
.syntax-highlight > .undefined {color:#ff93c9;}
/*#endregion */
/* Hide toasts if bootstrap-vue not loaded for some reason */
.toaster { display: none; }
/* Cloak elements on initial load to hide the possible display of {{ ... }}
* Add to the app tag or to specific tags
* To display "loading...", change to the following:
* [v-cloak] > * { display:none }
* [v-cloak]::before { content: "loading…" }
*/
[v-cloak] { display: none; }