summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/logs/logs.component.scss
blob: 54ab44250603c09cb7b73bfa70a8e97f0caf7a1b (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
@use './src/styles/vendor/variables' as vv;

p {
  font-family: monospace;
}

.card {
  .btn-group {
    margin-top: -45px;
    position: absolute;
    right: 0;
  }

  div p {
    display: flex;

    &:last-child {
      margin-bottom: 0;
    }
  }

  .timestamp {
    flex-shrink: 0;
    font-weight: bold;
  }

  .priority {
    margin-left: 0.5rem;
  }

  .message {
    margin-left: 1rem;
  }

  .err {
    color: vv.$danger;
  }

  .warn {
    color: vv.$warning;
  }

  .info {
    color: vv.$info;
  }

  .debug {
    color: vv.$gray-700;
  }
}

::ng-deep cd-logs ngb-timepicker input.ngb-tp-input {
  width: 3.5rem !important;
}