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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-13 19:24:29 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-13 19:25:18 +0400
commit68bfcd0521020d9f0154ffe767aa1e327e93ca24 (patch)
tree60b9f4c814d9583073de40785a94ff446124f6ed /app/assets
parent122acb2254c94823bd7b7b64aa1bd953df5fdf66 (diff)
Add public filter to admin projects
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/application.scss1
-rw-r--r--app/assets/stylesheets/sections/admin.scss5
2 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index 54690e73f81..0e951e7f68c 100644
--- a/app/assets/stylesheets/application.scss
+++ b/app/assets/stylesheets/application.scss
@@ -32,6 +32,7 @@
@import "sections/profile.scss";
@import "sections/login.scss";
@import "sections/editor.scss";
+@import "sections/admin.scss";
@import "highlight/white.scss";
@import "highlight/dark.scss";
diff --git a/app/assets/stylesheets/sections/admin.scss b/app/assets/stylesheets/sections/admin.scss
new file mode 100644
index 00000000000..18b102d7022
--- /dev/null
+++ b/app/assets/stylesheets/sections/admin.scss
@@ -0,0 +1,5 @@
+.admin-filter form {
+ label { width: 110px; }
+ .controls { margin-left: 130px; }
+ .form-actions { padding-left: 130px; background: #fff }
+}