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

quick-access.directive.less « quick-access « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bad77b9babc92b57464cfb83a7a0b7878c6fc58 (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
.quick-access {
  position: relative;

  &:hover,
  &.expanded,
  &.active {
    input {
      background-color: @theme-color-background-contrast !important;
    }
  }
  li {
    font-size: 11px;
  }

  li a {
    padding: 10px 19px;
    display: inline-block;
    text-decoration: none;
    word-break: break-all;
  }

  .icon-search {
    position: absolute;
    font-size: 14px;
    top: 10px;
    left: 10px;

  }
  input {
    width:100%;
    height: 100%;
    box-shadow: 0 0 !important;
    border-radius: 0 !important;
    background-color: @theme-color-background-base !important;
    font-size: 11px;
    &:focus {
      outline: none;
    }
  }
  .selected {
    background-color: @theme-color-background-tinyContrast !important;
  }
  .quick-access-category {
    text-align: left !important;
    font-size: 11px;
    padding: 5px 5px 5px 10px;
    cursor: pointer;
  }
  .result {
    cursor: pointer;
  }
  .quick-access-category:hover {
    background: none !important;
  }
  .no-result {
    padding: 10px 19px;
    cursor: default;
  }
  .websiteCategory {
    cursor: default;
  }
  li.quick-access-help a {
    word-break: break-word;
  }
}