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 18:41:53 +0300
committerFatih Acet <acetfatih@gmail.com>2017-02-03 17:02:43 +0300
commit48b3623fb5688bb5dfc3f1a5e2436c29afc968a2 (patch)
tree049bceb270a4bcea90602f7e6b1f21eb712959c1 /app/assets/stylesheets/pages/boards.scss
parent1fae4d8184e200f8e6a4ccafafd77b031240f04d (diff)
Selected issues show with checkmark
Submit button disables/enables Submit button selects ids - but does not push it yet
Diffstat (limited to 'app/assets/stylesheets/pages/boards.scss')
-rw-r--r--app/assets/stylesheets/pages/boards.scss41
1 files changed, 39 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index f41d4cdd45d..73ed8dd8ab1 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -390,19 +390,34 @@
.top-area {
margin-bottom: 10px;
}
+}
- .form-control {
- margin-bottom: 10px;
+.add-issues-search {
+ display: flex;
+ margin-bottom: 10px;
+
+ .btn {
+ margin-left: 10px;
}
}
.add-issues-list {
+ display: flex;
flex: 1;
margin-left: -$gl-vert-padding;
margin-right: -$gl-vert-padding;
overflow-y: scroll;
}
+.add-issues-list-loading {
+ align-self: center;
+ width: 100%;
+ padding-left: $gl-vert-padding;
+ padding-right: $gl-vert-padding;
+ font-size: 35px;
+ text-align: center;
+}
+
.add-issues-footer {
margin-top: auto;
margin-left: -15px;
@@ -412,6 +427,9 @@
}
.add-issues-list-columns {
+ width: 100%;
+ padding-top: 3px;
+
.card-parent {
width: (100% / 3);
padding: 0 $gl-vert-padding ($gl-vert-padding * 2);
@@ -421,3 +439,22 @@
cursor: pointer;
}
}
+
+.all-issues-selected-empty {
+ align-self: center;
+ margin-bottom: 0;
+}
+
+.issue-card-selected {
+ position: absolute;
+ right: -3px;
+ top: -3px;
+ width: 20px;
+ height: 20px;
+ background-color: $blue-dark;
+ color: $white-light;
+ font-size: 12px;
+ text-align: center;
+ line-height: 20px;
+ border-radius: 50%;
+}