summaryrefslogtreecommitdiffstats
path: root/web-gui/logging/source/class/logging/theme
diff options
context:
space:
mode:
Diffstat (limited to 'web-gui/logging/source/class/logging/theme')
-rw-r--r--web-gui/logging/source/class/logging/theme/Appearance.js18
-rw-r--r--web-gui/logging/source/class/logging/theme/Color.js18
-rw-r--r--web-gui/logging/source/class/logging/theme/Decoration.js18
-rw-r--r--web-gui/logging/source/class/logging/theme/Font.js18
-rw-r--r--web-gui/logging/source/class/logging/theme/Theme.js21
5 files changed, 93 insertions, 0 deletions
diff --git a/web-gui/logging/source/class/logging/theme/Appearance.js b/web-gui/logging/source/class/logging/theme/Appearance.js
new file mode 100644
index 0000000..1b0ba64
--- /dev/null
+++ b/web-gui/logging/source/class/logging/theme/Appearance.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("logging.theme.Appearance",
+{
+ extend : qx.theme.modern.Appearance,
+
+ appearances :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/logging/source/class/logging/theme/Color.js b/web-gui/logging/source/class/logging/theme/Color.js
new file mode 100644
index 0000000..fb7ac5e
--- /dev/null
+++ b/web-gui/logging/source/class/logging/theme/Color.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("logging.theme.Color",
+{
+ extend : qx.theme.modern.Color,
+
+ colors :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/logging/source/class/logging/theme/Decoration.js b/web-gui/logging/source/class/logging/theme/Decoration.js
new file mode 100644
index 0000000..4601f7f
--- /dev/null
+++ b/web-gui/logging/source/class/logging/theme/Decoration.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("logging.theme.Decoration",
+{
+ extend : qx.theme.modern.Decoration,
+
+ decorations :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/logging/source/class/logging/theme/Font.js b/web-gui/logging/source/class/logging/theme/Font.js
new file mode 100644
index 0000000..0875c53
--- /dev/null
+++ b/web-gui/logging/source/class/logging/theme/Font.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("logging.theme.Font",
+{
+ extend : qx.theme.modern.Font,
+
+ fonts :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/logging/source/class/logging/theme/Theme.js b/web-gui/logging/source/class/logging/theme/Theme.js
new file mode 100644
index 0000000..87d14f7
--- /dev/null
+++ b/web-gui/logging/source/class/logging/theme/Theme.js
@@ -0,0 +1,21 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("logging.theme.Theme",
+{
+ meta :
+ {
+ color : logging.theme.Color,
+ decoration : logging.theme.Decoration,
+ font : logging.theme.Font,
+ icon : qx.theme.icon.Tango,
+ appearance : logging.theme.Appearance
+ }
+}); \ No newline at end of file