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

field-expandable-select.less « form-field « angularjs « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75a8c2428ca6c606ad3015ae75936621cd25501b (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
.expandableSelector {

  position: relative;

  .secondary-content {
    font-size: 16px;
    margin-top: -3px;
    color: @theme-color-link;
    cursor: help;
  }

  ul {
    min-width: 250px;

    &.collection.firstLevel {
      border-top: 0;
      margin-top: 0;
      margin-bottom: 0;
      font-size: 12px;

      > li {
        padding: 0 !important;
      }
    }

    .expandableListCategory {
      padding: 10px 20px;
      color: @theme-color-link;
    }

    li {
      &:hover {
        background: #f2f2f2 !important;
      }

      &.collection-item {
        cursor: pointer;
      }
    }

    ul {
      margin-top: 0;
      margin-bottom: 0;

      .primary-content {
        width: 100%;
      }
      .secondary-content {
        margin-top: 3px;
      }

      li {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        padding-left: 30px !important;
        min-width: 200px;

        &:hover {
          background: #f2f2f2 !important;
        }
      }
    }
  }

  .searchContainer {
    padding: 5px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
  }

  .expandableSearch {
    vertical-align: top;
    padding: 7px 6px !important;
    border: 1px solid #d0d0d0 !important;
    background: #fff !important;
    font-size: 11px !important;
    color: #454545 !important;
    width: 100% !important;
  }

  .expandableList {
    position: absolute;
    z-index: 9999;
    margin-top: -48px;
    background: #fff;
  }
}