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

widget-bydimension-container.directive.less « widget-bydimension-container « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c665289d52cfc75a933bb6009cf4bfd8784c44ee (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
.reportsByDimensionView {

    .dimensionCategory {
        color: @theme-color-text-contrast;
    }

    .reportContainer {
        position: absolute;
        margin-left: 230px;
        min-width: 500px;

        table.dataTable tr td.label {
            max-width: 380px;
        }
    }

    .entityList {

        ul {
            li {
                margin: 4px 0;
                padding: 0 0 0 16px;
                line-height: 22px;
                border-left: 2px solid @theme-color-background-base;

                :hover {
                    opacity: 0.8;
                }
                &:hover:not(.activeDimension) {
                    border-color: @theme-color-header-background;
                    border-left-width: 1px;
                    padding-left: 17px;
                }

                &.activeDimension {
                    border-color: @theme-color-header-background;

                    .dimension {
                        font-weight: bold;
                    }
                }

                .dimension {
                    cursor: pointer;
                    border-bottom: 1px solid #d0d0d0;
                    color: @theme-color-text-contrast;
                    border: 0;
                }
            }

            &.listCircle {
                font-weight: normal;
                list-style: none;
                padding: 4px 0;
                margin-top: 8px;
            }
            &.listCircle li a {
                color: #000;
            }

        }

    }
}