summaryrefslogtreecommitdiffstats
path: root/public/css/widget/notice.less
blob: 7067665640f243eeccfe5eb83c44e42083510937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Style

.notice {
  @margin: 1em / 1.25;
  @padding: .75em / 1.25;

  .rounded-corners();
  padding: @padding;
  color: @text-color-on-icinga-blue;
  background-color: @state-warning;
  font-weight: bold;
  font-size: 1.25em;

  // Layout
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 @margin @margin @margin;

  > span {
    .text-ellipsis();
  }
}