adminlte-rails4 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/CHANGELOG.md +20 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +62 -0
  7. data/Rakefile +15 -0
  8. data/adminlte-rails.gemspec +21 -0
  9. data/app/assets/fonts/FontAwesome.otf +0 -0
  10. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.svg +414 -0
  12. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  13. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  14. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  15. data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
  16. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  17. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  18. data/app/assets/fonts/ionicons.eot +0 -0
  19. data/app/assets/fonts/ionicons.svg +1623 -0
  20. data/app/assets/fonts/ionicons.ttf +0 -0
  21. data/app/assets/fonts/ionicons.woff +0 -0
  22. data/app/assets/images/avatar.png +0 -0
  23. data/app/assets/images/avatar2.png +0 -0
  24. data/app/assets/images/avatar3.png +0 -0
  25. data/app/assets/javascripts/admin-lte.js +1054 -0
  26. data/app/assets/javascripts/bootstrap.min.js +7 -0
  27. data/app/assets/stylesheets/admin-lte.css +3535 -0
  28. data/app/assets/stylesheets/bootstrap.scss +7118 -0
  29. data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +223 -0
  30. data/app/assets/stylesheets/datatables/images/sort_asc.png +0 -0
  31. data/app/assets/stylesheets/datatables/images/sort_asc_disabled.png +0 -0
  32. data/app/assets/stylesheets/datatables/images/sort_both.png +0 -0
  33. data/app/assets/stylesheets/datatables/images/sort_desc.png +0 -0
  34. data/app/assets/stylesheets/datatables/images/sort_desc_disabled.png +0 -0
  35. data/app/assets/stylesheets/font-awesome.scss +1338 -0
  36. data/app/assets/stylesheets/iCheck/all.scss +61 -0
  37. data/app/assets/stylesheets/iCheck/flat/_all.css +560 -0
  38. data/app/assets/stylesheets/iCheck/flat/aero.css +56 -0
  39. data/app/assets/stylesheets/iCheck/flat/aero.png +0 -0
  40. data/app/assets/stylesheets/iCheck/flat/aero@2x.png +0 -0
  41. data/app/assets/stylesheets/iCheck/flat/blue.css +56 -0
  42. data/app/assets/stylesheets/iCheck/flat/blue.png +0 -0
  43. data/app/assets/stylesheets/iCheck/flat/blue@2x.png +0 -0
  44. data/app/assets/stylesheets/iCheck/flat/flat.css +56 -0
  45. data/app/assets/stylesheets/iCheck/flat/flat.png +0 -0
  46. data/app/assets/stylesheets/iCheck/flat/flat@2x.png +0 -0
  47. data/app/assets/stylesheets/iCheck/flat/green.css +56 -0
  48. data/app/assets/stylesheets/iCheck/flat/green.png +0 -0
  49. data/app/assets/stylesheets/iCheck/flat/green@2x.png +0 -0
  50. data/app/assets/stylesheets/iCheck/flat/grey.css +56 -0
  51. data/app/assets/stylesheets/iCheck/flat/grey.png +0 -0
  52. data/app/assets/stylesheets/iCheck/flat/grey@2x.png +0 -0
  53. data/app/assets/stylesheets/iCheck/flat/orange.css +56 -0
  54. data/app/assets/stylesheets/iCheck/flat/orange.png +0 -0
  55. data/app/assets/stylesheets/iCheck/flat/orange@2x.png +0 -0
  56. data/app/assets/stylesheets/iCheck/flat/pink.css +56 -0
  57. data/app/assets/stylesheets/iCheck/flat/pink.png +0 -0
  58. data/app/assets/stylesheets/iCheck/flat/pink@2x.png +0 -0
  59. data/app/assets/stylesheets/iCheck/flat/purple.css +56 -0
  60. data/app/assets/stylesheets/iCheck/flat/purple.png +0 -0
  61. data/app/assets/stylesheets/iCheck/flat/purple@2x.png +0 -0
  62. data/app/assets/stylesheets/iCheck/flat/red.css +56 -0
  63. data/app/assets/stylesheets/iCheck/flat/red.png +0 -0
  64. data/app/assets/stylesheets/iCheck/flat/red@2x.png +0 -0
  65. data/app/assets/stylesheets/iCheck/flat/yellow.css +56 -0
  66. data/app/assets/stylesheets/iCheck/flat/yellow.png +0 -0
  67. data/app/assets/stylesheets/iCheck/flat/yellow@2x.png +0 -0
  68. data/app/assets/stylesheets/ionicons.scss +2183 -0
  69. data/lib/adminlte-rails/engine.rb +9 -0
  70. data/lib/adminlte-rails/source_file.rb +146 -0
  71. data/lib/adminlte-rails/version.rb +5 -0
  72. data/lib/adminlte-rails.rb +6 -0
  73. metadata +185 -0
@@ -0,0 +1,223 @@
1
+ div.dataTables_length label {
2
+ font-weight: normal;
3
+ float: left;
4
+ text-align: left;
5
+ }
6
+
7
+ div.dataTables_length select {
8
+ width: 75px;
9
+ }
10
+
11
+ div.dataTables_filter label {
12
+ font-weight: normal;
13
+ float: right;
14
+ }
15
+
16
+ div.dataTables_filter input {
17
+ width: 16em;
18
+ }
19
+
20
+ div.dataTables_info {
21
+ padding-top: 8px;
22
+ }
23
+
24
+ div.dataTables_paginate {
25
+ float: right;
26
+ margin: 0;
27
+ }
28
+
29
+ div.dataTables_paginate ul.pagination {
30
+ margin: 2px 0;
31
+ white-space: nowrap;
32
+ }
33
+
34
+ table.dataTable,
35
+ table.dataTable td,
36
+ table.dataTable th {
37
+ -webkit-box-sizing: content-box;
38
+ -moz-box-sizing: content-box;
39
+ box-sizing: content-box;
40
+ }
41
+
42
+
43
+ table.dataTable {
44
+ clear: both;
45
+ margin-top: 6px !important;
46
+ margin-bottom: 6px !important;
47
+ max-width: none !important;
48
+ }
49
+
50
+ table.dataTable thead .sorting,
51
+ table.dataTable thead .sorting_asc,
52
+ table.dataTable thead .sorting_desc,
53
+ table.dataTable thead .sorting_asc_disabled,
54
+ table.dataTable thead .sorting_desc_disabled {
55
+ cursor: pointer;
56
+ }
57
+
58
+ table.dataTable thead .sorting { background: url('images/sort_both.png') no-repeat center right; }
59
+ table.dataTable thead .sorting_asc { background: url('images/sort_asc.png') no-repeat center right; }
60
+ table.dataTable thead .sorting_desc { background: url('images/sort_desc.png') no-repeat center right; }
61
+
62
+ table.dataTable thead .sorting_asc_disabled { background: url('images/sort_asc_disabled.png') no-repeat center right; }
63
+ table.dataTable thead .sorting_desc_disabled { background: url('images/sort_desc_disabled.png') no-repeat center right; }
64
+
65
+ table.dataTable th:active {
66
+ outline: none;
67
+ }
68
+
69
+ /* Scrolling */
70
+ div.dataTables_scrollHead table {
71
+ margin-bottom: 0 !important;
72
+ border-bottom-left-radius: 0;
73
+ border-bottom-right-radius: 0;
74
+ }
75
+
76
+ div.dataTables_scrollHead table thead tr:last-child th:first-child,
77
+ div.dataTables_scrollHead table thead tr:last-child td:first-child {
78
+ border-bottom-left-radius: 0 !important;
79
+ border-bottom-right-radius: 0 !important;
80
+ }
81
+
82
+ div.dataTables_scrollBody table {
83
+ border-top: none;
84
+ margin-top: 0 !important;
85
+ margin-bottom: 0 !important;
86
+ }
87
+
88
+ div.dataTables_scrollBody tbody tr:first-child th,
89
+ div.dataTables_scrollBody tbody tr:first-child td {
90
+ border-top: none;
91
+ }
92
+
93
+ div.dataTables_scrollFoot table {
94
+ margin-top: 0 !important;
95
+ border-top: none;
96
+ }
97
+
98
+
99
+
100
+
101
+ /*
102
+ * TableTools styles
103
+ */
104
+ .table tbody tr.active td,
105
+ .table tbody tr.active th {
106
+ background-color: #08C;
107
+ color: white;
108
+ }
109
+
110
+ .table tbody tr.active:hover td,
111
+ .table tbody tr.active:hover th {
112
+ background-color: #0075b0 !important;
113
+ }
114
+
115
+ .table tbody tr.active a {
116
+ color: white;
117
+ }
118
+
119
+ .table-striped tbody tr.active:nth-child(odd) td,
120
+ .table-striped tbody tr.active:nth-child(odd) th {
121
+ background-color: #017ebc;
122
+ }
123
+
124
+ table.DTTT_selectable tbody tr {
125
+ cursor: pointer;
126
+ }
127
+
128
+ div.DTTT .btn {
129
+ color: #333 !important;
130
+ font-size: 12px;
131
+ }
132
+
133
+ div.DTTT .btn:hover {
134
+ text-decoration: none !important;
135
+ }
136
+
137
+ ul.DTTT_dropdown.dropdown-menu {
138
+ z-index: 2003;
139
+ }
140
+
141
+ ul.DTTT_dropdown.dropdown-menu a {
142
+ color: #333 !important; /* needed only when demo_page.css is included */
143
+ }
144
+
145
+ ul.DTTT_dropdown.dropdown-menu li {
146
+ position: relative;
147
+ }
148
+
149
+ ul.DTTT_dropdown.dropdown-menu li:hover a {
150
+ background-color: #0088cc;
151
+ color: white !important;
152
+ }
153
+
154
+ div.DTTT_collection_background {
155
+ z-index: 2002;
156
+ }
157
+
158
+ /* TableTools information display */
159
+ div.DTTT_print_info.modal {
160
+ height: 150px;
161
+ margin-top: -75px;
162
+ text-align: center;
163
+ }
164
+
165
+ div.DTTT_print_info h6 {
166
+ font-weight: normal;
167
+ font-size: 28px;
168
+ line-height: 28px;
169
+ margin: 1em;
170
+ }
171
+
172
+ div.DTTT_print_info p {
173
+ font-size: 14px;
174
+ line-height: 20px;
175
+ }
176
+
177
+
178
+
179
+ /*
180
+ * FixedColumns styles
181
+ */
182
+ div.DTFC_LeftHeadWrapper table,
183
+ div.DTFC_LeftFootWrapper table,
184
+ div.DTFC_RightHeadWrapper table,
185
+ div.DTFC_RightFootWrapper table,
186
+ table.DTFC_Cloned tr.even {
187
+ background-color: white;
188
+ }
189
+
190
+ div.DTFC_RightHeadWrapper table ,
191
+ div.DTFC_LeftHeadWrapper table {
192
+ margin-bottom: 0 !important;
193
+ border-top-right-radius: 0 !important;
194
+ border-bottom-left-radius: 0 !important;
195
+ border-bottom-right-radius: 0 !important;
196
+ }
197
+
198
+ div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
199
+ div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
200
+ div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
201
+ div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
202
+ border-bottom-left-radius: 0 !important;
203
+ border-bottom-right-radius: 0 !important;
204
+ }
205
+
206
+ div.DTFC_RightBodyWrapper table,
207
+ div.DTFC_LeftBodyWrapper table {
208
+ border-top: none;
209
+ margin-bottom: 0 !important;
210
+ }
211
+
212
+ div.DTFC_RightBodyWrapper tbody tr:first-child th,
213
+ div.DTFC_RightBodyWrapper tbody tr:first-child td,
214
+ div.DTFC_LeftBodyWrapper tbody tr:first-child th,
215
+ div.DTFC_LeftBodyWrapper tbody tr:first-child td {
216
+ border-top: none;
217
+ }
218
+
219
+ div.DTFC_RightFootWrapper table,
220
+ div.DTFC_LeftFootWrapper table {
221
+ border-top: none;
222
+ }
223
+