messager.less 1.3 KB
Newer Older
C
Catouse 已提交
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
.messager
{
  position: fixed;
  color: @color-light;
  background-color: @color-dark;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding-right: 50px;
  max-width: 80%;
  z-index: 99999;

  &.top
  {
    top: 20px;
  }

  &.top-left
  {
    top: 20px;
    left: 20px;
  }

  &.top-right
  {
    top: 20px;
    right: 20px;
  }

  &.bottom
  {
    bottom: 20px;
  }

  &.bottom-left
  {
    bottom: 20px;
    left: 20px;
  }

  &.bottom-right
  {
    bottom: 20px;
    right: 20px;
  }
}

.messager-content
{
  padding: 10px 20px;

  > [class^='icon-']
  {
     display: inline-block;
     margin-right: 8px;
  }
}

.close-messager
{
  position: absolute;
  right: 10px;
  top: 5px;
  background: none;
  border: none;
  color: #fafafa;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;

  &:hover
  {
    color: #fff;
  }
}

.messager-primary
{
  background-color: @state-primary-inverse-bg;
}

.messager-success
{
  background-color: @state-success-inverse-bg;
}

.messager-info
{
  background-color: @state-info-inverse-bg;
}

.messager-warning
{
  background-color: @state-warning-inverse-bg;
}

.messager-danger
{
  background-color: @state-danger-inverse-bg;
}

.messager-important
{
  background-color: @state-important-inverse-bg;
}

.messager-special
{
  background-color: @state-special-inverse-bg;
}