summaryrefslogtreecommitdiffstats
path: root/app/common/styles/elements/quicklinks.scss
blob: 0cdd58818dd89cee429670d62b1533341ee8a69b (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//Quick links block
.quick-links {
  background-color: $background-02;
  padding: 0.5em 1em;
  font-size: 0.9em;
  font-weight: 400;
  margin: 1em 0;
  @include mediaQuery(medium) {
    margin: 0 0 0 1em;
  }

  a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: $primary-dark;
    text-decoration: none;
  }

  p,
  dl,
  dd {
    margin-bottom: 0;
  }

  .event-log__events {
    margin-top: 0;
  }
}

.quick-links__item {
  padding: 1em 0 1em 0;
  border-bottom: 1px solid $border-color-01;
  position: relative;

  .icon {
    height: 1.5rem;
  }

  &.no-icon {
    overflow: auto;

    .bmc-time {
      @include fontCourierBold;
      text-align: right;
      max-width: 17em;
      float: right;

      @include mediaQuery(medium) {
        display: block;
        text-align: left;
        float: none;
        margin-top: 0.25em;
      }
    }
    &:after {
      display: none;
    }
    .toggle-container {
      float: right;
    }
  }
  &:last-child {
    border-bottom: 0;
  }
  .float-right {
    float: right;
    @media (min-width: 1024px) and (max-width: 1140px) {
      display: block;
      float: none;
    }
  }
}

.quick-links__label {
  font-weight: 700;
}

.quick-links__event-copy {
  color: $status-error;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.9em;
  a {
    color: $status-error;
  }
}
OpenPOWER on IntegriCloud