settings.scss 1.6 KB
Newer Older
P
Phil Hughes 已提交
1
.settings-list-icon {
T
tauriedavis 已提交
2
  color: $gl-text-color-secondary;
P
Phil Hughes 已提交
3 4 5 6 7 8 9 10 11 12 13 14
  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 已提交
15 16 17 18 19 20 21 22

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

.danger-title {
  color: $gl-danger;
}
L
Luke "Jared" Bennett 已提交
23 24 25 26

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

28
.token-token-container {
29
  #impersonation-token-token {
30 31 32 33 34 35 36 37
    width: 80%;
    display: inline;
  }

  .btn-clipboard {
    margin-left: 5px;
  }
}
38 39 40

.prometheus-metrics-monitoring {
  .panel {
41 42 43 44 45 46 47 48
    .panel-toggle {
      width: 12px;

      &.fa-caret-right {
        padding-left: 4px;
      }
    }

49 50 51
    .panel-heading .badge-count {
      color: $white-light;
      background: $common-gray-dark;
52 53 54 55 56 57 58 59 60
    }

    .panel-body {
      padding: 0;
    }

    .badge-count {
      margin-left: 3px;
      padding: 3px 8px;
61 62
      border-radius: 40%;
    }
K
kushalpandya 已提交
63 64 65 66 67 68 69 70

    .flash-container {
      margin-bottom: 0;

      .flash-notice {
        border-radius: 0;
      }
    }
71 72
  }

73
  .loading-metrics,
74 75 76 77 78 79 80 81 82 83 84 85 86
  .empty-metrics {
    text-align: center;
    padding: 20px 10px;

    p,
    .btn {
      margin-top: 10px;
    }

    p {
      color: $gl-gray-light;
    }
  }
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105

  .metrics-list {
    list-style-type: none;
    margin: 0;
    padding: 0;

    li {
      padding: 15px 10px;

      .badge-count {
        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 已提交
106
}