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

zen-mode.less « stylesheets « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3aa99376cf217c89c1fdbb5f4d35441f581e8fac (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#content:not(.admin), .widget {

  .UserCountryMap .dataTableFooterIcons {
    display: block;
  }

  .widget {
    border-color: @color-silver-l85;

    .widgetTop {
      border-color: @color-silver-l85;
    }
  }

  /* DATATABLES */

  table.dataTable {
    th.sortable {
      background: @theme-color-background-base !important;
      border-left: 0px;
      border-bottom: 0px;
    }
    th.columnSorted {
      font-weight: normal !important;
    }
    tr.subDataTable {
      font-weight: normal !important;
    }
    tr.subDataTable td.label .plusMinus + .label .value {
      font-weight: bold !important;
    }
    tr td {
      padding-top: 7px;
      padding-bottom: 7px;
    }
  }

  .dataTableActions.dataTableVizHtmlTable > .dataTableWrapper {
    width: 100%;
  }

  .dataTableActions table.dataTable  {
    td.columnodd,
    td.columneven,
    th.sortable:not(.first) {
      width: 50px;
    }
  }

  .dataTableVizHtmlTable > .dataTableWrapper {
    width: 500px;
  }

  .dataTableFooterNavigation {
    padding: 7px 0;
  }

  .dataTableFooterIcons {
    border-top: 0px;
  }

  .foldDataTableFooterDrawer,
  .dataTableFeatures .expandDataTableFooterDrawer {
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .dataTableFeatures:hover .foldDataTableFooterDrawer,
  .dataTableFeatures:hover .expandDataTableFooterDrawer {
    opacity: 1 !important;
  }

  h2:nth-of-type(n+2) {
    margin-top: 40px;
  }

  h2 {
    padding-left: 10px;
    font-size: 24px;
  }

  .goalEntry:first-of-type {
    padding-top: 20px;
  }

  .goalEntry {
    border-bottom: 0px;
  }

  .relatedReferrerReports {
    display: none;
  }

  div[data-report="Referrers.getReferrerType"] > .dataTableWrapper {
    width: 800px;
  }

  .reportsByDimensionView .entityList {
    margin-left: 13px;
  }

  .widgetContent .jqplot-graph {
    margin-top: 6px;
  }
}

#content:not(.admin){
  &> div:not(#dashboard) .dataTableFeatures .expandDataTableFooterDrawer {
    margin-bottom: -20px;
  }
}