-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathOxygen.js
40 lines (34 loc) · 1.32 KB
/
Oxygen.js
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
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Sebastian Werner (wpbasti)
* Andreas Ecker (ecker)
************************************************************************ */
/**
* Oxygen icons
*
* @asset(qx/icon/Oxygen/22/actions/dialog-cancel.png)
* @asset(qx/icon/Oxygen/22/actions/dialog-ok.png)
* @asset(qx/icon/Oxygen/48/status/dialog-information.png)
* @asset(qx/icon/Oxygen/48/status/dialog-error.png)
* @asset(qx/icon/Oxygen/48/status/dialog-warning.png)
* @asset(qx/icon/Oxygen/16/apps/office-calendar.png)
*/
qx.Theme.define("dialog.theme.icon.Oxygen",
{
title : "Oxygen",
aliases : {
"icon" : "qx/icon/Oxygen",
"dialog.icon.cancel" : "qx/icon/Oxygen/22/actions/dialog-cancel.png",
"dialog.icon.ok" : "qx/icon/Oxygen/22/actions/dialog-ok.png",
"dialog.icon.info" : "qx/icon/Oxygen/48/status/dialog-information.png",
"dialog.icon.error" : "qx/icon/Oxygen/48/status/dialog-error.png",
"dialog.icon.warning" : "qx/icon/Oxygen/48/status/dialog-warning.png"
}
});