settings.scss 2.7 KB
Newer Older
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
@keyframes expandMaxHeight {
  0% {
    max-height: 0;
  }

  99% {
    max-height: 100vh;
  }

  100% {
    max-height: none;
  }
}

@keyframes collapseMaxHeight {
  0% {
    max-height: 100vh;
  }

  100% {
    max-height: 0;
  }
}

.settings {
  overflow: hidden;
  border-bottom: 1px solid $gray-darker;

  &:first-of-type {
    margin-top: 10px;
  }
32 33 34 35

  &.expanded {
    overflow: visible;
  }
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
}

.settings-header {
  position: relative;
  padding: 20px 110px 10px 0;

  h4 {
    margin-top: 0;
  }

  button {
    position: absolute;
    top: 20px;
    right: 6px;
    min-width: 80px;
  }
}

.settings-content {
  max-height: 1px;
  overflow-y: scroll;
  margin-right: -20px;
  padding-right: 130px;
  animation: collapseMaxHeight 300ms ease-out;

  &.expanded {
    max-height: none;
63
    overflow-y: visible;
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
    animation: expandMaxHeight 300ms ease-in;
  }

  &.no-animate {
    animation: none;
  }

  @media(max-width: $screen-sm-max) {
    padding-right: 20px;
  }

  &::before {
    content: ' ';
    display: block;
    height: 1px;
    overflow: hidden;
    margin-bottom: 4px;
  }

  &::after {
    content: ' ';
    display: block;
    height: 1px;
    overflow: hidden;
    margin-top: 20px;
  }
}

P
Phil Hughes 已提交
92
.settings-list-icon {
T
tauriedavis 已提交
93
  color: $gl-text-color-secondary;
P
Phil Hughes 已提交
94 95 96 97 98 99 100 101 102 103 104 105
  font-size: $settings-icon-size;
  line-height: 42px;
}

.settings-message {
  padding: 5px;
  line-height: 1.3;
  color: $warning-message-color;
  background-color: $warning-message-bg;
  border: 1px solid $warning-message-border;
  border-radius: $border-radius-base;
}
P
Phil Hughes 已提交
106 107 108 109 110 111 112 113

.warning-title {
  color: $gl-warning;
}

.danger-title {
  color: $gl-danger;
}
L
Luke "Jared" Bennett 已提交
114 115 116 117

.service-settings .control-label {
  padding-top: 0;
}
118

119
.token-token-container {
120
  #impersonation-token-token {
121 122 123 124 125 126 127 128
    width: 80%;
    display: inline;
  }

  .btn-clipboard {
    margin-left: 5px;
  }
}
129 130 131

.prometheus-metrics-monitoring {
  .panel {
132
    .panel-toggle {
K
kushalpandya 已提交
133 134
      width: 14px;
    }
135

K
kushalpandya 已提交
136 137
    .badge {
      font-size: inherit;
138 139
    }

140 141 142
    .panel-heading .badge-count {
      color: $white-light;
      background: $common-gray-dark;
143 144 145 146 147 148
    }

    .panel-body {
      padding: 0;
    }

K
kushalpandya 已提交
149 150
    .flash-container {
      margin-bottom: 0;
K
kushalpandya 已提交
151
      cursor: default;
K
kushalpandya 已提交
152 153 154 155 156

      .flash-notice {
        border-radius: 0;
      }
    }
157 158
  }

159
  .loading-metrics,
160
  .empty-metrics {
K
kushalpandya 已提交
161
    padding: 30px 10px;
162 163 164 165

    p,
    .btn {
      margin-top: 10px;
K
kushalpandya 已提交
166
      margin-bottom: 0;
167 168
    }
  }
169

K
kushalpandya 已提交
170
  .loading-metrics .metrics-load-spinner {
K
kushalpandya 已提交
171 172 173
    color: $loading-color;
  }

174
  .metrics-list {
K
kushalpandya 已提交
175
    margin-bottom: 0;
176 177

    li {
K
kushalpandya 已提交
178
      padding: $gl-padding;
179

K
kushalpandya 已提交
180 181
      .badge {
        margin-left: 5px;
182 183 184 185 186 187 188 189 190
        background: $badge-bg;
      }
    }

    /* Ensure we don't add border if there's only single li */
    li + li {
      border-top: 1px solid $border-color;
    }
  }
K
kushalpandya 已提交
191
}