Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-20 17:22:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-20 17:22:11 +0300
commit0c872e02b2c822e3397515ec324051ff540f0cd5 (patch)
treece2fb6ce7030e4dad0f4118d21ab6453e5938cdd /app/assets/stylesheets/pages/settings.scss
parentf7e05a6853b12f02911494c4b3fe53d9540d74fc (diff)
Add latest changes from gitlab-org/gitlab@15-7-stable-eev15.7.0-rc42
Diffstat (limited to 'app/assets/stylesheets/pages/settings.scss')
-rw-r--r--app/assets/stylesheets/pages/settings.scss228
1 files changed, 6 insertions, 222 deletions
diff --git a/app/assets/stylesheets/pages/settings.scss b/app/assets/stylesheets/pages/settings.scss
index c364b233803..2d78ab82b7d 100644
--- a/app/assets/stylesheets/pages/settings.scss
+++ b/app/assets/stylesheets/pages/settings.scss
@@ -1,149 +1,3 @@
-@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 {
- // border-top for each item except the top one
- border-top: 1px solid $border-color;
-
- &:first-of-type {
- margin-top: 10px;
- padding-top: 0;
- border: 0;
- }
-
- + div .settings:first-of-type {
- margin-top: 0;
- border-top: 1px solid $border-color;
- }
-
- &.animating {
- overflow: hidden;
- }
-}
-
-.settings-header {
- position: relative;
- padding: 24px 110px 0 0;
-
- h4 {
- margin-top: 0;
- }
-
- .settings-title {
- cursor: pointer;
- }
-
- button {
- position: absolute;
- top: 20px;
- right: 6px;
- min-width: 80px;
- }
-}
-
-.settings-content {
- max-height: 1px;
- overflow-y: hidden;
- padding-right: 110px;
- animation: collapseMaxHeight 300ms ease-out;
- // Keep the section from expanding when we scroll over it
- pointer-events: none;
-
- .settings.expanded & {
- max-height: none;
- overflow-y: visible;
- animation: expandMaxHeight 300ms ease-in;
- // Reset and allow clicks again when expanded
- pointer-events: auto;
- }
-
- .settings.no-animate & {
- animation: none;
- }
-
- @media(max-width: map-get($grid-breakpoints, md)-1) {
- 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;
- }
-
- .sub-section {
- margin-bottom: 32px;
- padding: 16px;
- border: 1px solid $border-color;
- background-color: $gray-light;
- }
-
- .bs-callout,
- .form-check:first-child,
- .form-check .form-text.text-muted,
- .form-check + .form-text.text-muted {
- margin-top: 0;
- }
-
- .form-check .form-text.text-muted {
- margin-bottom: $grid-size;
- }
-}
-
-.settings-list-icon {
- color: $gl-text-color-secondary;
- font-size: $default-icon-size;
- line-height: 42px;
-}
-
-.settings-message {
- padding: 5px;
- line-height: 1.3;
- color: $gray-900;
- background-color: $orange-50;
- border: 1px solid $orange-200;
- border-radius: $border-radius-base;
-}
-
-.warning-title {
- color: $gray-900;
-}
-
-.danger-title {
- color: $red-500;
-}
-
.integration-settings-form {
.card.card-body,
.info-well {
@@ -160,13 +14,13 @@
.option-title {
font-weight: $gl-font-weight-normal;
display: inline-block;
- color: $gl-text-color;
+ color: var(--gl-text-color, $gl-text-color);
vertical-align: top;
}
.option-description,
.option-disabled-reason {
- color: $project-option-descr-color;
+ color: var(--gray-700, $gray-700);
}
.option-disabled-reason {
@@ -188,79 +42,9 @@
}
}
-.prometheus-metrics-monitoring {
- .card {
- .card-toggle {
- width: 14px;
- }
-
- .badge.badge-pill {
- font-size: 12px;
- line-height: 12px;
- }
-
- .card-header .label-count {
- color: $white;
- background: $common-gray-dark;
- }
-
- .card-body {
- padding: 0;
- }
-
- .flash-container {
- margin-bottom: 0;
- cursor: default;
-
- .flash-notice {
- border-radius: 0;
- }
- }
- }
-
- .custom-monitored-metrics {
- .card-header {
- display: flex;
- align-items: center;
- }
-
- .custom-metric {
- display: flex;
- align-items: center;
- }
-
- .custom-metric-link-bold {
- font-weight: $gl-font-weight-bold;
- text-decoration: none;
- }
- }
-
- .loading-metrics .metrics-load-spinner {
- color: $gray-700;
- }
-
- .metrics-list {
- margin-bottom: 0;
-
- li {
- padding: $gl-padding;
-
- .badge.badge-pill {
- margin-left: 5px;
- background: $badge-bg;
- }
-
- /* Ensure we don't add border if there's only single li */
- + li {
- border-top: 1px solid $border-color;
- }
- }
- }
-}
-
.saml-settings.info-well {
.form-control[readonly] {
- background: $white;
+ background: var(--white, $white);
}
}
@@ -275,8 +59,8 @@
}
.btn-clipboard {
- background-color: $white;
- border: 1px solid $gray-100;
+ background-color: var(--white, $white);
+ border: 1px solid var(--gray-100, $gray-100);
}
.deploy-token-help-block {
@@ -294,7 +78,7 @@
.ci-secure-files-table {
table {
thead {
- border-bottom: 1px solid $white-normal;
+ border-bottom: 1px solid var(--gray-50, $gray-50);
}
tr {