Skip to content

Commit d17dad0

Browse files
committed
Minor improvements
1 parent 23b4eeb commit d17dad0

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
_misc/
2-
2+
Gemfile.lock
33
*.orig
4+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ Show - sidebar on the left:
215215

216216
If you use this component just star it. A developer is more motivated to improve a project when there is some interest.
217217

218+
Take a look at [other ActiveAdmin components](https://github.com/blocknotes?utf8=✓&tab=repositories&q=activeadmin&type=source) that I made if you are curious.
219+
218220
## Contributors
219221

220222
- [Mattia Roccoberton](http://blocknot.es) - creator, maintainer

app/assets/stylesheets/activeadmin_blaze_theme/theme.scss

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,9 @@ body.active_admin {
577577
.sidebar_section {
578578
margin-bottom: 20px;
579579
}
580+
.filter_form .selectize-control > .selectize-input {
581+
width: 100%;
582+
}
580583
}
581584
#active_admin_content > #sidebar, #active_admin_content > #main_content_wrapper {
582585
float: none;
@@ -812,6 +815,9 @@ body.active_admin {
812815
}
813816

814817
// misc
818+
a.member_link {
819+
text-decoration: none;
820+
}
815821
.download_links > a {
816822
@extend .c-button;
817823
@extend .c-button--info;
@@ -837,11 +843,22 @@ body.active_admin {
837843
}
838844
}
839845
}
846+
840847
// textarea comments
841848
#active_admin_comment_body {
842849
width: 100%;
843850
}
844851

852+
// comments
853+
.comments {
854+
.actions {
855+
padding: 0;
856+
}
857+
.pagination_information {
858+
float: none;
859+
}
860+
}
861+
845862
// boolean values
846863
.status_tag {
847864
min-width: 30px;
@@ -968,10 +985,7 @@ body.active_admin {
968985
// width: calc(80% - 22px);
969986
}
970987
.no_rounded {
971-
* {
972-
border-radius: 0;
973-
}
974-
.action_items span.action_item > a {
988+
*, .action_items span.action_item > a, .panel {
975989
border-radius: 0;
976990
}
977991
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ActiveAdminBlazeTheme
2-
VERSION = '0.5.10'
2+
VERSION = '0.5.12'
33
end

0 commit comments

Comments
 (0)