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
  .ui-tooltip {
3
    .ui-tooltip-text {
4
      background: $tooltipBg;
5
      color: $tooltipTextColor;
6
      box-shadow: $overlayContainerShadow;
7
      border-radius: $borderRadius;
8
    }
9
 
10
    &.ui-state-error {
11
      border: 0 none;
12
    }
13
 
14
    &.ui-tooltip-right {
15
      .ui-tooltip-arrow {
16
        border-right-color: $tooltipBg;;
17
      }
18
    }
19
 
20
    &.ui-tooltip-left {
21
      .ui-tooltip-arrow {
22
        border-left-color: $tooltipBg;;
23
      }
24
    }
25
 
26
    &.ui-tooltip-top {
27
      .ui-tooltip-arrow {
28
        border-top-color: $tooltipBg;;
29
      }
30
    }
31
 
32
    &.ui-tooltip-bottom {
33
      .ui-tooltip-arrow {
34
        border-bottom-color: $tooltipBg;;
35
      }
36
    }
37
  }
38
}