summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/palette/palette-popup-panel/palette-popup-panel.component.less
blob: 24f0485e7674f21a13ae0fa292509c7999bc9181 (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
.popup-panel {
  position: absolute;
  display: inline-block;
  background-color: white;
  border: solid 1px #d2d2d2;
  border-top: solid 3px #13a7df;
  left: 208px; top: 0px;
  width: 140px;
  height: 40px;
  z-index: 10000;

  &:hover {
    background-color: whitesmoke;
  }

  .popup-panel-group {
    padding-left: 8px;
    padding-top: 8px;
    cursor: pointer;

    .popup-panel-plus {
      border-radius: 50%;
      color: white;
      background-color: #13a7df;
      width: 20px;
      text-align: center;
      display: inline-block;
    }
    
    .popup-panel-title {
      padding-left: 10px;
      display: inline-block;
    }
    
  }

}