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-01-24 13:27:41 +0300
committerFatih Acet <acetfatih@gmail.com>2017-02-03 17:02:43 +0300
commita132b7d8ce0d962272de5932568a46b64b6dfc5e (patch)
tree604f29503d77d7317050a7b262977110141c07e8 /app/assets/stylesheets/pages/boards.scss
parent52ea505126da19717c9137e6bb301f55965eb6e4 (diff)
Add issues to boards list
This removes the backlog list & instead creates a modal window that will list all issues that are not part of a list for easy adding onto the board Closes #26205
Diffstat (limited to 'app/assets/stylesheets/pages/boards.scss')
-rw-r--r--app/assets/stylesheets/pages/boards.scss52
1 files changed, 51 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index f2d60bff2b5..5390bad1b33 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -250,11 +250,12 @@
}
.issue-boards-search {
- width: 290px;
+ width: 395px;
.form-control {
display: inline-block;
width: 210px;
+ margin-right: 10px
}
}
@@ -354,3 +355,52 @@
padding-right: 0;
}
}
+
+.add-issues-modal {
+ display: flex;
+ align-items: center;
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-color: rgba($black, .3);
+ z-index: 9999;
+}
+
+.add-issues-container {
+ display: flex;
+ flex-direction: column;
+ width: 90vw;
+ height: 85vh;
+ margin-left: auto;
+ margin-right: auto;
+ padding: 25px 15px 0;
+ background-color: $white-light;
+ border-radius: $border-radius-default;
+ box-shadow: 0 2px 12px rgba($black, .5);
+}
+
+.add-issues-header {
+ > h2 {
+ margin: 0;
+ font-size: 18px;
+ }
+
+ .top-area {
+ margin-bottom: 10px;
+ }
+}
+
+.add-issues-list {
+ flex: 1;
+ overflow-y: scroll;
+}
+
+.add-issues-footer {
+ margin-top: auto;
+ margin-left: -15px;
+ margin-right: -15px;
+ padding-left: 15px;
+ padding-right: 15px;
+}