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

Menudropdown.less « Menudropdown « src « vue « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a04d675dfbc0c82b372063bb3eeaa9cf37b6b3c (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94

.menuDropdown {
  display: inline-block;
  padding-right: 14px;

  .title {
    position: relative;
    cursor: pointer;
  }

  .icon-arrow-bottom {
    margin-left: 4px;
  }

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

    .search {
      margin: 15px 6px 10px 6px;
      display: block;

      .search_ico {
        position: absolute;
        right: 25px;
        top: 27px;
        margin: 0px;
        left: initial;
      }
      .reset {
        position: absolute;
        top: 25px;
        cursor: pointer;
        margin: 0px;
        right: 25px;
        left: initial;
      }

      input {
        margin: 0px;
        width: 100%;

        &::-ms-clear {
          display: none;
        }
      }
    }

    .item {
      display: block;
      color: @theme-color-text !important;
      text-decoration: none !important;
      padding: 12px 25px 12px 6px !important;
      font-size: 11px;
      float: none;
      text-align: left;
      line-height: 16px;

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

      &.active {
        background-color: @theme-color-background-tinyContrast;
      }

      &.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;
        }
      }
    }
  }
}