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-overlaypanel {
3
    background: $panelContentBg;
4
    color: $panelContentTextColor;
5
    padding: 0;
6
    border: $overlayContentBorder;
7
    box-shadow: $overlayContainerShadow;
8
    border-radius: $borderRadius;
9
 
10
    .ui-overlaypanel-content {
11
      padding: $panelContentPadding;
12
    }
13
 
14
    .ui-overlaypanel-close {
15
      position: absolute;
16
      width: $actionIconWidth;
17
      height: $actionIconHeight;
18
      right: -1 * $actionIconWidth / 2;
19
      top: -1 * $actionIconWidth / 2;
20
      background: $overlayPanelCloseIconBg;
21
      color: $overlayPanelCloseIconColor;
22
      transition: $transition;
23
      border-radius: $actionIconBorderRadius;
24
      text-align: center;
25
      line-height: $actionIconHeight;
26
      padding: 0;
27
 
28
      &:hover {
29
        background: $overlayPanelCloseIconHoverBg;
30
        color: $overlayPanelCloseIconHoverColor;
31
      }
32
 
33
      .ui-icon {
34
        @include icon_override("\e90b");
35
        display: inline-block;
36
        line-height: inherit;
37
      }
38
    }
39
  }
40
}