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

_rowActions.less « dataTable « stylesheets « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c13b4c6493110e380b4ce29c2fb897823d414cc8 (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

table.dataTable .dataTableRowActions {
  position: absolute;
  display: none;
  overflow: hidden;
  margin-top: -5px;
  background-color: inherit !important;
  z-index: 1000; /* Work around FF bug to make sure it displays over ellipsis */
}

table.dataTable .dataTableRowActions a {
  display: block;
  float: left;
  padding: 6px 4px 6px 0;
  margin: 0;

  .rowActionIcon {
    font-size: 19px;
    color: @color-gray;
    &:hover {
      color: @theme-color-text;
    }
  }
}

table.dataTable .dataTableRowActions a.leftmost {
  padding-left: 4px;
}

table.dataTable .dataTableRowActions a.rightmost {
  padding-right: 8px;
}

table.dataTable .dataTableRowActions a img {
  margin: 0;
  padding: 0;
  border: 0;
  width: 20px;
  height: 17px;
}