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-cascadeselect {
3
    background: $inputBg;
4
    border: $inputBorder;
5
    transition: $transition;
6
    border-radius: $borderRadius;
7
 
8
    &:not(.ui-state-disabled):hover {
9
      border-color: $inputHoverBorderColor;
10
    }
11
 
12
    &:not(.ui-state-disabled).ui-state-focus {
13
      @include focused-input();
14
    }
15
 
16
    .ui-cascadeselect-label {
17
      background: transparent;
18
      border: 0 none;
19
      padding: $inputPadding;
20
 
21
      &.ui-placeholder {
22
        color: $inputPlaceholderTextColor;
23
      }
24
 
25
      &:enabled:focus {
26
        outline: 0 none;
27
        box-shadow: none;
28
      }
29
    }
30
 
31
    .ui-cascadeselect-trigger {
32
      background: transparent;
33
      color: $inputIconColor;
34
      width: $inputGroupAddonMinWidth;
35
      border-top-right-radius: $borderRadius;
36
      border-bottom-right-radius: $borderRadius;
37
    }
38
  }
39
 
40
  .ui-cascadeselect-panel {
41
    background: $inputListBg;
42
    border: $inputOverlayBorder;
43
    border-radius: $borderRadius;
44
    box-shadow: $inputOverlayShadow;
45
 
46
    .ui-cascadeselect-items {
47
      padding: $inputListPadding;
48
 
49
      .ui-cascadeselect-item {
50
        margin: $inputListItemMargin;
51
        border: $inputListItemBorder;
52
        color: $inputListItemTextColor;
53
        background: $inputListItemBg;
54
        transition: $transition;
55
        border-radius: $inputListItemBorderRadius;
56
 
57
        .ui-cascadeselect-item-content {
58
          padding: $inputListItemPadding;
59
 
60
          &:focus {
61
            @include focused-listitem();
62
          }
63
        }
64
 
65
        &.ui-state-highlight {
66
          color: $highlightTextColor;
67
          background: $highlightBg;
68
        }
69
 
70
        &:not(.ui-state-highlight):not(.ui-state-disabled):hover {
71
          color: $inputListItemTextHoverColor;
72
          background: $inputListItemHoverBg;
73
        }
74
 
75
        .ui-cascadeselect-group-icon {
76
          font-size: $iconSize;
77
        }
78
      }
79
    }
80
  }
81
 
82
  .ui-input-filled {
83
    .ui-cascadeselect {
84
      background: $inputFilledBg;
85
 
86
      &:not(.ui-state-disabled):hover {
87
        background-color: $inputFilledHoverBg;
88
      }
89
 
90
      &:not(.ui-state-disabled).p-focus {
91
        background-color: $inputFilledFocusBg;
92
      }
93
    }
94
  }
95
}