summaryrefslogtreecommitdiffstats
path: root/web-gui/calculator/source/class/calculator/theme/Appearance.js
blob: 1f5758c9d11f5f46a3eccaba58511b5417c3e230 (plain)
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
/* ************************************************************************

   Copyright:

   License:

   Authors:

************************************************************************ */

qx.Theme.define("calculator.theme.Appearance",
{
  extend : qx.theme.modern.Appearance,

  appearances :
  {
    "calc-button": {
      include: "button",
      alias: "button",
      style: function(states) {
        return {
          font: "large"
        };
      }
    },
    "calc-edit": {
      include: "textfield",
      alias: "textfield",
      style: function(states) {
        return {
          font: "large",
          textAlign: "right"
        };
      }
    }
  }
});