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

_limitSelection.less « dataTable « stylesheets « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffdc9e598537f6307063e0f953c72ad95900edbb (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
.limitSelection {
  float: right;
  position: relative;
  margin-left: 5px;
  min-height: 20px;
  z-index: 1;
}

.limitSelection.hidden {
  display: none;
}

.limitSelection > div {
  border: 1px solid #DFDFDF;
  border-radius: 4px;
  background: url(plugins/Morpheus/images/sort_subtable_desc_light.png) no-repeat right 2px;
  padding: 0 14px 0 4px;
  display: block;
  width: 41px;
  height: 26px;
  cursor: pointer;
}

.limitSelection.disabled > div {
  opacity: 0.5;
  cursor: not-allowed;
  filter: Alpha(opacity=50);
}

.limitSelection.visible > div {
  border-radius: 0 0 4px 4px;
  background-image: url(plugins/Morpheus/images/sort_subtable_asc_light.png)
}

.limitSelection > ul {
  margin-top: 1px;
  overflow: visible;
  background-color: @theme-color-background-base;
}

.limitSelection > ul > li {
  cursor: pointer;
  width: 28px;
  padding: 0 10px 0 4px;
  font-size: 1.1em;
  font-weight: bold;
  height: 20px;
  margin-top: -40px;
  background-color: @theme-color-background-base;
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
  vertical-align: middle;
  text-align: right;
}

.limitSelection > ul > li.last {
  border-top: 1px solid #DFDFDF;
  border-radius: 4px 4px 0 0;
}

.limitSelection > ul > li:hover {
  background-color: #EBEAE6;
}

.limitSelection span {
  padding-top: 3px;
  display: inline-block;
}