diff options
author | Marc Englund <marc@vaadin.com> | 2012-11-23 16:34:31 +0200 |
---|---|---|
committer | Marc Englund <marc@vaadin.com> | 2012-11-23 16:34:31 +0200 |
commit | 92108336e9b52e82e9f421c6648b05636023c6d7 (patch) | |
tree | a951515c59cbaab71af6cce4096134e11e5ca332 /WebContent/VAADIN/themes/base/debug/debug.scss | |
parent | fa7da722662de5ead99226189ca963afebdf5446 (diff) | |
download | vaadin-framework-92108336e9b52e82e9f421c6648b05636023c6d7.tar.gz vaadin-framework-92108336e9b52e82e9f421c6648b05636023c6d7.zip |
Moved DebugConsole (and related) styles to separate mixin which is applied globally; the console is a widgetset-wide singleton, not usually to be styled. Fixes #10357
Change-Id: I39940fa92f748a6ef7a143797f06ef9d7d68ce36
Diffstat (limited to 'WebContent/VAADIN/themes/base/debug/debug.scss')
-rw-r--r-- | WebContent/VAADIN/themes/base/debug/debug.scss | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/WebContent/VAADIN/themes/base/debug/debug.scss b/WebContent/VAADIN/themes/base/debug/debug.scss new file mode 100644 index 0000000000..b6d22e8433 --- /dev/null +++ b/WebContent/VAADIN/themes/base/debug/debug.scss @@ -0,0 +1,32 @@ +/* +* Debug console related styles. NOTE that these are global, and not really part +* of a theme (the console is a sigleton). You can customize, but it will apply +* globally, e.g in a portal environment. +*/ +@mixin debug-globals { + .v-debug-console { + background: #fff; + opacity: .9; + border: 1px solid #000; + font-family: sans-serif; + } + .v-debug-console-caption { + background: #000; + border-bottom: 1px solid grey; + color: white; + font-weight: bold; + } + .v-debug-console-content { + font-size: x-small; + overflow: auto; + white-space: pre; + } + .v-debug-console-content input { + font-size: xx-small; + } + /* Debug style */ + .v-app .invalidlayout, + .v-app .invalidlayout * { + background: #f99 !important; + } +}
\ No newline at end of file |