Subversion Repositories Integrator Subversion

Rev

Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
179 espaco 1
body {
2
  .keypad-popup {
3
    background: $inputContentPanelBg;
4
    color: $inputContentPanelTextColor;
5
    padding: 0;
6
    border: $inputOverlayBorder;
7
    margin: 0;
8
    width: auto;
9
    box-shadow: $inputOverlayShadow;
10
 
11
    button {
12
      background: $keyboardButtonBg;
13
      border: $keyboardButtonBorder;
14
      padding: $keyboardButtonPadding;
15
      margin: $keyboardButtonMargin;
16
      outline: 0 none;
17
      color: $keyboardButtonTextColor;
18
      transition: $transition;
19
      border-radius: $borderRadius;
20
 
21
      &.ui-state-hover {
22
        background: $keyboardButtonHoverBg;
23
        border-color: $keyboardButtonHoverBorderColor;
24
        color: $keyboardButtonTextHoverColor;
25
      }
26
 
27
      &.ui-state-active {
28
        background: $keyboardButtonActiveBg;
29
        border-color: $keyboardButtonActiveBorderColor;
30
        color: $keyboardButtonTextActiveColor;
31
      }
32
 
33
      &.keypad-shift,
34
      &.keypad-spacebar,
35
      &.keypad-enter,
36
      &.keypad-clear,
37
      &.keypad-back,
38
      &.keypad-close {
39
        background: $buttonBg;
40
        color: $buttonTextColor;
41
        border: $buttonBorder;
42
 
43
        &.ui-state-hover {
44
          background: $buttonHoverBg;
45
          border-color: $buttonHoverBorderColor;
46
          color: $buttonTextHoverColor;
47
        }
48
 
49
        &.ui-state-focus {
50
          outline: $buttonFocusOutline;
51
          outline-offset: $buttonFocusOutlineOffset;
52
          box-shadow: $buttonFocusShadow;
53
        }
54
 
55
        &.ui-state-active {
56
          background: $buttonActiveBg;
57
          border-color: $buttonActiveBorderColor;
58
          color: $buttonTextActiveColor;
59
        }
60
      }
61
    }
62
  }
63
}