summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/logic/generic-artifact-browser/generic-artifact-browser.component.less
blob: 288cfd9619398f68ed4947cf710147cd56629a99 (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
@import '../../../../../assets/styles/mixins';

.ngx-datatable.material {
  .datatable-body {
    .datatable-body-row {
      .datatable-body-cell {
        background-clip: padding-box;
        background-color: rgb(233, 236, 239);
        flex-direction: column;
        font-family: monospace;
        font-size: 16px;
        font-stretch: 100%;
        font-weight: 400;
        line-height:5px;
        margin-right: 6px;
        overflow: auto !important;
        padding: 3px;
        border-bottom: 6px solid white;

        .selectable();

        span {
          display: inline-block;
          line-height: 15pt;
          .break-all-words();
        }
      }
    }
  }
}

.datatable-row-group {
  padding-bottom: 6px;
  padding-top: 6px;
}

.datatable-body-cell-label {
  :focus {
    border-color: white;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  :hover {
    cursor: default;
  }
}

.datatable-header span.datatable-header-cell-label {
  .break-all-words();
}

.datatable-header-cell {
  color: rgb(51, 51, 51);
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.break-all-words {
  word-break: break-all;
  white-space: normal;
}