summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/filters.scss
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2017-03-20 10:42:41 -0500
committerClement Ho <ClemMakesApps@gmail.com>2017-03-20 10:42:41 -0500
commit970541e0330bce5fea9fa9af4cb26141b455a757 (patch)
treecbe718323f54db9c8b28b638aabbd78d7a4b9550 /app/assets/stylesheets/framework/filters.scss
parentcd3e410110a5c6f33c5e873f8fb54883a8e11754 (diff)
downloadgitlab-ce-970541e0330bce5fea9fa9af4cb26141b455a757.tar.gz
Fix input token spacing
Diffstat (limited to 'app/assets/stylesheets/framework/filters.scss')
-rw-r--r--app/assets/stylesheets/framework/filters.scss10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/assets/stylesheets/framework/filters.scss b/app/assets/stylesheets/framework/filters.scss
index 2ebeaf9a40d..712e4851a9e 100644
--- a/app/assets/stylesheets/framework/filters.scss
+++ b/app/assets/stylesheets/framework/filters.scss
@@ -76,12 +76,14 @@
}
.input-token {
- flex: 1;
- -webkit-flex: 1;
+ max-width: 200px;
}
- .filtered-search-token + .input-token:not(:last-child) {
- max-width: 200px;
+ .input-token:only-child,
+ .input-token:last-child {
+ flex: 1;
+ -webkit-flex: 1;
+ max-width: initial;
}
}