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:
authorJohn Jarvis <jarv@gitlab.com>2019-03-19 18:58:44 +0300
committerJohn Jarvis <jarv@gitlab.com>2019-03-19 18:58:44 +0300
commitd32f9b23bbd48e19d6e7989aafa5c75b292e1e1b (patch)
treee467535ed6c1445cb641f78716be4daad67e4196
parentd9d9d6ea01c5856a02c001011c1dd99dc3678243 (diff)
Revert "Merge branch '7861-cross-project-pipeline-dashboard-mvc-ce-backport' into 'master'"
This reverts commit 99b813ddcd51c125b342fe6b8d2a847a84993621, reversing changes made to bc6cc878d9c82a221c55e08f62a7bec200b7392b.
-rw-r--r--app/assets/stylesheets/components/dashboard_skeleton.scss80
1 files changed, 0 insertions, 80 deletions
diff --git a/app/assets/stylesheets/components/dashboard_skeleton.scss b/app/assets/stylesheets/components/dashboard_skeleton.scss
deleted file mode 100644
index 42ede599bc6..00000000000
--- a/app/assets/stylesheets/components/dashboard_skeleton.scss
+++ /dev/null
@@ -1,80 +0,0 @@
-.dashboard-cards {
- margin-right: -$gl-padding-8;
- margin-left: -$gl-padding-8;
-}
-
-.dashboard-card {
- &-header {
- &-warning {
- background-color: $orange-100;
- }
-
- &-failed {
- background-color: $red-100;
- }
- }
-
- &-body {
- height: 120px;
-
- &-warning {
- background-color: $orange-50;
- }
-
- &-failed {
- background-color: $red-50;
- }
- }
-
- &-time-ago {
- &-icon {
- color: $gray-500;
- }
- }
-
- &-footer {
- border-radius: $gl-padding;
- height: $gl-padding-32;
-
- &-failed {
- background-color: $red-100;
- }
-
- &-arrow {
- color: $gray-300;
- }
-
- &-downstream {
- margin-right: -$gl-padding-8;
- }
-
- &-extra {
- background-color: $gray-400;
- font-size: 10px;
- line-height: $gl-line-height;
- width: $gl-padding;
- }
- }
-
- &-skeleton-info {
- border-radius: $gl-padding;
- height: $gl-padding;
- overflow: hidden;
-
- &::after {
- content: ' ';
- display: block;
- animation: blockTextShine 1s linear infinite forwards;
- background-repeat: no-repeat;
- background-size: cover;
- background-image: linear-gradient(to right,
- $gray-100 0%,
- $gray-50 20%,
- $gray-100 40%,
- $gray-100 100%);
- border-radius: $gl-padding;
- height: $gl-padding;
- margin-top: -$gl-padding-8;
- }
- }
-}