Skip to content

Commit 6ebb4a7

Browse files
committed
remove Iconic
1 parent 567e7a4 commit 6ebb4a7

File tree

19 files changed

+8
-273
lines changed

19 files changed

+8
-273
lines changed

LICENSE

-5
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,3 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1818
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1919
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2020
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21-
22-
Iconic Icons are designed by P.J. Onori and are shared under
23-
the Creative Commons Attribution-Share Alike 3.0 license:
24-
http://creativecommons.org/licenses/by-sa/3.0/us
25-
http://somerandomdude.com/projects/iconic/

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,13 @@ Tool | Description
8484
[Arbre] | Ruby -> HTML, just like that.
8585
[Devise] | Powerful, extensible user authentication
8686
[Formtastic] | A Rails form builder plugin with semantically rich and accessible markup
87-
[Iconic Icons] | An excellent SVG icon set designed by P.J. Onori
8887
[Inherited Resources] | Simplifies controllers with pre-built RESTful controller actions
8988
[Kaminari] | Elegant pagination for any sort of collection
9089
[Ransack] | Provides a simple search API to query your data
9190

9291
[Arbre]: https://github.com/activeadmin/arbre
9392
[Devise]: https://github.com/plataformatec/devise
9493
[Formtastic]: https://github.com/justinfrench/formtastic
95-
[Iconic Icons]: http://somerandomdude.com/projects/iconic
9694
[Inherited Resources]: https://github.com/josevalim/inherited_resources
9795
[Kaminari]: https://github.com/amatsuda/kaminari
9896
[Ransack]: https://github.com/activerecord-hackery/ransack

app/assets/stylesheets/active_admin/_forms.scss

-7
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ form {
5959
.has_many_container {
6060
.handle {
6161
position: absolute;
62-
@include icon-size(3em);
6362
top: calc(50% - 3em / 2);
6463
right: 2px;
6564
padding: 0;
@@ -245,12 +244,6 @@ form {
245244
fieldset.buttons li, fieldset.actions li {
246245
float:left;
247246
padding: 0;
248-
249-
&.cancel {
250-
a {
251-
@include light-button; @include icon(#777, 9px);
252-
}
253-
}
254247
}
255248

256249
}

app/assets/stylesheets/active_admin/components/_buttons.scss

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
td, p {
2-
@include icon(#B3BCC1, 0.8em);
3-
span.icon { margin: 0 3px; }
4-
}
5-
61
a.member_link {
72
margin-right: 7px;
83
white-space: nowrap;

app/assets/stylesheets/active_admin/mixins/_all.scss

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
@import "active_admin/mixins/reset";
33
@import "active_admin/mixins/gradients";
44
@import "active_admin/mixins/shadows";
5-
@import "active_admin/mixins/icons";
65
@import "active_admin/mixins/rounded";
76
@import "active_admin/mixins/buttons";
87
@import "active_admin/mixins/sections";

app/assets/stylesheets/active_admin/mixins/_icons.scss

-20
This file was deleted.

app/assets/stylesheets/active_admin/mixins/_sections.scss

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
line-height: 18px;
1111
margin-bottom: 0.5em;
1212
color: $section-header-text-color;
13-
@include icon($section-header-text-color, 1.0em);
1413

1514
padding: 5px 10px 3px 10px;
1615
}

app/assets/stylesheets/active_admin/structure/_title_bar.scss

-5
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@
3434
& > a, & > .dropdown_menu > a {
3535
@include light-button;
3636
padding: 12px 17px 10px;
37-
span.icon { vertical-align: bottom; margin-right: 4px;}
3837
margin: 0px;
39-
40-
&:hover{
41-
@include icon-color(#000);
42-
}
4338
}
4439
}
4540
}

lib/active_admin.rb

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ module ActiveAdmin
3535
autoload :Event, 'active_admin/event'
3636
autoload :FormBuilder, 'active_admin/form_builder'
3737
autoload :Inputs, 'active_admin/inputs'
38-
autoload :Iconic, 'active_admin/iconic'
3938
autoload :Menu, 'active_admin/menu'
4039
autoload :MenuCollection, 'active_admin/menu_collection'
4140
autoload :MenuItem, 'active_admin/menu_item'

lib/active_admin/form_builder.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def has_many_actions(has_many_form, builder_options, contents)
9393
has_many_form.input builder_options[:sortable], as: :hidden
9494

9595
contents << template.content_tag(:li, class: 'handle') do
96-
Iconic.icon :move_vertical
96+
"MOVE"
9797
end
9898
end
9999

lib/active_admin/iconic.rb

-53
This file was deleted.

0 commit comments

Comments
 (0)