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

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

a.tableConfigurationIcon {
  display: block;
  width: 30px;
  height: 22px;
  background: url(plugins/Morpheus/images/configure.png) no-repeat center 2px;
  position: absolute;
  z-index: 9;
  right: 0;
}

a.tableConfigurationIcon.highlighted {
  display: block;
  width: 30px;
  height: 22px;
  background-image: url(plugins/Morpheus/images/configure-highlight.png);
  position: absolute;
  z-index: 9;
  right: 0;
}

.tableConfiguration ul {
  overflow: visible;
  display: none;
  position: relative;
  z-index: 8;
  text-align: left;
}

.tableConfiguration ul.open {
  display: block;
}

.tableConfiguration ul li {
  padding: 0;
  font-size: 1.1em;
  height: 40px;
  margin-top: -80px;
  background-color: @theme-color-background-base;
  border: 1px solid #DFDFDF;
  border-width: 0 1px;
  vertical-align: middle;
}

.tableConfiguration ul li.firstDummy {
  border-bottom-width: 1px;
  border-radius: 0 0 4px 4px;
  height: 25px;
  cursor: default;
  margin-top: -4px;
}

.tableConfiguration ul li.first {
  margin-top: -65px;
}

.tableConfiguration ul li.last {
  border-top-width: 1px;
  border-radius: 4px 4px 0 0;
}

.tableConfiguration div.configItem {
  cursor: pointer;
  padding: 5px 10px;
  line-height: 15px;
  color: @theme-color-text-light;
}

.tableConfiguration div.configItem:hover {
  background-color: @color-silver-l95;
}

.tableConfiguration div.configItem span.action {
  color: @dataTable-link-color;
}