BigW Consortium Gitlab

admin.scss 1.83 KB
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;
}
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

// Users List

.users-list {
  .user-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .user-details {
    flex: 1 1 auto;
  }

  .user-name {
    display: inline-block;
90
    font-weight: 600;
91 92 93 94 95 96 97 98
  }

  .dropdown {
    .btn-block {
      margin-bottom: 0;
      line-height: inherit;
    }
  }
99 100 101 102

  .label-default {
    color: $btn-transparent-color;
  }
103
}
104

105
.abuse-reports {
106 107
  .table {
    table-layout: fixed;
108
  }
109 110 111 112 113 114
  .subheading {
    padding-bottom: $gl-padding;
  }
  .message {
    word-wrap: break-word;
  }
Luke Bennett committed
115 116 117 118
  .btn {
    white-space: normal;
    padding: $gl-btn-padding;
  }
119 120 121 122 123
  th {
    width: 15%;
    &.wide {
      width: 55%;
    }
124
  }
125 126 127 128 129 130 131 132
  @media (max-width: $screen-sm-max) {
    th {
      width: 100%;
    }
    td {
      width: 100%;
      float: left;
    }
133
  }
134

135 136 137 138 139 140 141
  .no-reports {
    .emoji-icon {
      margin-left: $btn-side-margin;
      margin-top: 3px;
    }
    span {
      font-size: 19px;
142
    }
143 144
  }
}