2017-06-07 04:11:44 -04:00
|
|
|
@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 {
|
2019-03-14 19:50:21 -04:00
|
|
|
// border-top for each item except the top one
|
|
|
|
+ .settings {
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
}
|
2017-06-07 04:11:44 -04:00
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2017-06-21 03:49:38 -04:00
|
|
|
|
2017-10-14 02:05:54 -04:00
|
|
|
&.animating {
|
|
|
|
overflow: hidden;
|
2017-06-21 03:49:38 -04:00
|
|
|
}
|
2017-06-07 04:11:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.settings-header {
|
|
|
|
position: relative;
|
|
|
|
padding: 20px 110px 10px 0;
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-10-15 09:36:19 -04:00
|
|
|
.settings-title {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-06-07 04:11:44 -04:00
|
|
|
button {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 6px;
|
|
|
|
min-width: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-content {
|
|
|
|
max-height: 1px;
|
2018-06-14 03:39:20 -04:00
|
|
|
overflow-y: hidden;
|
2017-07-03 13:51:32 -04:00
|
|
|
padding-right: 110px;
|
2017-06-07 04:11:44 -04:00
|
|
|
animation: collapseMaxHeight 300ms ease-out;
|
2017-10-17 11:43:03 -04:00
|
|
|
// Keep the section from expanding when we scroll over it
|
|
|
|
pointer-events: none;
|
2017-06-07 04:11:44 -04:00
|
|
|
|
2017-10-14 02:05:54 -04:00
|
|
|
.settings.expanded & {
|
2017-06-07 04:11:44 -04:00
|
|
|
max-height: none;
|
2017-06-07 07:59:46 -04:00
|
|
|
overflow-y: visible;
|
2017-06-07 04:11:44 -04:00
|
|
|
animation: expandMaxHeight 300ms ease-in;
|
2017-10-17 11:43:03 -04:00
|
|
|
// Reset and allow clicks again when expanded
|
|
|
|
pointer-events: auto;
|
2017-06-07 04:11:44 -04:00
|
|
|
}
|
|
|
|
|
2017-10-14 02:05:54 -04:00
|
|
|
.settings.no-animate & {
|
2017-06-07 04:11:44 -04:00
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@media(max-width: map-get($grid-breakpoints, md)-1) {
|
2017-06-07 04:11:44 -04:00
|
|
|
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;
|
|
|
|
}
|
2017-07-03 13:51:32 -04:00
|
|
|
|
|
|
|
.sub-section {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
padding: 16px;
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
background-color: $gray-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bs-callout,
|
2018-04-09 11:26:28 -04:00
|
|
|
.form-check:first-child,
|
2018-04-11 14:26:37 -04:00
|
|
|
.form-text.text-muted {
|
2017-07-03 13:51:32 -04:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2017-06-07 04:11:44 -04:00
|
|
|
}
|
|
|
|
|
2016-04-25 09:42:17 -04:00
|
|
|
.settings-list-icon {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color-secondary;
|
2018-09-06 05:43:14 -04:00
|
|
|
font-size: $default-icon-size;
|
2016-04-25 09:42:17 -04:00
|
|
|
line-height: 42px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-message {
|
|
|
|
padding: 5px;
|
|
|
|
line-height: 1.3;
|
2018-08-16 15:31:53 -04:00
|
|
|
color: $orange-700;
|
|
|
|
background-color: $orange-100;
|
|
|
|
border: 1px solid $orange-200;
|
2016-04-25 09:42:17 -04:00
|
|
|
border-radius: $border-radius-base;
|
|
|
|
}
|
2016-05-16 11:42:29 -04:00
|
|
|
|
|
|
|
.warning-title {
|
2018-08-21 13:52:31 -04:00
|
|
|
color: $orange-500;
|
2016-05-16 11:42:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.danger-title {
|
2018-08-21 13:52:31 -04:00
|
|
|
color: $red-500;
|
2016-05-16 11:42:29 -04:00
|
|
|
}
|
2016-11-21 17:11:21 -05:00
|
|
|
|
2018-01-31 17:25:54 -05:00
|
|
|
.integration-settings-form {
|
2018-06-07 16:37:07 -04:00
|
|
|
.card.card-body,
|
|
|
|
.info-well {
|
2018-01-31 17:25:54 -05:00
|
|
|
padding: $gl-padding / 2;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-container {
|
|
|
|
max-width: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 11:59:03 -05:00
|
|
|
.token-token-container {
|
2017-02-23 12:47:06 -05:00
|
|
|
#impersonation-token-token {
|
2017-01-06 11:00:46 -05:00
|
|
|
width: 80%;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-clipboard {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2017-05-26 10:25:37 -04:00
|
|
|
|
2017-08-25 14:00:01 -04:00
|
|
|
.visibility-level-setting {
|
2018-04-09 11:26:28 -04:00
|
|
|
.form-check {
|
2017-08-25 14:00:01 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
|
2017-08-25 14:46:49 -04:00
|
|
|
i.fa {
|
2017-08-25 14:00:01 -04:00
|
|
|
margin: 2px 0;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-title {
|
|
|
|
font-weight: $gl-font-weight-normal;
|
|
|
|
display: inline-block;
|
|
|
|
color: $gl-text-color;
|
2019-01-31 16:23:45 -05:00
|
|
|
vertical-align: top;
|
2017-08-25 14:00:01 -04:00
|
|
|
}
|
|
|
|
|
2017-08-25 14:48:15 -04:00
|
|
|
.option-description,
|
|
|
|
.option-disabled-reason {
|
2018-06-04 23:48:16 -04:00
|
|
|
margin-left: 30px;
|
2017-08-25 14:00:01 -04:00
|
|
|
color: $project-option-descr-color;
|
2019-01-31 16:23:45 -05:00
|
|
|
margin-top: -5px;
|
2017-08-25 14:00:01 -04:00
|
|
|
}
|
2017-08-25 14:46:49 -04:00
|
|
|
|
2017-08-25 14:48:15 -04:00
|
|
|
.option-disabled-reason {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-08-25 14:46:49 -04:00
|
|
|
&.disabled {
|
|
|
|
i.fa {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-08-25 14:48:15 -04:00
|
|
|
|
|
|
|
.option-description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-disabled-reason {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-08-25 14:46:49 -04:00
|
|
|
}
|
2017-08-25 14:00:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-03 09:09:58 -04:00
|
|
|
.initialize-with-readme-setting {
|
|
|
|
.form-check {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.option-title {
|
|
|
|
font-weight: $gl-font-weight-normal;
|
|
|
|
display: inline-block;
|
|
|
|
color: $gl-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option-description {
|
|
|
|
color: $project-option-descr-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 10:25:37 -04:00
|
|
|
.prometheus-metrics-monitoring {
|
2018-04-09 11:26:28 -04:00
|
|
|
.card {
|
|
|
|
.card-toggle {
|
2017-06-01 11:54:56 -04:00
|
|
|
width: 14px;
|
|
|
|
}
|
2017-05-31 07:39:42 -04:00
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
.badge.badge-pill {
|
2018-03-06 17:54:19 -05:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
2017-05-31 07:39:42 -04:00
|
|
|
}
|
|
|
|
|
2018-04-16 15:18:45 -04:00
|
|
|
.card-header .label-count {
|
2017-05-26 10:25:37 -04:00
|
|
|
color: $white-light;
|
|
|
|
background: $common-gray-dark;
|
2017-05-31 07:39:42 -04:00
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
.card-body {
|
2017-05-31 07:39:42 -04:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-05-31 09:35:54 -04:00
|
|
|
.flash-container {
|
|
|
|
margin-bottom: 0;
|
2017-06-01 11:54:56 -04:00
|
|
|
cursor: default;
|
2017-05-31 09:35:54 -04:00
|
|
|
|
|
|
|
.flash-notice {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-05-26 10:25:37 -04:00
|
|
|
}
|
|
|
|
|
2017-05-31 07:39:42 -04:00
|
|
|
.loading-metrics,
|
2017-05-26 10:25:37 -04:00
|
|
|
.empty-metrics {
|
2017-06-01 03:55:48 -04:00
|
|
|
padding: 30px 10px;
|
2017-05-26 10:25:37 -04:00
|
|
|
|
|
|
|
p,
|
|
|
|
.btn {
|
|
|
|
margin-top: 10px;
|
2017-06-01 03:55:48 -04:00
|
|
|
margin-bottom: 0;
|
2017-05-26 10:25:37 -04:00
|
|
|
}
|
|
|
|
}
|
2017-05-31 07:39:42 -04:00
|
|
|
|
2017-06-01 11:54:56 -04:00
|
|
|
.loading-metrics .metrics-load-spinner {
|
2018-08-24 12:29:44 -04:00
|
|
|
color: $gl-gray-700;
|
2017-06-01 03:55:48 -04:00
|
|
|
}
|
|
|
|
|
2017-05-31 07:39:42 -04:00
|
|
|
.metrics-list {
|
2017-06-01 11:54:56 -04:00
|
|
|
margin-bottom: 0;
|
2017-05-31 07:39:42 -04:00
|
|
|
|
|
|
|
li {
|
2017-06-01 11:54:56 -04:00
|
|
|
padding: $gl-padding;
|
2017-05-31 07:39:42 -04:00
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
.badge.badge-pill {
|
2017-06-01 11:54:56 -04:00
|
|
|
margin-left: 5px;
|
2017-05-31 07:39:42 -04:00
|
|
|
background: $badge-bg;
|
|
|
|
}
|
|
|
|
|
2017-07-12 05:50:26 -04:00
|
|
|
/* Ensure we don't add border if there's only single li */
|
|
|
|
+ li {
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
}
|
2017-05-31 07:39:42 -04:00
|
|
|
}
|
|
|
|
}
|
2017-05-31 10:47:31 -04:00
|
|
|
}
|
2017-11-07 03:33:58 -05:00
|
|
|
|
|
|
|
.modal-doorkeepr-auth {
|
|
|
|
.modal-body {
|
|
|
|
padding: $gl-padding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:33:51 -05:00
|
|
|
.deprecated-service {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2018-03-19 12:11:12 -04:00
|
|
|
|
|
|
|
.personal-access-tokens-never-expires-label {
|
|
|
|
color: $note-disabled-comment-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.created-deploy-token-container {
|
|
|
|
.deploy-token-field {
|
|
|
|
width: 90%;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-clipboard {
|
2018-06-18 07:38:22 -04:00
|
|
|
background-color: $white-light;
|
2019-01-14 15:17:22 -05:00
|
|
|
border: 1px solid $gray-200;
|
2018-03-19 12:11:12 -04:00
|
|
|
}
|
|
|
|
|
2018-04-02 10:45:37 -04:00
|
|
|
.deploy-token-help-block {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 0;
|
2018-03-19 12:11:12 -04:00
|
|
|
}
|
|
|
|
}
|
2018-07-25 07:05:40 -04:00
|
|
|
|
|
|
|
.mirror-error-badge {
|
2018-08-16 15:31:53 -04:00
|
|
|
background-color: $red-400;
|
2018-07-25 07:05:40 -04:00
|
|
|
border-radius: $border-radius-default;
|
|
|
|
color: $white-light;
|
|
|
|
}
|
|
|
|
|
2018-08-01 19:08:22 -04:00
|
|
|
.push-pull-table {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|