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

dropdown-menu.directive.less « dropdown-menu « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92f8ca87855d3ab2529172ba466c6f32cd84b82f (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
[piwik-dropdown-menu] {
  position: relative;

  &::after {
    content: "▼";
    font-size: .7em;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
  }

  &.submenu::after {
    float: right;
    content: "►";
    color: @color-black-piwik;
    font-size: .6em;
  }
}

.submenu + .dropdown-content {
  left: 100%!important;
}

.submenu-container.dropdown-content {
  overflow:visible; // required for submenus to display
}