settings.scss 1.7 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
  .empty-metrics {
    text-align: center;
K
kushalpandya 已提交
76
    padding: 30px 10px;
77 78 79 80

    p,
    .btn {
      margin-top: 10px;
K
kushalpandya 已提交
81
      margin-bottom: 0;
82 83 84 85 86 87
    }

    p {
      color: $gl-gray-light;
    }
  }
88

K
kushalpandya 已提交
89 90 91 92
  .loading-metrics .fa-spin {
    color: $loading-color;
  }

93 94 95 96 97 98
  .metrics-list {
    list-style-type: none;
    margin: 0;
    padding: 0;

    li {
K
kushalpandya 已提交
99
      padding: 16px;
100 101 102 103 104 105 106 107 108 109 110

      .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 已提交
111
}