BigW Consortium Gitlab

admin.scss 923 Bytes
Newer Older
1 2 3 4
/**
 * Admin area
 *
 */
5
.admin-dashboard {
6 7 8 9 10 11 12 13 14 15 16
  .data {
    a {
      h1 {
        line-height: 48px;
        font-size: 48px;
        padding: 20px;
        text-align: center;
        font-weight: normal;
      }
    }
  }
17 18 19 20

  .str-truncated {
    max-width: 60%;
  }
21 22
}

23
.admin-filter form {
24 25 26 27 28 29 30 31 32 33 34 35 36
  .select2-container {
    width: 100%
  }

  .controls {
    margin-left: 130px;
  }

  .form-actions {
    padding-left: 130px;
    background: #fff
   }

37 38 39
  .visibility-levels {
    .controls {
      margin-bottom: 9px;
40 41 42 43 44 45
    }

    i {
      color: inherit;
    }
  }
46
}
47 48 49 50 51 52

.broadcast-messages {
  .message {
    line-height: 2;
  }
}
53 54 55 56 57

.broadcast-message {
  @extend .alert-warning;
  padding: 10px;
  text-align: center;
58 59 60 61 62 63 64 65 66 67

  > div, p {
    display: inline;
    margin: 0;

    a {
      color: inherit;
      text-decoration: underline;
    }
  }
68 69 70 71 72 73
}

.broadcast-message-preview {
  @extend .broadcast-message;
  margin-bottom: 20px;
}