Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// Dropdowns
2
 
3
.dropdown,
4
.btn-group {
5
  .dropdown-toggle {
6
    &:after {
7
      border-top: 0;
8
      border-right: 0;
9
      border-left: 0;
10
      border-bottom: 0;
11
      font: normal normal normal 24px/1 "feather";
12
      content: "\e842";
13
      width: auto;
14
      height: auto;
15
      vertical-align: middle;
16
      line-height: .625rem;
17
      font-size: .875rem;
18
    }
19
  }
20
  &.dropup {
21
    .dropdown-toggle {
22
      &::after {
23
        content: "\e845";
24
      }
25
    }
26
  }
27
  &.dropstart {
28
    .dropdown-toggle {
29
      &::before {
30
        border: 0;
31
        font: normal normal normal 24px/1 "feather";
32
        content: "\e843";
33
        width: auto;
34
        height: auto;
35
        vertical-align: middle;
36
        line-height: .625rem;
37
        font-size: .875rem;
38
      }
39
    }
40
  }
41
  &.dropend {
42
    .dropdown-toggle {
43
      &::after {
44
        content: "\e844";
45
      }
46
    }
47
  }
48
}
49
 
50
.dropdown-menu {
51
  padding: .35rem;
52
  margin-top: 0;
53
  box-shadow: $dropdown-box-shadow;
54
}
55
 
56
.dropdown-item {
57
  font-size: .812rem;
58
  padding: .25rem .875rem;
59
  border-radius: 2px;
60
  i, svg {
61
    color: $text-muted;
62
  }
63
  &:not(&:active, &.active):hover {
64
    background-color: rgba($primary, .1);
65
    &, i, svg {
66
      color: $primary;
67
    }
68
  }
69
  &:active,
70
  &.active {
71
    i, svg {
72
      color: $white;
73
    }
74
  }
75
}