summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/palette/palette-element/palette-element.component.less
blob: e9c3253fbd7e6f9bd5c4937b8e0fdf48acbf9d73 (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
@import "./../../../../../../assets/styles/override";
.palette-element {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  max-height: 65px;
  border-bottom: 1px solid @sdcui_color_silver;
  padding: 10px;
  align-items: center;
  .palette-element-icon {
    min-width: 45px;
    text-align: center;
  }

  .palette-element-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 15px;
    padding-left: 10px;
    font-family: OpenSans-Regular, sans-serif;
    overflow: hidden;

    .palette-element-name {
      color: @sdcui_color_dark-gray;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }
  }

}