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:
authorPhil Hughes <me@iamphill.com>2017-02-01 18:23:01 +0300
committerFatih Acet <acetfatih@gmail.com>2017-02-03 17:02:44 +0300
commit4428bb27b78bf8f75d8ff15c227a8dfbb82aaa8e (patch)
treed5cfeca79348d875fe6cb4b6de2b94ed0c1d5bc0 /app/assets/stylesheets/pages/boards.scss
parentb4113dba0378936024c496b15b3c8a5f1c0a1021 (diff)
Removed Masonry, instead uses groups of data
Added some error handling which reverts the frontend data changes & notifies the user
Diffstat (limited to 'app/assets/stylesheets/pages/boards.scss')
-rw-r--r--app/assets/stylesheets/pages/boards.scss23
1 files changed, 13 insertions, 10 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index ded15dc493e..9b413f3e61c 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -418,6 +418,18 @@
display: flex;
}
+.add-issues-list-column {
+ width: 100%;
+
+ @media (min-width: $screen-sm-min) {
+ width: 50%;
+ }
+
+ @media (min-width: $screen-md-min) {
+ width: (100% / 3);
+ }
+}
+
.add-issues-list {
display: -webkit-flex;
display: flex;
@@ -429,16 +441,7 @@
overflow-y: scroll;
.card-parent {
- width: 100%;
padding: 0 5px 5px;
-
- @media (min-width: $screen-sm-min) {
- width: 50%;
- }
-
- @media (min-width: $screen-md-min) {
- width: (100% / 3);
- }
}
.card {
@@ -480,6 +483,6 @@
color: $white-light;
border: 1px solid $border-blue-light;
font-size: 9px;
- line-height: 17px;
+ line-height: 15px;
border-radius: 50%;
}