Welcome to mirror list, hosted at ThFree Co, Russian Federation.

menudropdown.less « menudropdown « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df9b8d3cd3259d3a96f0259572a71d1a55f3007a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78

.menuDropdown {
  display: inline-block;
  padding-right: 14px;
  color: @theme-color-link;

  .title {
    position: relative;
    cursor: pointer;

    &:after {
      content: '';
      position: absolute;
      top: 5px;
      right: -15px;
      color: @theme-color-link;
      display: inline;
      content: " \25BC";
      font-size: 1px;
      height: 0px;
      width: 0px;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid @theme-color-link;
    }
  }

  .items {
    z-index: 21;
    position: absolute;
    border: 1px solid @color-silver-l80 !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: @theme-color-background-base;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 !important;

    .item {
      display: block;
      color: @theme-color-text !important;
      text-decoration: none !important;
      padding: 6px 25px 6px 6px !important;
      font-size: 11px;

      &:hover {
        background: @color-silver-l80;
      }

      &.active {
        background-color: @color-silver-l80;
        cursor: default;
      }

      &.category {
        color: @theme-color-text-light !important
      }

      &.separator {
        padding: 0px !important;
        border-bottom: 0px;
        margin: 0px;
      }

      &.separator,
      &.disabled {
        opacity: 0.5;
        cursor: default;

        &:hover {
          background: @theme-color-background-base;
        }
      }
    }
  }
}