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-selectonelistbox,
3
  .ui-selectmanymenu {
4
    padding: 0;
5
    width: auto;
6
    min-width: $inputListMinWidth;
7
    border: $inputListBorder;
8
    border-radius: $borderRadius;
9
    background:$inputListBg;
10
 
11
    .ui-selectlistbox-filter-container {
12
      padding: $inputListHeaderPadding;
13
      margin: 0;
14
      border-bottom: $inputListHeaderBorder;
15
      background: $inputListHeaderBg;
16
      color: $inputListHeaderTextColor;
17
      @include border-radius-top($borderRadius);
18
 
19
      .ui-selectlistbox-filter.ui-inputfield {
20
        padding: $inputPadding;
21
        width: 100%;
22
        padding-left: 2 * nth($inputPadding, 2) + $iconSize;
23
      }
24
 
25
      .ui-icon {
26
        @include icon_override("\e908");
27
        position: absolute;
28
        left: nth($inputListHeaderPadding, 2) + nth($inputPadding, 2);
29
        top: 50%;
30
        right: auto;
31
        bottom: auto;
32
        margin-top: -1 * $iconSize / 2;
33
        color: $inputIconColor;
34
      }
35
    }
36
 
37
    .ui-selectlistbox-listcontainer {
38
      padding: $inputListPadding;
39
      line-height: normal;
40
      border: 0 none;
41
 
42
      .ui-selectlistbox-list {
43
        list-style-type: none;
44
        margin: 0;
45
 
46
        .ui-selectlistbox-item {
47
          border: $inputListItemBorder;
48
          margin: $inputListItemMargin;
49
          padding: $inputListItemPadding;
50
          background: $inputListItemBg;
51
          color: $inputListItemTextColor;
52
          border-radius: $inputListItemBorderRadius;
53
          transition: $transition;
54
 
55
          &.ui-state-hover {
56
            background: $inputListItemHoverBg;
57
            color: $inputListItemTextHoverColor;
58
          }
59
 
60
          &.ui-state-highlight {
61
            background: $inputListItemHighlightBg;
62
            color: $inputListItemHighlightTextColor;
63
          }
64
 
65
          .ui-chkbox {
66
            margin-right: $inlineSpacing;
67
            vertical-align: middle;
68
          }
69
 
70
          > td {
71
            padding: $datatableBodyCellPadding;
72
          }
73
        }
74
      }
75
    }
76
  }
77
 
78
  .ui-input-filled,
79
  &.ui-input-filled {
80
    .ui-selectonelistbox.ui-inputfield,
81
    .ui-selectmanymenu.ui-inputfield {
82
      background: $inputListBg;
83
    }
84
  }
85
}