simple-admin 0.1.0.pre.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +3 -0
  3. data/.gitattributes +1 -0
  4. data/.gitignore +17 -0
  5. data/.hound.yml +2 -0
  6. data/.inch.yml +4 -0
  7. data/.rspec +2 -0
  8. data/.rubocop.yml +68 -0
  9. data/.travis.yml +11 -0
  10. data/CODE_OF_CONDUCT.md +74 -0
  11. data/CONTRIBUTING.md +51 -0
  12. data/Gemfile +27 -0
  13. data/LICENSE.txt +21 -0
  14. data/README.md +87 -0
  15. data/Rakefile +20 -0
  16. data/app/assets/fonts/Simple-Line-Icons.woff +0 -0
  17. data/app/assets/javascripts/simple_admin/application.js +28 -0
  18. data/app/assets/stylesheets/simple_admin/application.scss +48 -0
  19. data/app/assets/stylesheets/simple_admin/global/buttons.css +473 -0
  20. data/app/assets/stylesheets/simple_admin/global/errors.css +12 -0
  21. data/app/assets/stylesheets/simple_admin/global/fontawesome-icons.css +3024 -0
  22. data/app/assets/stylesheets/simple_admin/global/fonts.css +560 -0
  23. data/app/assets/stylesheets/simple_admin/global/jquery.dataTables.css +169 -0
  24. data/app/assets/stylesheets/simple_admin/global/pagination.css +11 -0
  25. data/app/assets/stylesheets/simple_admin/global/reset.css +197 -0
  26. data/app/assets/stylesheets/simple_admin/global/simple-line-icons.css +672 -0
  27. data/app/assets/stylesheets/simple_admin/global/table.css +214 -0
  28. data/app/assets/stylesheets/simple_admin/global/tags.css +87 -0
  29. data/app/assets/stylesheets/simple_admin/page/aside.css +324 -0
  30. data/app/assets/stylesheets/simple_admin/page/header.css +332 -0
  31. data/app/assets/stylesheets/simple_admin/page/main-container.css +222 -0
  32. data/app/assets/stylesheets/simple_admin/page/sign_in.css +15 -0
  33. data/app/assets/stylesheets/simple_admin/tabs.css +26 -0
  34. data/app/controllers/simple_admin/admin/application_controller.rb +21 -0
  35. data/app/controllers/simple_admin/admin/search_controller.rb +29 -0
  36. data/app/controllers/simple_admin/admin/system/entities_controller.rb +37 -0
  37. data/app/controllers/simple_admin/admin/system/entity_field_types_controller.rb +31 -0
  38. data/app/controllers/simple_admin/admin/system/entity_fields_controller.rb +20 -0
  39. data/app/helpers/simple_admin_helper.rb +15 -0
  40. data/app/models/simple_admin/base.rb +14 -0
  41. data/app/models/simple_admin/entity.rb +50 -0
  42. data/app/models/simple_admin/entity_field.rb +77 -0
  43. data/app/models/simple_admin/entity_field_setting.rb +5 -0
  44. data/app/models/simple_admin/entity_field_type.rb +79 -0
  45. data/app/views/kaminari/_next_page.html.erb +5 -0
  46. data/app/views/kaminari/_page.html.erb +3 -0
  47. data/app/views/kaminari/_paginator.html.erb +26 -0
  48. data/app/views/kaminari/_prev_page.html.erb +5 -0
  49. data/app/views/layouts/devise.html.erb +11 -0
  50. data/app/views/layouts/simple_admin.html.erb +28 -0
  51. data/app/views/simple_admin/admin/resource/_form.html.erb +19 -0
  52. data/app/views/simple_admin/admin/resource/edit.html.erb +21 -0
  53. data/app/views/simple_admin/admin/resource/index.html.erb +13 -0
  54. data/app/views/simple_admin/admin/resource/new.html.erb +21 -0
  55. data/app/views/simple_admin/admin/search/index.html.erb +55 -0
  56. data/app/views/simple_admin/admin/shared/_aside.html.erb +46 -0
  57. data/app/views/simple_admin/admin/shared/_footer.html.erb +5 -0
  58. data/app/views/simple_admin/admin/shared/_header.html.erb +7 -0
  59. data/app/views/simple_admin/admin/shared/collection/_header.html.erb +12 -0
  60. data/app/views/simple_admin/admin/shared/collection/_table_body.html.erb +29 -0
  61. data/app/views/simple_admin/admin/shared/collection/_table_header.html.erb +11 -0
  62. data/app/views/simple_admin/admin/shared/components/_logout.html.erb +6 -0
  63. data/app/views/simple_admin/admin/shared/components/_search.html.erb +14 -0
  64. data/app/views/simple_admin/admin/shared/messages/_errors.html.erb +9 -0
  65. data/app/views/simple_admin/admin/shared/messages/_flash.html.erb +8 -0
  66. data/app/views/simple_admin/admin/system/entities/_form.html.erb +32 -0
  67. data/app/views/simple_admin/admin/system/entities/edit.html.erb +27 -0
  68. data/app/views/simple_admin/admin/system/entities/entity_fields/_form.html.erb +62 -0
  69. data/app/views/simple_admin/admin/system/entities/entity_fields/edit.html.erb +9 -0
  70. data/app/views/simple_admin/admin/system/entities/entity_fields/index.html.erb +39 -0
  71. data/app/views/simple_admin/admin/system/entities/entity_fields/new.html.erb +12 -0
  72. data/app/views/simple_admin/admin/system/entities/index.html.erb +59 -0
  73. data/app/views/simple_admin/admin/system/entities/new.html.erb +21 -0
  74. data/app/views/simple_admin/admin/system/entity_field_types/_form.html.erb +21 -0
  75. data/app/views/simple_admin/admin/system/entity_field_types/edit.html.erb +24 -0
  76. data/app/views/simple_admin/admin/system/entity_field_types/index.html.erb +55 -0
  77. data/app/views/simple_admin/admin/system/entity_field_types/new.html.erb +21 -0
  78. data/app/views/simple_admin/admin/system/entity_fields/create.js.erb +18 -0
  79. data/app/views/simple_admin/admin/system/entity_fields/destroy.js.erb +18 -0
  80. data/app/views/simple_admin/admin/system/entity_fields/update.js.erb +1 -0
  81. data/app/views/simple_admin/fields/boolean/_form.html.erb +6 -0
  82. data/app/views/simple_admin/fields/boolean/_index.html.erb +5 -0
  83. data/app/views/simple_admin/fields/image/_collection.html.erb +5 -0
  84. data/app/views/simple_admin/fields/image/_form.html.erb +6 -0
  85. data/app/views/simple_admin/fields/number/_collection.html.erb +5 -0
  86. data/app/views/simple_admin/fields/number/_form.html.erb +6 -0
  87. data/app/views/simple_admin/fields/password/_form.html.erb +6 -0
  88. data/app/views/simple_admin/fields/relation/_collection.html.erb +3 -0
  89. data/app/views/simple_admin/fields/relation/_form.html.erb +6 -0
  90. data/app/views/simple_admin/fields/select/_form.html.erb +8 -0
  91. data/app/views/simple_admin/fields/select/_index.html.erb +5 -0
  92. data/app/views/simple_admin/fields/string/_collection.html.erb +3 -0
  93. data/app/views/simple_admin/fields/string/_form.html.erb +6 -0
  94. data/app/views/simple_admin/fields/tags/_collection.html.erb +3 -0
  95. data/app/views/simple_admin/fields/tags/_form.html.erb +6 -0
  96. data/app/views/simple_admin/fields/text/_collection.html.erb +3 -0
  97. data/app/views/simple_admin/fields/text/_form.html.erb +6 -0
  98. data/bin/bundle +4 -0
  99. data/bin/rails +5 -0
  100. data/codecov.yml +21 -0
  101. data/config/locales/en.yml +23 -0
  102. data/config/locales/ru.yml +20 -0
  103. data/config/routes.rb +19 -0
  104. data/lib/generators/simple_admin/install_generator.rb +41 -0
  105. data/lib/generators/simple_admin/migration_generator.rb +24 -0
  106. data/lib/generators/templates/application_controller.rb +20 -0
  107. data/lib/generators/templates/initializers/simple_admin.rb.erb +3 -0
  108. data/lib/generators/templates/migrations/core_data_migration.rb +12 -0
  109. data/lib/generators/templates/migrations/core_migrations/entities_migration.rb +13 -0
  110. data/lib/generators/templates/migrations/core_migrations/entity_field_settings_migration.rb +12 -0
  111. data/lib/generators/templates/migrations/core_migrations/entity_field_types_migration.rb +12 -0
  112. data/lib/generators/templates/migrations/core_migrations/entity_fields_migration.rb +18 -0
  113. data/lib/generators/templates/user.rb +24 -0
  114. data/lib/generators/templates/views/devise/registrations/new.html.erb +46 -0
  115. data/lib/generators/templates/views/devise/sessions/new.html.erb +35 -0
  116. data/lib/generators/templates/views/devise/shared/_footer.html.erb +3 -0
  117. data/lib/simple_admin.rb +39 -0
  118. data/lib/simple_admin/config.rb +19 -0
  119. data/lib/simple_admin/engine.rb +15 -0
  120. data/lib/simple_admin/helpers/boolean_helper.rb +36 -0
  121. data/lib/simple_admin/helpers/url_helper.rb +29 -0
  122. data/lib/simple_admin/refinements/boolean.rb +36 -0
  123. data/lib/simple_admin/resource_controller/actions_builder.rb +40 -0
  124. data/lib/simple_admin/resource_controller/controller_builder.rb +31 -0
  125. data/lib/simple_admin/resource_controller/crudify.rb +111 -0
  126. data/lib/simple_admin/resource_controller/crudify_dynamic_resource.rb +55 -0
  127. data/lib/simple_admin/resource_controller/dynamic_fields.rb +53 -0
  128. data/lib/simple_admin/search.rb +23 -0
  129. data/lib/simple_admin/version.rb +3 -0
  130. data/simple_admin.gemspec +38 -0
  131. data/vendor/assets/fonts/Simple-Line-Icons.eot +0 -0
  132. data/vendor/assets/fonts/Simple-Line-Icons.ttf +0 -0
  133. data/vendor/assets/fonts/Simple-Line-Icons.woff +0 -0
  134. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  135. data/vendor/assets/fonts/fontawesome-webfont.svg +2671 -0
  136. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  137. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  138. data/vendor/assets/fonts/fontawesome-webfont.woff2 +0 -0
  139. metadata +307 -0
@@ -0,0 +1,169 @@
1
+ table.dataTable {
2
+ clear: both;
3
+ margin-top: 6px!important;
4
+ margin-bottom: 6px!important;
5
+ max-width: none!important;
6
+ border-collapse: separate!important
7
+ }
8
+
9
+ table.dataTable td,table.dataTable th {
10
+ -webkit-box-sizing: content-box;
11
+ box-sizing: content-box
12
+ }
13
+
14
+ table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty {
15
+ text-align: center
16
+ }
17
+
18
+ table.dataTable.nowrap td,table.dataTable.nowrap th {
19
+ white-space: nowrap
20
+ }
21
+
22
+ div.dataTables_length label {
23
+ font-weight: 400;
24
+ text-align: left;
25
+ white-space: nowrap
26
+ }
27
+
28
+ div.dataTables_length select {
29
+ width: 75px;
30
+ display: inline-block
31
+ }
32
+
33
+ div.dataTables_filter {
34
+ text-align: right
35
+ }
36
+
37
+ div.dataTables_filter label {
38
+ font-weight: 400;
39
+ white-space: nowrap;
40
+ text-align: left
41
+ }
42
+
43
+ div.dataTables_filter input {
44
+ margin-left: .5em;
45
+ display: inline-block;
46
+ width: auto
47
+ }
48
+
49
+ div.dataTables_info {
50
+ padding-top: 8px;
51
+ white-space: nowrap
52
+ }
53
+
54
+ div.dataTables_paginate {
55
+ margin: 0;
56
+ white-space: nowrap;
57
+ text-align: right
58
+ }
59
+
60
+ div.dataTables_paginate ul.pagination {
61
+ margin: 2px 0;
62
+ white-space: nowrap
63
+ }
64
+
65
+ div.dataTables_scrollBody>table,div.dataTables_scrollHead table.dataTable {
66
+ margin-bottom: 0!important
67
+ }
68
+
69
+ div.dataTables_processing {
70
+ position: absolute;
71
+ top: 50%;
72
+ left: 50%;
73
+ width: 200px;
74
+ margin-left: -100px;
75
+ margin-top: -26px;
76
+ text-align: center;
77
+ padding: 1em 0
78
+ }
79
+
80
+ div.dataTables_scrollBody>table,div.dataTables_scrollFoot>table {
81
+ margin-top: 0!important;
82
+ border-top: none
83
+ }
84
+
85
+ table.dataTable thead>tr>td.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc {
86
+ padding-right: 30px
87
+ }
88
+
89
+ table.dataTable thead>tr>td:active,table.dataTable thead>tr>th:active {
90
+ outline: 0
91
+ }
92
+
93
+ table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled {
94
+ cursor: pointer;
95
+ position: relative
96
+ }
97
+
98
+ table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_desc_disabled:after {
99
+ position: absolute;
100
+ bottom: 8px;
101
+ right: 8px;
102
+ display: block;
103
+ font-family: 'Glyphicons Halflings';
104
+ opacity: .5
105
+ }
106
+
107
+ table.dataTable thead .sorting:after {
108
+ opacity: .2;
109
+ content: "\e150"
110
+ }
111
+
112
+ table.dataTable thead .sorting_asc:after {
113
+ content: "\e155"
114
+ }
115
+
116
+ table.dataTable thead .sorting_desc:after {
117
+ content: "\e156"
118
+ }
119
+
120
+ table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after {
121
+ color: #eee
122
+ }
123
+
124
+ div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_desc:after {
125
+ display: none
126
+ }
127
+
128
+ div.dataTables_scrollBody>table>tbody>tr:first-child>td,div.dataTables_scrollBody>table>tbody>tr:first-child>th {
129
+ border-top: none
130
+ }
131
+
132
+ @media screen and (max-width: 767px) {
133
+ div.dataTables_filter,div.dataTables_info,div.dataTables_length,div.dataTables_paginate {
134
+ text-align:center
135
+ }
136
+ }
137
+
138
+ table.dataTable.table-condensed>thead>tr>th {
139
+ padding-right: 20px
140
+ }
141
+
142
+ table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after {
143
+ top: 6px;
144
+ right: 6px
145
+ }
146
+
147
+ table.table-bordered.dataTable td,table.table-bordered.dataTable th {
148
+ border-left-width: 0
149
+ }
150
+
151
+ table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable th:last-child {
152
+ border-right-width: 0
153
+ }
154
+
155
+ div.dataTables_scrollHead table.table-bordered,table.table-bordered.dataTable tbody td,table.table-bordered.dataTable tbody th {
156
+ border-bottom-width: 0
157
+ }
158
+
159
+ div.table-responsive>div.dataTables_wrapper>div.row {
160
+ margin: 0
161
+ }
162
+
163
+ div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child {
164
+ padding-left: 0
165
+ }
166
+
167
+ div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child {
168
+ padding-right: 0
169
+ }
@@ -0,0 +1,11 @@
1
+ .pagination > li:last-child > a, .pagination > li:last-child > span {
2
+ border-bottom-right-radius: 4px;
3
+ border-top-right-radius: 4px;
4
+ padding: 9px 12px;
5
+ }
6
+ .pagination > li:first-child > a, .pagination > li:first-child > span {
7
+ margin-left: 0;
8
+ border-bottom-left-radius: 4px;
9
+ border-top-left-radius: 4px;
10
+ padding: 9px 12px;
11
+ }
@@ -0,0 +1,197 @@
1
+ body {
2
+ font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
3
+ font-size: 14px;
4
+ color: #646464;
5
+ background-color: #f5f5f5;
6
+ }
7
+
8
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
9
+ margin: 0;
10
+ font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
11
+ font-weight: 600;
12
+ line-height: 1.2;
13
+ color: inherit;
14
+ }
15
+
16
+ h4, .h4 {
17
+ font-size: 20px;
18
+ }
19
+
20
+ .font-w600 {
21
+ font-weight: 600 !important;
22
+ }
23
+
24
+ .text-white {
25
+ color: #fff;
26
+ }
27
+
28
+ a {
29
+ color: #337ab7;
30
+ text-decoration: none;
31
+ }
32
+
33
+ a:hover, a:focus {
34
+ color: #23527c;
35
+ text-decoration: underline;
36
+ }
37
+
38
+ .pull-left {
39
+ float: left !important;
40
+ }
41
+
42
+ .pull-right {
43
+ float: right !important;
44
+ }
45
+
46
+ .btn {
47
+ display: inline-block;
48
+ margin-bottom: 0;
49
+ font-weight: normal;
50
+ text-align: center;
51
+ vertical-align: middle;
52
+ touch-action: manipulation;
53
+ cursor: pointer;
54
+ background-image: none;
55
+ border: 1px solid transparent;
56
+ white-space: nowrap;
57
+ padding: 6px 12px;
58
+ font-size: 14px;
59
+ line-height: 1.428571429;
60
+ border-radius: 4px;
61
+ -webkit-user-select: none;
62
+ -moz-user-select: none;
63
+ -ms-user-select: none;
64
+ user-select: none;
65
+ }
66
+
67
+ .btn-default {
68
+ color: #545454;
69
+ background-color: #f5f5f5;
70
+ border-color: #e9e9e9;
71
+ }
72
+
73
+ .remove-margin-t {
74
+ margin-top: 0 !important;
75
+ }
76
+
77
+ .remove-margin-b {
78
+ margin-bottom: 0 !important;
79
+ }
80
+
81
+ .row {
82
+ margin-left: -15px;
83
+ margin-right: -15px;
84
+ }
85
+
86
+ .row:before, .row:after {
87
+ content: " ";
88
+ display: table;
89
+ }
90
+
91
+ .row:after {
92
+ clear: both;
93
+ }
94
+
95
+ .bg-gray-lighter {
96
+ background-color: #f9f9f9;
97
+ }
98
+
99
+ .font-s12 {
100
+ font-size: 12px !important;
101
+ }
102
+
103
+ @media screen and (min-width:1200px) {
104
+ .block-content.block-content-narrow {
105
+ padding-left: 10%;
106
+ padding-right: 10%
107
+ }
108
+ }
109
+
110
+ label {
111
+ display: inline-block;
112
+ max-width: 100%;
113
+ margin-bottom: 5px;
114
+ font-weight: bold;
115
+ }
116
+
117
+ label {
118
+ font-size: 13px;
119
+ font-weight: 600;
120
+ }
121
+
122
+ .form-control {
123
+ color: #646464;
124
+ border: 1px solid #e6e6e6;
125
+ border-radius: 3px;
126
+ -webkit-box-shadow: none;
127
+ box-shadow: none;
128
+ -webkit-transition: all .15s ease-out;
129
+ transition: all 0.15s ease-out;
130
+ }
131
+
132
+ .form-group {
133
+ margin-bottom: 20px;
134
+ }
135
+
136
+ .block.block-bordered {
137
+ border: 1px solid #e9e9e9;
138
+ -webkit-box-shadow: none;
139
+ box-shadow: none;
140
+ }
141
+
142
+ .block.block-rounded > .block-header {
143
+ border-top-right-radius: 3px;
144
+ border-top-left-radius: 3px;
145
+ }
146
+
147
+ .block.block-bordered > .block-header {
148
+ border-bottom: 1px solid #e9e9e9;
149
+ }
150
+
151
+ .block-options {
152
+ float: right;
153
+ margin: -3px 0 -3px 15px;
154
+ padding: 0;
155
+ height: 24px;
156
+ list-style: none;
157
+ }
158
+
159
+ .block-options > li {
160
+ display: inline-block;
161
+ margin: 0 2px;
162
+ padding: 0;
163
+ }
164
+
165
+ .block-options > li > a, .block-options > li > button {
166
+ display: block;
167
+ padding: 2px 3px;
168
+ color: #999999;
169
+ opacity: 0.6;
170
+ }
171
+
172
+ .block-options > li > button {
173
+ background: none;
174
+ border: none;
175
+ }
176
+
177
+ .block-header {
178
+ padding: 15px 20px;
179
+ -webkit-transition: opacity .2s ease-out;
180
+ transition: opacity 0.2s ease-out;
181
+ }
182
+
183
+ .bg-white {
184
+ background-color: #fff;
185
+ }
186
+
187
+ .push-30-t {
188
+ margin-top: 30px !important;
189
+ }
190
+
191
+ .push-50 {
192
+ margin-bottom: 50px !important;
193
+ }
194
+
195
+ .text-muted {
196
+ color: #999999;
197
+ }
@@ -0,0 +1,672 @@
1
+ @font-face {
2
+ font-family: Simple-Line-Icons;
3
+ src: font-url('Simple-Line-Icons.eot');
4
+ src: font-url('Simple-Line-Icons.eot?#iefix') format('embedded-opentype'), font-url('Simple-Line-Icons.woff') format('woff'), font-url('Simple-Line-Icons.ttf') format('truetype'), font-url('Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
5
+ font-weight: 400;
6
+ font-style: normal
7
+ }
8
+
9
+ .si {
10
+ font-family: Simple-Line-Icons;
11
+ speak: none;
12
+ font-style: normal;
13
+ font-weight: 400;
14
+ font-variant: normal;
15
+ text-transform: none;
16
+ line-height: 1;
17
+ -webkit-font-smoothing: antialiased
18
+ }
19
+
20
+ .btn .si {
21
+ position: relative;
22
+ bottom: -2px;
23
+ display: inline-block
24
+ }
25
+
26
+ .si-user-female:before {
27
+ content: "\e000"
28
+ }
29
+
30
+ .si-user-follow:before {
31
+ content: "\e002"
32
+ }
33
+
34
+ .si-user-following:before {
35
+ content: "\e003"
36
+ }
37
+
38
+ .si-user-unfollow:before {
39
+ content: "\e004"
40
+ }
41
+
42
+ .si-trophy:before {
43
+ content: "\e006"
44
+ }
45
+
46
+ .si-screen-smartphone:before {
47
+ content: "\e010"
48
+ }
49
+
50
+ .si-screen-desktop:before {
51
+ content: "\e011"
52
+ }
53
+
54
+ .si-plane:before {
55
+ content: "\e012"
56
+ }
57
+
58
+ .si-notebook:before {
59
+ content: "\e013"
60
+ }
61
+
62
+ .si-moustache:before {
63
+ content: "\e014"
64
+ }
65
+
66
+ .si-mouse:before {
67
+ content: "\e015"
68
+ }
69
+
70
+ .si-magnet:before {
71
+ content: "\e016"
72
+ }
73
+
74
+ .si-energy:before {
75
+ content: "\e020"
76
+ }
77
+
78
+ .si-emoticon-smile:before {
79
+ content: "\e021"
80
+ }
81
+
82
+ .si-disc:before {
83
+ content: "\e022"
84
+ }
85
+
86
+ .si-cursor-move:before {
87
+ content: "\e023"
88
+ }
89
+
90
+ .si-crop:before {
91
+ content: "\e024"
92
+ }
93
+
94
+ .si-credit-card:before {
95
+ content: "\e025"
96
+ }
97
+
98
+ .si-chemistry:before {
99
+ content: "\e026"
100
+ }
101
+
102
+ .si-user:before {
103
+ content: "\e005"
104
+ }
105
+
106
+ .si-speedometer:before {
107
+ content: "\e007"
108
+ }
109
+
110
+ .si-social-youtube:before {
111
+ content: "\e008"
112
+ }
113
+
114
+ .si-social-twitter:before {
115
+ content: "\e009"
116
+ }
117
+
118
+ .si-social-tumblr:before {
119
+ content: "\e00a"
120
+ }
121
+
122
+ .si-social-facebook:before {
123
+ content: "\e00b"
124
+ }
125
+
126
+ .si-social-dropbox:before {
127
+ content: "\e00c"
128
+ }
129
+
130
+ .si-social-dribbble:before {
131
+ content: "\e00d"
132
+ }
133
+
134
+ .si-shield:before {
135
+ content: "\e00e"
136
+ }
137
+
138
+ .si-screen-tablet:before {
139
+ content: "\e00f"
140
+ }
141
+
142
+ .si-magic-wand:before {
143
+ content: "\e017"
144
+ }
145
+
146
+ .si-hourglass:before {
147
+ content: "\e018"
148
+ }
149
+
150
+ .si-graduation:before {
151
+ content: "\e019"
152
+ }
153
+
154
+ .si-ghost:before {
155
+ content: "\e01a"
156
+ }
157
+
158
+ .si-game-controller:before {
159
+ content: "\e01b"
160
+ }
161
+
162
+ .si-fire:before {
163
+ content: "\e01c"
164
+ }
165
+
166
+ .si-eyeglasses:before {
167
+ content: "\e01d"
168
+ }
169
+
170
+ .si-envelope-open:before {
171
+ content: "\e01e"
172
+ }
173
+
174
+ .si-envelope-letter:before {
175
+ content: "\e01f"
176
+ }
177
+
178
+ .si-bell:before {
179
+ content: "\e027"
180
+ }
181
+
182
+ .si-badge:before {
183
+ content: "\e028"
184
+ }
185
+
186
+ .si-anchor:before {
187
+ content: "\e029"
188
+ }
189
+
190
+ .si-wallet:before {
191
+ content: "\e02a"
192
+ }
193
+
194
+ .si-vector:before {
195
+ content: "\e02b"
196
+ }
197
+
198
+ .si-speech:before {
199
+ content: "\e02c"
200
+ }
201
+
202
+ .si-puzzle:before {
203
+ content: "\e02d"
204
+ }
205
+
206
+ .si-printer:before {
207
+ content: "\e02e"
208
+ }
209
+
210
+ .si-present:before {
211
+ content: "\e02f"
212
+ }
213
+
214
+ .si-playlist:before {
215
+ content: "\e030"
216
+ }
217
+
218
+ .si-pin:before {
219
+ content: "\e031"
220
+ }
221
+
222
+ .si-picture:before {
223
+ content: "\e032"
224
+ }
225
+
226
+ .si-map:before {
227
+ content: "\e033"
228
+ }
229
+
230
+ .si-layers:before {
231
+ content: "\e034"
232
+ }
233
+
234
+ .si-handbag:before {
235
+ content: "\e035"
236
+ }
237
+
238
+ .si-globe-alt:before {
239
+ content: "\e036"
240
+ }
241
+
242
+ .si-globe:before {
243
+ content: "\e037"
244
+ }
245
+
246
+ .si-frame:before {
247
+ content: "\e038"
248
+ }
249
+
250
+ .si-folder-alt:before {
251
+ content: "\e039"
252
+ }
253
+
254
+ .si-film:before {
255
+ content: "\e03a"
256
+ }
257
+
258
+ .si-feed:before {
259
+ content: "\e03b"
260
+ }
261
+
262
+ .si-earphones-alt:before {
263
+ content: "\e03c"
264
+ }
265
+
266
+ .si-earphones:before {
267
+ content: "\e03d"
268
+ }
269
+
270
+ .si-drop:before {
271
+ content: "\e03e"
272
+ }
273
+
274
+ .si-drawer:before {
275
+ content: "\e03f"
276
+ }
277
+
278
+ .si-docs:before {
279
+ content: "\e040"
280
+ }
281
+
282
+ .si-directions:before {
283
+ content: "\e041"
284
+ }
285
+
286
+ .si-direction:before {
287
+ content: "\e042"
288
+ }
289
+
290
+ .si-diamond:before {
291
+ content: "\e043"
292
+ }
293
+
294
+ .si-cup:before {
295
+ content: "\e044"
296
+ }
297
+
298
+ .si-compass:before {
299
+ content: "\e045"
300
+ }
301
+
302
+ .si-call-out:before {
303
+ content: "\e046"
304
+ }
305
+
306
+ .si-call-in:before {
307
+ content: "\e047"
308
+ }
309
+
310
+ .si-call-end:before {
311
+ content: "\e048"
312
+ }
313
+
314
+ .si-calculator:before {
315
+ content: "\e049"
316
+ }
317
+
318
+ .si-bubbles:before {
319
+ content: "\e04a"
320
+ }
321
+
322
+ .si-briefcase:before {
323
+ content: "\e04b"
324
+ }
325
+
326
+ .si-book-open:before {
327
+ content: "\e04c"
328
+ }
329
+
330
+ .si-basket-loaded:before {
331
+ content: "\e04d"
332
+ }
333
+
334
+ .si-basket:before {
335
+ content: "\e04e"
336
+ }
337
+
338
+ .si-bag:before {
339
+ content: "\e04f"
340
+ }
341
+
342
+ .si-action-undo:before {
343
+ content: "\e050"
344
+ }
345
+
346
+ .si-action-redo:before {
347
+ content: "\e051"
348
+ }
349
+
350
+ .si-wrench:before {
351
+ content: "\e052"
352
+ }
353
+
354
+ .si-umbrella:before {
355
+ content: "\e053"
356
+ }
357
+
358
+ .si-trash:before {
359
+ content: "\e054"
360
+ }
361
+
362
+ .si-tag:before {
363
+ content: "\e055"
364
+ }
365
+
366
+ .si-support:before {
367
+ content: "\e056"
368
+ }
369
+
370
+ .si-size-fullscreen:before {
371
+ content: "\e057"
372
+ }
373
+
374
+ .si-size-actual:before {
375
+ content: "\e058"
376
+ }
377
+
378
+ .si-shuffle:before {
379
+ content: "\e059"
380
+ }
381
+
382
+ .si-share-alt:before {
383
+ content: "\e05a"
384
+ }
385
+
386
+ .si-share:before {
387
+ content: "\e05b"
388
+ }
389
+
390
+ .si-rocket:before {
391
+ content: "\e05c"
392
+ }
393
+
394
+ .si-question:before {
395
+ content: "\e05d"
396
+ }
397
+
398
+ .si-pie-chart:before {
399
+ content: "\e05e"
400
+ }
401
+
402
+ .si-pencil:before {
403
+ content: "\e05f"
404
+ }
405
+
406
+ .si-note:before {
407
+ content: "\e060"
408
+ }
409
+
410
+ .si-music-tone-alt:before {
411
+ content: "\e061"
412
+ }
413
+
414
+ .si-music-tone:before {
415
+ content: "\e062"
416
+ }
417
+
418
+ .si-microphone:before {
419
+ content: "\e063"
420
+ }
421
+
422
+ .si-loop:before {
423
+ content: "\e064"
424
+ }
425
+
426
+ .si-logout:before {
427
+ content: "\e065"
428
+ }
429
+
430
+ .si-login:before {
431
+ content: "\e066"
432
+ }
433
+
434
+ .si-list:before {
435
+ content: "\e067"
436
+ }
437
+
438
+ .si-like:before {
439
+ content: "\e068"
440
+ }
441
+
442
+ .si-home:before {
443
+ content: "\e069"
444
+ }
445
+
446
+ .si-grid:before {
447
+ content: "\e06a"
448
+ }
449
+
450
+ .si-graph:before {
451
+ content: "\e06b"
452
+ }
453
+
454
+ .si-equalizer:before {
455
+ content: "\e06c"
456
+ }
457
+
458
+ .si-dislike:before {
459
+ content: "\e06d"
460
+ }
461
+
462
+ .si-cursor:before {
463
+ content: "\e06e"
464
+ }
465
+
466
+ .si-control-start:before {
467
+ content: "\e06f"
468
+ }
469
+
470
+ .si-control-rewind:before {
471
+ content: "\e070"
472
+ }
473
+
474
+ .si-control-play:before {
475
+ content: "\e071"
476
+ }
477
+
478
+ .si-control-pause:before {
479
+ content: "\e072"
480
+ }
481
+
482
+ .si-control-forward:before {
483
+ content: "\e073"
484
+ }
485
+
486
+ .si-control-end:before {
487
+ content: "\e074"
488
+ }
489
+
490
+ .si-calendar:before {
491
+ content: "\e075"
492
+ }
493
+
494
+ .si-bulb:before {
495
+ content: "\e076"
496
+ }
497
+
498
+ .si-bar-chart:before {
499
+ content: "\e077"
500
+ }
501
+
502
+ .si-arrow-up:before {
503
+ content: "\e078"
504
+ }
505
+
506
+ .si-arrow-right:before {
507
+ content: "\e079"
508
+ }
509
+
510
+ .si-arrow-left:before {
511
+ content: "\e07a"
512
+ }
513
+
514
+ .si-arrow-down:before {
515
+ content: "\e07b"
516
+ }
517
+
518
+ .si-ban:before {
519
+ content: "\e07c"
520
+ }
521
+
522
+ .si-bubble:before {
523
+ content: "\e07d"
524
+ }
525
+
526
+ .si-camcorder:before {
527
+ content: "\e07e"
528
+ }
529
+
530
+ .si-camera:before {
531
+ content: "\e07f"
532
+ }
533
+
534
+ .si-check:before {
535
+ content: "\e080"
536
+ }
537
+
538
+ .si-clock:before {
539
+ content: "\e081"
540
+ }
541
+
542
+ .si-close:before {
543
+ content: "\e082"
544
+ }
545
+
546
+ .si-cloud-download:before {
547
+ content: "\e083"
548
+ }
549
+
550
+ .si-cloud-upload:before {
551
+ content: "\e084"
552
+ }
553
+
554
+ .si-doc:before {
555
+ content: "\e085"
556
+ }
557
+
558
+ .si-envelope:before {
559
+ content: "\e086"
560
+ }
561
+
562
+ .si-eye:before {
563
+ content: "\e087"
564
+ }
565
+
566
+ .si-flag:before {
567
+ content: "\e088"
568
+ }
569
+
570
+ .si-folder:before {
571
+ content: "\e089"
572
+ }
573
+
574
+ .si-heart:before {
575
+ content: "\e08a"
576
+ }
577
+
578
+ .si-info:before {
579
+ content: "\e08b"
580
+ }
581
+
582
+ .si-key:before {
583
+ content: "\e08c"
584
+ }
585
+
586
+ .si-link:before {
587
+ content: "\e08d"
588
+ }
589
+
590
+ .si-lock:before {
591
+ content: "\e08e"
592
+ }
593
+
594
+ .si-lock-open:before {
595
+ content: "\e08f"
596
+ }
597
+
598
+ .si-magnifier:before {
599
+ content: "\e090"
600
+ }
601
+
602
+ .si-magnifier-add:before {
603
+ content: "\e091"
604
+ }
605
+
606
+ .si-magnifier-remove:before {
607
+ content: "\e092"
608
+ }
609
+
610
+ .si-paper-clip:before {
611
+ content: "\e093"
612
+ }
613
+
614
+ .si-paper-plane:before {
615
+ content: "\e094"
616
+ }
617
+
618
+ .si-plus:before {
619
+ content: "\e095"
620
+ }
621
+
622
+ .si-pointer:before {
623
+ content: "\e096"
624
+ }
625
+
626
+ .si-power:before {
627
+ content: "\e097"
628
+ }
629
+
630
+ .si-refresh:before {
631
+ content: "\e098"
632
+ }
633
+
634
+ .si-reload:before {
635
+ content: "\e099"
636
+ }
637
+
638
+ .si-settings:before {
639
+ content: "\e09a"
640
+ }
641
+
642
+ .si-star:before {
643
+ content: "\e09b"
644
+ }
645
+
646
+ .si-symbol-female:before {
647
+ content: "\e09c"
648
+ }
649
+
650
+ .si-symbol-male:before {
651
+ content: "\e09d"
652
+ }
653
+
654
+ .si-target:before {
655
+ content: "\e09e"
656
+ }
657
+
658
+ .si-volume-1:before {
659
+ content: "\e09f"
660
+ }
661
+
662
+ .si-volume-2:before {
663
+ content: "\e0a0"
664
+ }
665
+
666
+ .si-volume-off:before {
667
+ content: "\e0a1"
668
+ }
669
+
670
+ .si-users:before {
671
+ content: "\e001"
672
+ }