adminpanel 0.1.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (175) hide show
  1. data/.rspec +2 -2
  2. data/.ruby-version +1 -0
  3. data/.travis.yml +8 -8
  4. data/Gemfile +26 -24
  5. data/README.md +57 -57
  6. data/adminpanel.gemspec +41 -39
  7. data/app/assets/fonts/fontawesome-webfont.svg +254 -254
  8. data/app/assets/javascripts/adminpanel/bootstrap-datepicker.js +1159 -1159
  9. data/app/assets/javascripts/adminpanel/bootstrap-timepicker.js +803 -803
  10. data/app/assets/javascripts/adminpanel/bootstrap.js +2170 -2170
  11. data/app/assets/javascripts/adminpanel/{products.js → images_form.js} +13 -13
  12. data/app/assets/javascripts/adminpanel/imagesloaded.js +12 -12
  13. data/app/assets/javascripts/adminpanel/jquery.dataTables.min.js +155 -155
  14. data/app/assets/javascripts/adminpanel/jquery.facybox.js +395 -395
  15. data/app/assets/javascripts/adminpanel/jquery.masonry.min.js +9 -9
  16. data/app/assets/javascripts/adminpanel/jquery.slimscroll.min.js +13 -13
  17. data/app/assets/javascripts/adminpanel/medium-editor.js +702 -702
  18. data/app/assets/javascripts/adminpanel/realm.js +87 -87
  19. data/app/assets/javascripts/adminpanel/tables.js +126 -126
  20. data/app/assets/javascripts/application-admin.js +15 -15
  21. data/app/assets/stylesheets/adminpanel/_clearfix.css.scss +7 -7
  22. data/app/assets/stylesheets/adminpanel/alertify.css +241 -241
  23. data/app/assets/stylesheets/adminpanel/bootstrap.css +6103 -6103
  24. data/app/assets/stylesheets/adminpanel/colorpicker.css +6 -6
  25. data/app/assets/stylesheets/adminpanel/datepicker.css +9 -9
  26. data/app/assets/stylesheets/adminpanel/elfinder.min.css +59 -59
  27. data/app/assets/stylesheets/adminpanel/facybox.css +146 -146
  28. data/app/assets/stylesheets/adminpanel/font-awesome.min.css +33 -33
  29. data/app/assets/stylesheets/adminpanel/fullcalendar.css +618 -618
  30. data/app/assets/stylesheets/adminpanel/fullcalendar.print.css +61 -61
  31. data/app/assets/stylesheets/adminpanel/select2.css +524 -524
  32. data/app/assets/stylesheets/adminpanel/theme.css +1571 -1571
  33. data/app/assets/stylesheets/adminpanel/timepicker.css +82 -82
  34. data/app/assets/stylesheets/application-admin.css +13 -13
  35. data/app/controllers/adminpanel/application_controller.rb +32 -17
  36. data/app/controllers/adminpanel/galleries_controller.rb +80 -80
  37. data/app/controllers/adminpanel/sections_controller.rb +45 -45
  38. data/app/controllers/adminpanel/sessions_controller.rb +26 -26
  39. data/app/controllers/adminpanel/users_controller.rb +84 -84
  40. data/app/helpers/adminpanel/application_helper.rb +41 -51
  41. data/app/helpers/adminpanel/breadcrumbs_helper.rb +16 -0
  42. data/app/helpers/adminpanel/custom_form_builder.rb +248 -0
  43. data/app/helpers/adminpanel/images_helper.rb +9 -9
  44. data/app/helpers/adminpanel/rest_actions_helper.rb +47 -0
  45. data/app/helpers/adminpanel/router_helper.rb +33 -0
  46. data/app/helpers/adminpanel/sessions_helper.rb +25 -25
  47. data/app/models/adminpanel/gallery.rb +60 -60
  48. data/app/models/adminpanel/image.rb +14 -14
  49. data/app/models/adminpanel/section.rb +22 -22
  50. data/app/models/adminpanel/user.rb +35 -35
  51. data/app/uploaders/adminpanel/gallery_uploader.rb +55 -55
  52. data/app/uploaders/adminpanel/image_uploader.rb +57 -57
  53. data/app/views/adminpanel/galleries/_galleries_table.html.erb +14 -14
  54. data/app/views/adminpanel/galleries/create.html.erb +2 -2
  55. data/app/views/adminpanel/galleries/delete.html.erb +2 -2
  56. data/app/views/adminpanel/galleries/edit.html.erb +25 -25
  57. data/app/views/adminpanel/galleries/index.html.erb +51 -51
  58. data/app/views/adminpanel/galleries/new.html.erb +17 -17
  59. data/app/views/adminpanel/galleries/show.html.erb +17 -17
  60. data/app/views/adminpanel/galleries/update.html.erb +2 -2
  61. data/app/views/adminpanel/sections/_image_fields.html.erb +23 -23
  62. data/app/views/adminpanel/sections/_sections_table.html.erb +16 -16
  63. data/app/views/adminpanel/sections/create.html.erb +2 -2
  64. data/app/views/adminpanel/sections/destroy.html.erb +2 -2
  65. data/app/views/adminpanel/sections/edit.html.erb +41 -41
  66. data/app/views/adminpanel/sections/index.html.erb +44 -44
  67. data/app/views/adminpanel/sections/new.html.erb +26 -26
  68. data/app/views/adminpanel/sections/show.html.erb +30 -30
  69. data/app/views/adminpanel/sections/update.html.erb +2 -2
  70. data/app/views/adminpanel/sessions/new.html.erb +25 -25
  71. data/app/views/adminpanel/users/_user_form.html.erb +20 -20
  72. data/app/views/adminpanel/users/edit.html.erb +5 -5
  73. data/app/views/adminpanel/users/index.html.erb +49 -49
  74. data/app/views/adminpanel/users/new.html.erb +5 -5
  75. data/app/views/adminpanel/users/show.html.erb +20 -20
  76. data/app/views/layouts/_shim.html.erb +3 -3
  77. data/app/views/layouts/_side_menu.html.erb +49 -43
  78. data/app/views/layouts/_top_bar.html.erb +43 -43
  79. data/app/views/layouts/admin-login.html.erb +28 -28
  80. data/app/views/layouts/admin.html.erb +41 -39
  81. data/app/views/shared/_breadcrumb.html.erb +6 -6
  82. data/app/views/shared/_error_messages.html.erb +16 -16
  83. data/app/views/shared/_form_fields.html.erb +25 -0
  84. data/app/views/{adminpanel/products → shared}/_image_fields.html.erb +23 -23
  85. data/app/views/shared/_init_editor.html.erb +24 -0
  86. data/app/views/shared/edit.html.erb +28 -0
  87. data/app/views/shared/index.html.erb +94 -0
  88. data/app/views/shared/new.html.erb +28 -0
  89. data/app/views/shared/show.html.erb +63 -0
  90. data/config/locales/en.yml +5 -5
  91. data/config/locales/es.yml +127 -129
  92. data/config/routes.rb +24 -16
  93. data/lib/adminpanel.rb +9 -7
  94. data/lib/adminpanel/active_record_extension.rb +38 -0
  95. data/lib/adminpanel/engine.rb +5 -5
  96. data/lib/adminpanel/version.rb +3 -3
  97. data/lib/generators/adminpanel/initialize/initialize_generator.rb +17 -0
  98. data/lib/generators/adminpanel/{install/templates/migrations → initialize/templates}/create_adminpanel_tables.rb +45 -64
  99. data/lib/generators/adminpanel/resource/resource_generator.rb +105 -0
  100. data/lib/generators/adminpanel/resource/templates/controller.rb +4 -0
  101. data/lib/generators/adminpanel/resource/templates/migration.rb +9 -0
  102. data/lib/generators/adminpanel/resource/templates/resource.rb +19 -0
  103. data/spec/dummy/.gitignore +17 -17
  104. data/spec/dummy/README.rdoc +261 -261
  105. data/spec/dummy/Rakefile +7 -7
  106. data/{app/views/adminpanel/categories/show.html.erb → spec/dummy/app/adminpanel/products.rb} +0 -0
  107. data/spec/dummy/app/assets/javascripts/application.js +13 -13
  108. data/spec/dummy/app/assets/stylesheets/application.css +13 -13
  109. data/spec/dummy/app/controllers/adminpanel/.gitkeep +0 -0
  110. data/spec/dummy/app/controllers/application_controller.rb +3 -11
  111. data/spec/dummy/app/helpers/application_helper.rb +2 -2
  112. data/spec/dummy/app/views/layouts/application.html.erb +14 -14
  113. data/spec/dummy/config.ru +4 -4
  114. data/spec/dummy/config/application.rb +62 -62
  115. data/spec/dummy/config/boot.rb +9 -9
  116. data/spec/dummy/config/carrierwve.rb +5 -5
  117. data/spec/dummy/config/database.yml +24 -24
  118. data/spec/dummy/config/environment.rb +5 -5
  119. data/spec/dummy/config/environments/development.rb +41 -41
  120. data/spec/dummy/config/environments/production.rb +72 -72
  121. data/spec/dummy/config/environments/test.rb +41 -41
  122. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -7
  123. data/spec/dummy/config/initializers/inflections.rb +15 -15
  124. data/spec/dummy/config/initializers/mime_types.rb +5 -5
  125. data/spec/dummy/config/initializers/secret_token.rb +8 -8
  126. data/spec/dummy/config/initializers/session_store.rb +8 -8
  127. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -14
  128. data/spec/dummy/config/locales/en.yml +5 -5
  129. data/spec/dummy/config/routes.rb +4 -4
  130. data/spec/dummy/db/schema.rb +15 -15
  131. data/spec/dummy/public/404.html +26 -26
  132. data/spec/dummy/public/422.html +26 -26
  133. data/spec/dummy/public/500.html +25 -25
  134. data/spec/dummy/public/uploads/gallery/file/1/hipster.jpg +0 -0
  135. data/spec/dummy/public/uploads/gallery/file/1/thumb_hipster.jpg +0 -0
  136. data/spec/dummy/script/rails +6 -6
  137. data/spec/features/authentication_pages_spec.rb +43 -43
  138. data/spec/features/galleries_pages_spec.rb +124 -124
  139. data/spec/features/section_pages_spec.rb +37 -37
  140. data/spec/features/user_pages_spec.rb +48 -48
  141. data/spec/generators/initialize_spec.rb +9 -0
  142. data/spec/generators/resource_spec.rb +122 -0
  143. data/spec/models/gallery_spec.rb +21 -21
  144. data/spec/models/section_spec.rb +66 -66
  145. data/spec/models/user_spec.rb +105 -105
  146. data/spec/spec_helper.rb +32 -31
  147. data/spec/support/define_factory_models.rb +25 -36
  148. data/spec/support/helper_methods.rb +26 -26
  149. data/spec/support/submit_forms_without_button.rb +16 -16
  150. data/spec/support/test_database.rb +45 -58
  151. data/spec/uploaders/gallery_uploader_spec.rb +36 -30
  152. data/spec/uploaders/image_uploader_spec.rb +30 -29
  153. metadata +208 -64
  154. checksums.yaml +0 -7
  155. data/app/assets/javascripts/adminpanel/init_editor.js +0 -28
  156. data/app/controllers/adminpanel/categories_controller.rb +0 -41
  157. data/app/controllers/adminpanel/products_controller.rb +0 -88
  158. data/app/helpers/custom_form_builder.rb +0 -219
  159. data/app/models/adminpanel/category.rb +0 -7
  160. data/app/models/adminpanel/product.rb +0 -24
  161. data/app/views/adminpanel/categories/edit.html.erb +0 -18
  162. data/app/views/adminpanel/categories/index.html.erb +0 -55
  163. data/app/views/adminpanel/categories/new.html.erb +0 -18
  164. data/app/views/adminpanel/products/.DS_Store +0 -0
  165. data/app/views/adminpanel/products/_product_form.html.erb +0 -31
  166. data/app/views/adminpanel/products/edit.html.erb +0 -10
  167. data/app/views/adminpanel/products/index.html.erb +0 -51
  168. data/app/views/adminpanel/products/new.html.erb +0 -10
  169. data/app/views/adminpanel/products/show.html.erb +0 -61
  170. data/config/database.yml +0 -24
  171. data/lib/generators/adminpanel/install/install_generator.rb +0 -12
  172. data/spec/features/categories_pages_spec.rb +0 -44
  173. data/spec/features/product_pages_spec.rb +0 -64
  174. data/spec/models/category_spec.rb +0 -58
  175. data/spec/models/product_spec.rb +0 -51
@@ -1,1571 +1,1571 @@
1
- /*------- RESPONSIVE -------*/
2
-
3
- *{
4
- -webkit-box-sizing: border-box;
5
- -moz-box-sizing: border-box;
6
- box-sizing: border-box;
7
- }
8
- html, body{
9
- height: auto !important;
10
- min-height: 100%;
11
- }
12
- body{
13
- padding-top: 45px;
14
- font-family: 'Open Sans', sans-serif;
15
- background-image: url("dotted.png");
16
- overflow-x: hidden;
17
- }
18
- h2{
19
- text-shadow:1px 1px 1px #FFFFFF;
20
- }
21
- a {
22
- color: #26AEF2;
23
- }
24
- a:focus{
25
- outline: none;
26
- }
27
- form{
28
- margin: 0;
29
- }
30
- input.focused{
31
- border-color: rgba(82, 168, 236, 0.8);
32
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(82, 168, 236, 0.6);
33
- outline: 0 none;
34
- position: relative;
35
- z-index: 2;
36
- }
37
-
38
- .field_with_errors > input {
39
- border-color: rgba(226, 119, 90, 0.6);
40
- outline: 0 none;
41
- position: relative;
42
- z-index: 2;
43
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(226, 119, 90, 0.6);
44
- }
45
-
46
- .field_with_errors > select {
47
- border-color: rgba(226, 119, 90, 0.6);
48
- outline: 0 none;
49
- position: relative;
50
- z-index: 2;
51
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(226, 119, 90, 0.6);
52
- }
53
- input.warning, input.warning:focus{
54
- border-color: rgba(244, 183, 112, 0.6);
55
- outline: 0 none;
56
- position: relative;
57
- z-index: 2;
58
- }
59
- input.warning:focus{
60
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(244, 183, 112, 0.6);
61
-
62
- }
63
- input.success, input.success:focus{
64
- border-color: rgba(97, 204, 40, 0.6);
65
- outline: 0 none;
66
- position: relative;
67
- z-index: 2;
68
- }
69
- input.success:focus{
70
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(97, 204, 40, 0.6);
71
-
72
- }
73
- input.knob{
74
- display: none;
75
- }
76
- .pad15{
77
- padding: 15px;
78
- }
79
- .form-actions{
80
- margin-bottom: 0;
81
- }
82
- .breadcrumb {
83
- background: none repeat scroll 0 0 transparent;
84
- margin: 0;
85
- padding: 8px 0;
86
- }
87
- .breadcrumb > li{
88
- text-shadow: none;
89
- }
90
- .heading{
91
- border-bottom: 1px solid #EBEBEB;
92
- margin: 0;
93
- padding: 0 0 15px;
94
- font-weight: normal;
95
- }
96
- .heading > a.btn{
97
- font-weight: normal;
98
- margin: 5px 0 0;
99
- }
100
- .box{
101
- background-color: #FFFFFF;
102
- border: 1px solid #DDDDDD;
103
- -moz-border-radius: 3px 3px 3px 3px;
104
- -webkit-border-radius: 3px 3px 3px 3px;
105
- border-radius: 3px 3px 3px 3px;
106
- }
107
- .container-narrow{
108
- width: 95%;
109
- max-width: 360px;
110
- margin: 5% auto;
111
- }
112
- .divider hr{
113
- margin: 18px 0;
114
- width: 40%;
115
- }
116
- .divider {
117
- color: #656564;
118
- font-size: 18px;
119
- line-height: 30px;
120
- text-align: center;
121
- margin: 10px 0 15px;
122
- }
123
- .avatar-20{
124
- width:20px;
125
- height:20px;
126
- }
127
- .avatar-50{
128
- width:50px;
129
- height:50px;
130
- }
131
- .inlinesparkline{
132
- color: #FFFFFF;
133
- }
134
- /* bootstrap-time-picker fix*/
135
- .bootstrap-timepicker table td input{
136
- padding:2px;
137
- font-size:11px;
138
- }
139
- /* fix for box-sizing */
140
- select,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input {
141
- height: 30px;
142
- }
143
- .input-append .add-on, .input-prepend .add-on{
144
- height:30px;
145
- width: 30px;
146
- }
147
- select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input{
148
- border-radius:1px;
149
- }
150
- .input-append .add-on, .input-prepend .add-on{
151
- width:30px;
152
- height:30px;
153
- }
154
- /*tabs*/
155
- .widget-header .nav.nav-tabs {
156
- margin: 0;
157
- border: medium none;
158
- float: left;
159
- }
160
- .widget-header .nav-tabs > li{
161
- margin: 0;
162
- }
163
- .widget-header .nav.nav-tabs li > a{
164
- border: medium none;
165
- -moz-border-radius: 0 0 0 0;
166
- -webkit-border-radius: 0 0 0 0;
167
- border-radius: 0 0 0 0;
168
- font-size: 15px;
169
- position: relative;
170
- background: transparent;
171
- line-height: 33px;
172
- }
173
- .widget-header .nav.nav-tabs li > a i{
174
- margin-right: 5px;
175
- }
176
- .widget-header .nav.nav-tabs li > a:hover{
177
- background: none repeat scroll 0 0 transparent;
178
- border: medium none;
179
- color: #444444;
180
- }
181
- .widget-header .nav-tabs > .active > a:after {
182
- border-color: transparent transparent #FFFFFF;
183
- border-style: solid;
184
- border-width: 8px;
185
- bottom: -1px;
186
- content: "";
187
- height: 0;
188
- left: 50%;
189
- margin: 0 -4px;
190
- position: absolute;
191
- width: 0;
192
- }
193
- /*buttons*/
194
- .navbar .btn.btn-navbar{
195
- background: #E28271;
196
- margin: 7px 5px 7px 0;
197
- }
198
- .btn-circle{
199
- border-radius:50px;
200
- width:20px;
201
- height:20px;
202
- padding:0;
203
- }
204
- /* gallery */
205
- .gallery-item {
206
- display: inline-block;
207
- margin-bottom: 6px;
208
- vertical-align: top;
209
- }
210
- /* top menu notifications/messages */
211
- .top-menu .popover.bottom .arrow:after {
212
- border-bottom-color: #F7F7F7;
213
- }
214
- .top-menu .popover{
215
- width:300px;
216
- }
217
- .top-menu .popover-content{
218
- padding:0;
219
- }
220
- .top-menu .popover-content ul{
221
- width: 100%;
222
- }
223
- .top-menu .popover-content li:hover{
224
- background-color:#fafafa;
225
- }
226
- .top-menu .popover-content li{
227
- display:block;
228
- border-bottom:1px solid #DDD;
229
- line-height: 18px;
230
- width:100%;
231
- }
232
- .top-menu .popover-content li:last-child{
233
- border-bottom: none;
234
- }
235
- .top-menu .popover-content li a{
236
- padding: 7px 5px 7px 45px;
237
- font-size: 11px;
238
- display: block;
239
- color: #333;
240
- line-height: 15px;
241
- text-decoration: none;
242
- }
243
- .top-menu .popover-content li a h4{
244
- display: block;
245
- font-size:12px;
246
- font-weight:bold;
247
- margin:0;
248
- }
249
- .top-menu .popover-content li a span{
250
- display: block;
251
- font-size:10px;
252
- color: #A8A8A8;
253
- float:right;
254
- }
255
- .top-menu .popover-content li a img{
256
- height: 35px;
257
- left: 5px;
258
- position: absolute;
259
- width: 35px;
260
- }
261
- .top-menu .popover-content .popover_footer a{
262
- background: none repeat scroll 0 0 #F7F7F7;
263
- border-top: 1px solid #EBEBEB;
264
- color: #444444;
265
- display: block;
266
- font-size: 12px;
267
- padding: 3px 0;
268
- text-align: center;
269
- text-decoration: none;
270
- }
271
- .top-menu .popover-content .popover_footer a:hover{
272
- background: none repeat scroll 0 0 #EDEDED;
273
- }
274
- /* hide bubble if the data attribute value is 0 */
275
- .top-menu li a[data-notification="0"]:after {
276
- display: none;
277
- }
278
- .top-menu li a[data-notification]:after {
279
- background-image: linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
280
- background-image: -o-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
281
- background-image: -moz-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
282
- background-image: -webkit-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
283
- background-image: -ms-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
284
- background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, rgb(199,24,33)),color-stop(1, rgb(245,71,71)));
285
- border: 1px solid #751616;
286
- border-radius: 4px 4px 4px 4px;
287
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 1px 1px rgba(0, 0, 0, 0.2);
288
- color: #FFFFFF;
289
- content: attr(data-notification);
290
- font-size: 11px;
291
- font-weight: bold;
292
- min-width: 10px;
293
- padding: 2px 3px;
294
- position: absolute;
295
- right: 1px;
296
- text-align: center;
297
- text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
298
- top: 2px;
299
- line-height: 13px;
300
- }
301
- /* dataTables - Dynamic table */
302
- table.table thead .sorting,
303
- table.table thead .sorting_asc,
304
- table.table thead .sorting_desc,
305
- table.table thead .sorting_asc_disabled,
306
- table.table thead .sorting_desc_disabled {
307
- cursor: pointer;
308
- *cursor: hand;
309
- }
310
- table.table thead .sorting { background: url('sort_both.png') no-repeat center right; }
311
- table.table thead .sorting_asc { background: url('sort_asc.png') no-repeat center right; }
312
- table.table thead .sorting_desc { background: url('sort_desc.png') no-repeat center right; }
313
-
314
- table.table thead .sorting_asc_disabled { background: url('sort_asc_disabled.png') no-repeat center right; }
315
- table.table thead .sorting_desc_disabled { background: url('sort_desc_disabled.png') no-repeat center right; }
316
- .dataTables_filter{
317
- text-align: right;
318
- }
319
- /* gritter notifications */
320
- #gritter-notice-wrapper {
321
- position:fixed;
322
- top:55px;
323
- right:20px;
324
- width:301px;
325
- z-index:9999;
326
- }
327
- #gritter-notice-wrapper.top-left {
328
- left: 20px;
329
- right: auto;
330
- }
331
- #gritter-notice-wrapper.bottom-right {
332
- top: auto;
333
- left: auto;
334
- bottom: 20px;
335
- right: 20px;
336
- }
337
- #gritter-notice-wrapper.bottom-left {
338
- top: auto;
339
- right: auto;
340
- bottom: 20px;
341
- left: 20px;
342
- }
343
- .gritter-item-wrapper {
344
- position:relative;
345
- margin:0 0 10px 0;
346
- }
347
- .gritter-top {
348
- display: none;
349
- }
350
- .gritter-bottom {
351
- display: none;
352
- }
353
- .gritter-item {
354
- display:block;
355
- /*background:url('assets/img/gritter.png') no-repeat left -40px;*/
356
- background:#292A2F;
357
- color:#fff;
358
- padding:8px 11px;
359
- font-size: 11px;
360
- }
361
- .hover .gritter-item {
362
- background-position:right -40px;
363
- }
364
- .gritter-item p {
365
- padding:0;
366
- margin:0;
367
- word-wrap:break-word;
368
- }
369
- .gritter-item a {
370
- color: #26AEF2!important;
371
- }
372
- .gritter-close {
373
- cursor: pointer;
374
- display: block !important;
375
- height: 30px;
376
- position: absolute;
377
- right: 3px;
378
- text-align: right;
379
- top: 0;
380
- width: 30px;
381
- }
382
- .gritter-close:before {
383
- content:"\f00d";
384
- font-size: 20px;
385
- }
386
- .gritter-close:hover:before {
387
- color: #eee;
388
- }
389
- .gritter-title {
390
- font-size:14px;
391
- font-weight:bold;
392
- padding:0 0 7px 0;
393
- display:block;
394
- text-shadow:1px 1px 0 #000; /* Not supported by IE :( */
395
- }
396
- .gritter-image {
397
- width:48px;
398
- height:48px;
399
- float:left;
400
- }
401
- .gritter-with-image,
402
- .gritter-without-image {
403
- padding:0;
404
- }
405
- .gritter-with-image {
406
- width:220px;
407
- float:right;
408
- }
409
- /* for the light (white) version of the gritter notice */
410
- .gritter-light .gritter-item,
411
- .gritter-light .gritter-bottom,
412
- .gritter-light .gritter-top {
413
- background: #F4F4F4;
414
- color: #333;
415
- border: 1px solid #D8D8D8;
416
-
417
- }
418
- .gritter-light .gritter-close:before {
419
- color: #222;
420
- }
421
- .gritter-light .gritter-close:hover:before {
422
- color: #666;
423
- }
424
- .gritter-light .gritter-title {
425
- text-shadow: none;
426
- }
427
-
428
- /* user side */
429
- .user_side{
430
- padding: 15px 15px;
431
- margin: 0;
432
- background-color: #3D3E43;
433
- }
434
- .user_side img{
435
- float:left;
436
- width:50px;
437
- height:50px;
438
- -moz-border-radius:150px;
439
- -webkit-border-radius:150px;
440
- border-radius:150px;
441
- margin: 0 15px 0 0;
442
- }
443
- .user_side h5{
444
- color: #E28271;
445
- line-height: 16px;
446
- margin: 8px 0 0;
447
- }
448
- .user_side a{
449
- color:#FFFFFF;
450
- font-size: 11px;
451
- }
452
- /* dashboard */
453
- .overview_boxes {
454
- text-align: center;
455
- margin-top: 15px;
456
- min-height: 208px;
457
- }
458
- .overview_boxes .box_row{
459
- display: none;
460
- }
461
- .overview_boxes .box_row > div{
462
- float: left;
463
- margin: 0 30px 15px 0;
464
- text-align: center;
465
- }
466
- .overview_boxes .box_row:last-child > div:last-child{
467
- margin-right:0;
468
- }
469
- .overview_boxes .userstats.clearfix {
470
- margin: 0;
471
- }
472
- .box_row {
473
- display: inline-block;
474
- }
475
- .overview_boxes h2{
476
- color: #333;
477
- font-size: 26px;
478
- line-height: 30px;
479
- margin: 5px 0 0;
480
- }
481
- .overview_boxes p{
482
- color: #888;
483
- font-size:14px;
484
- margin: 0;
485
- }
486
- .overview_boxes .widget-tasks-statistics{
487
- margin-left:15px;
488
- }
489
- .circle i{
490
- color: #333333;
491
- display: block;
492
- font-size: 60px;
493
- height: 120px;
494
- line-height: 120px;
495
- width: 120px;
496
- }
497
- .circle{
498
- background-color: #FFFFFF;
499
- border-radius: 120px;
500
- display: inline-block;
501
- border: 1px solid #ccc;
502
- }
503
- /* Navbar */
504
- .navbar-fixed-top .navbar-inner{
505
- height: 45px;
506
- background: #292A2F;
507
- border: none;
508
- }
509
- .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner{
510
- box-shadow: none;
511
- padding-right: 30px;
512
- }
513
- .logo {
514
- float: left;
515
- padding: 9px 0 0;
516
- }
517
- .container-fluid {
518
- padding: 0;
519
- position: relative;
520
- }
521
- #wrap {
522
- height: auto !important;
523
- min-height: 100%;
524
- }
525
- .main_container{
526
- padding: 0 25px 25px;
527
- position: relative;
528
- }
529
- .main_container > .row-fluid{
530
- margin-bottom:25px;
531
- }
532
- /* ----------- wizard ----------- */
533
- .widget-footer .wizard{
534
- margin: 0;
535
- list-style: none;
536
- }
537
- .widget-footer .wizard .next > a{
538
- float: right;
539
- margin-left: 10px;
540
- }
541
- .widget-footer .wizard .previous > a{
542
- float: left;
543
- margin-right: 10px;
544
- }
545
-
546
- /* ----------- top menu ----------- */
547
-
548
- .top-menu ul{
549
- list-style: none;
550
- margin: 0;
551
- }
552
- .top-menu > ul > li{
553
- float: left;
554
- }
555
- .top-menu > ul > li > a{
556
- color: #fff;
557
- display: block;
558
- font-size: 16px;
559
- line-height: 20px;
560
- padding: 10px 15px;
561
- text-decoration: none;
562
- position: relative;
563
- }
564
-
565
- /* ----------- Side menu ----------- */
566
- .b_F79999:hover, .b_F79999.active{
567
- border-left: 2px solid #F79999;
568
- }
569
- .b_C3F7A7:hover, .b_C3F7A7.active{
570
- border-left: 2px solid #C3F7A7;
571
- }
572
- .b_9FDDF6:hover, .b_9FDDF6.active{
573
- border-left: 2px solid #9FDDF6;
574
- }
575
- .b_F6F1A2:hover, .b_F6F1A2.active{
576
- border-left: 2px solid #F6F1A2;
577
- }
578
- .b_C1F8A9:hover, .b_C1F8A9.active{
579
- border-left: 2px solid #C1F8A9;
580
- }
581
- .b_9FDDF6:hover, .b_9FDDF6.active{
582
- border-left: 2px solid #9FDDF6;
583
- }
584
- .b_F5C294:hover, .b_F5C294.active{
585
- border-left: 2px solid #F5C294;
586
- }
587
- .accordion-heading{
588
- background: #292A2F;
589
- }
590
- .accordion-heading a{
591
- border-left: 2px solid #292A2F;
592
- border-bottom: 1px dashed #313131;
593
- }
594
- .accordion-group a{
595
- display: block;
596
- padding: 8px 15px;
597
- color: #FFFFFF;
598
- text-decoration: none;
599
- position: relative;
600
- }
601
- .accordion-group{
602
- border: none;
603
- border-radius: 0;
604
- }
605
- .accordion-inner{
606
- background-color: #3D3E43;
607
- border: none;
608
- padding: 9px 0;
609
- }
610
- .accordion-inner a{
611
- border-left: 2px solid #3D3E43;
612
- }
613
- .accordion-inner a:hover, .accordion-inner a.active{
614
- border-left: 2px solid #76777C;
615
- }
616
- .sidebar-nav .accordion-toggle.collapsed[data-toggle]:before, .sidebar-nav .accordion-toggle[data-toggle]:before{
617
- position: absolute;
618
- right: 15px;
619
- top: 10px;
620
- }
621
- .sidebar-nav .accordion-toggle.collapsed[data-toggle]:before{
622
- content:"\f054";
623
- }
624
- .sidebar-nav .accordion-toggle[data-toggle]:before{
625
- content:"\f078";
626
- }
627
-
628
- /* ----------- Tasks page ----------- */
629
- .widget-tasks-progress{
630
- padding:25px;
631
- text-align: center;
632
-
633
- }.widget-tasks-progress .circle{
634
- margin:0 5px;
635
- display:inline-block;
636
- }
637
- .widget-tasks-progress .userstats {
638
- position:relative;
639
- display:inline-block;
640
- text-align: center;
641
- }
642
- .widget-tasks-progress .userstats div{
643
- display:inline-block;
644
- }
645
- .widget-tasks-progress .userstats img{
646
- position:absolute;
647
- z-index: 0;
648
- width:60px;
649
- left:20px;
650
- top:20px;
651
- border-radius:60px;
652
- }
653
- .widget-tasks-assigned ul{
654
- list-style: none;
655
- padding:0;
656
- margin:0;
657
- }
658
- .widget-tasks-assigned ul > li{
659
- background: none repeat scroll 0 0 #FFFFFF;
660
- border-bottom: 1px solid #DDDDDD;
661
- color: #9D9D9D;
662
- display: block;
663
- font-size: 11px;
664
- height: 80px;
665
- margin: 0;
666
- overflow: hidden;
667
- position: relative;
668
- }
669
- .widget-tasks-assigned .content{
670
- color: #62687E;
671
- float: left;
672
- font-size: 13px;
673
- padding-top: 5px;
674
- padding-left:10px;
675
- padding-right: 10px;
676
- width: 70%;
677
- }
678
- .widget-tasks-assigned .content h5{
679
- font-size:15px;
680
- color: #62687E;
681
- margin:0;
682
- }
683
- .widget-tasks-assigned .content span{
684
- font-size:11px;
685
- }
686
- .widget-tasks-assigned .rightboxes {
687
- position:relative;
688
- right:0;
689
- float:right;
690
- width: 30%;
691
- }
692
- .widget-tasks-assigned .rightboxes li{
693
- border-left: 1px solid #DDDDDD;
694
- float: left;
695
- font-size: 18px;
696
- padding: 15px 10px;
697
- text-align: center;
698
- width: 50%;
699
- }
700
- .widget-tasks-assigned .rightboxes li span{
701
- color: #CCCCCC;
702
- display: block;
703
- font-size: 14px;
704
- margin-top: 5px;
705
- }
706
- .widget-tasks-assigned .info{
707
- background: none repeat scroll 0 0 white;
708
- bottom: 10px;
709
- left: 10px;
710
- position: absolute;
711
- }
712
- .widget-tasks-assigned .info .date{
713
- color: #9D9D9D;
714
- font-size: 10px;
715
- float:right;
716
- margin-right: 10px;
717
- }
718
-
719
- .widget-tasks-assigned .info img{
720
- float:left;
721
-
722
- }
723
-
724
- .widget-tasks-assigned .progress{
725
- border-radius: 0;
726
- bottom: 0;
727
- display: block;
728
- height: 5px;
729
- margin: 0;
730
- position: absolute;
731
- width: 100%;
732
- }
733
- .widget-tasks-statistics {
734
- text-align: center;
735
- }
736
-
737
- .widget-tasks-statistics .userstats {
738
- position:relative;
739
- display:inline-block;
740
- margin: 0 30px 10px;
741
- }
742
-
743
- .widget-tasks-statistics .userstats .image{
744
- border-radius: 60px 60px 60px 60px;
745
- left: 15px;
746
- position: absolute;
747
- top: 15px;
748
- width: 45px;
749
- opacity: 1;
750
- padding:0;
751
- }
752
- .widget-tasks-statistics .userstats .white{
753
- background: none repeat scroll 0 0 white;
754
- border-radius: 60px 60px 60px 60px;
755
- font-size: 40px;
756
- left: 15px;
757
- opacity: 1;
758
- padding: 15px;
759
- position: absolute;
760
- top: 15px;
761
- z-index: -1;
762
- width: 90px;
763
- height: 90px;
764
- border: 1px solid #DDDDDD;
765
- }
766
- .widget-tasks-statistics .userstats a:hover{
767
- text-decoration: none;
768
- }
769
- .widget-tasks-statistics .userstats .white p{
770
- font-size:14px;
771
- color:#555555;
772
- }
773
- .widget-tasks-statistics .userstats p strong{
774
- display:block;
775
- font-size:16px;
776
- }
777
-
778
- /* ----------- Widget ----------- */
779
-
780
- .widget-top{
781
- text-align:center;
782
- }
783
- .widget-top .circle{
784
- display:inline-block;
785
- margin:0 10px;
786
- }
787
- .widget{
788
- /*margin-bottom: 15px; */
789
- -moz-border-radius: 3px 3px 3px 3px;
790
- -webkit-border-radius: 3px 3px 3px 3px;
791
- border-radius: 3px 3px 3px 3px;
792
- overflow: hidden;
793
- }
794
-
795
- .widget-padding .widget-body{
796
- padding:15px;
797
- }
798
- .widget-footer{
799
- background-color: #efefef;
800
- -moz-border-radius: 0 0 3px 3px;
801
- -webkit-border-radius: 0 0 3px 3px;
802
- border-radius: 0 0 3px 3px;
803
- padding: 10px;
804
- border-color: #CCCCCC;
805
- border-style: solid;
806
- border-width: 0 1px 1px;
807
- }
808
- .widget-footer:after{
809
- clear: both;
810
- }
811
- .widget-footer:after, .widget-footer:before{
812
- content: "";
813
- display: table;
814
- line-height: 0;
815
- }
816
- .widget-header{
817
- background-color: #efefef;
818
- -moz-border-radius: 3px 3px 0 0;
819
- -webkit-border-radius: 3px 3px 0 0;
820
- border-radius: 3px 3px 0 0;
821
- min-height: 51px;
822
- border:1px solid #DDDDDD;
823
- position: relative;
824
- }
825
- .widget-header > i, .widget-header h5{
826
- float: left;
827
- color: #62687e;
828
- font-weight:200;
829
- }
830
- .widget-header > i{
831
- font-size: 16px;
832
- padding: 15px 10px 15px 11px;
833
- text-align: center;
834
- width: 40px;
835
- }
836
- .widget-header a, .widget-header .nav-tabs a{
837
- color: #777777;
838
- cursor: pointer;
839
- font-size: 16px;
840
- margin: 0 0 0 8px;
841
- text-decoration: none;
842
- }
843
- .widget-header a:hover{
844
- color: #333;
845
- }
846
- .widget-header .progress{
847
- margin: 14px 0px;
848
- width: 30%;
849
- position: absolute;
850
- right: 15px;
851
- }
852
- .widget-header a.widget-hidden i{
853
- -moz-transform:rotate(180deg);
854
- -webkit-transform:rotate(180deg);
855
- -o-transform:rotate(180deg);
856
- -ms-transform:rotate(180deg);
857
- filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
858
- }
859
- .widget-header h5{
860
- margin: 0;
861
- padding: 15px 0 0;
862
- font-size: 16px;
863
- }
864
- .widget-header .btn-group{
865
- float: right;
866
- margin: 7px;
867
- }
868
- .widget-header-under{
869
-
870
- background: none repeat scroll 0 0 #FCFCFC;
871
- border-color: #DDDDDD;
872
- border-style: solid;
873
- border-width: 0 1px 1px;
874
- clear: both;
875
- font-size: 11px;
876
- text-align: center;
877
- padding:4px;
878
- }
879
- .widget-buttons{
880
- float:right;
881
- padding: 15px 15px 0 0;
882
- }
883
- .widget-buttons button{
884
- margin-top:-5px;
885
- }
886
- .widget-body{
887
- padding: 0;
888
- border-style: solid;
889
- border-width: 0 1px 1px;
890
- border-color: #ccc;
891
- background-color: #fff;
892
- }
893
- .widget-body .table strong{
894
- color:#E28271;
895
- }
896
- .widget-body .table{
897
- margin-bottom: 0;
898
- }
899
- .widget-header:before, .widget-header:after {
900
- content: "";
901
- display: table;
902
- line-height: 0;
903
- }
904
- .widget-header:after {
905
- clear: both;
906
- }
907
-
908
- /* ------------------------------- */
909
- /* ----------- widgets ----------- */
910
- /* ------------------------------- */
911
-
912
- /*----------- items ----------- */
913
- .comment-bubble{
914
- background: none repeat scroll 0 0 #F3F6F7;
915
- border: 1px solid #D5D8DF;
916
- border-radius: 3px 3px 3px 3px;
917
- display: block;
918
- margin: 15px 10px 20px 70px;
919
- padding: 5px;
920
- position: relative;
921
- }
922
-
923
- .the-icons{
924
- list-style: none;
925
- }
926
- .the-icons i{
927
- font-size: 20px;
928
- }
929
-
930
- .btn.btn-box{
931
- padding:20px;
932
- border-radius:0;
933
- color:#555555;
934
- position: relative;
935
- /*margin-bottom: 15px;*/
936
- }
937
- .btn.btn-box span{
938
- display:block;
939
- }
940
- .btn.btn-small.btn-box{
941
- padding:10px 0;
942
- }
943
-
944
- /* custom bootstrap design */
945
- .btn{
946
- border-radius:2px;
947
- background-image:none !important;
948
- }
949
- .btn.btn-primary{
950
- background-color: #2D9AF9;
951
- background-image:none;
952
- }
953
- .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
954
- background-color: #3074FC;
955
- }
956
- .btn-info {
957
- background-color: #42C1F7;
958
- }
959
- .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
960
- background-color: #4FB6D4;
961
- }
962
- .btn-success {
963
- background-color: #7BD77B;
964
- }
965
- .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
966
- background-color: #71C371;
967
- }
968
-
969
-
970
- .bubble[data-bubble]:after{
971
- content: attr(data-bubble);
972
- position: absolute;
973
- top: -5px;
974
- right: -5px;
975
- font-size: 11px;
976
- padding: 2px 4px;
977
- text-align: center;
978
- font-weight: bold;
979
- color: #fff;
980
- text-shadow: 0px 1px 0px rgba(0,0,0,.15);
981
- min-width: 15px;
982
- border-radius:30px;
983
- }
984
- .bubble-danger:after{
985
- background: #ff7c7c; /* Old browsers */
986
- background: -moz-linear-gradient(top, #ff7c7c 0%, #ef3737 100%); /* FF3.6+ */
987
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7c7c), color-stop(100%,#ef3737)); /* Chrome,Safari4+ */
988
- background: -webkit-linear-gradient(top, #ff7c7c 0%,#ef3737 100%); /* Chrome10+,Safari5.1+ */
989
- background: -o-linear-gradient(top, #ff7c7c 0%,#ef3737 100%); /* Opera 11.10+ */
990
- background: -ms-linear-gradient(top, #ff7c7c 0%,#ef3737 100%); /* IE10+ */
991
- background: linear-gradient(to bottom, #ff7c7c 0%,#ef3737 100%); /* W3C */
992
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7c7c', endColorstr='#ef3737',GradientType=0 ); /* IE6-9 */
993
- border:1px solid #BF3333;
994
-
995
- }
996
- .bubble-info:after{
997
- background: #7ec2dd; /* Old browsers */
998
- background: -moz-linear-gradient(top, #7ec2dd 0%, #34a9c9 100%); /* FF3.6+ */
999
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7ec2dd), color-stop(100%,#34a9c9)); /* Chrome,Safari4+ */
1000
- background: -webkit-linear-gradient(top, #7ec2dd 0%,#34a9c9 100%); /* Chrome10+,Safari5.1+ */
1001
- background: -o-linear-gradient(top, #7ec2dd 0%,#34a9c9 100%); /* Opera 11.10+ */
1002
- background: -ms-linear-gradient(top, #7ec2dd 0%,#34a9c9 100%); /* IE10+ */
1003
- background: linear-gradient(to bottom, #7ec2dd 0%,#34a9c9 100%); /* W3C */
1004
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7ec2dd', endColorstr='#34a9c9',GradientType=0 ); /* IE6-9 */
1005
- border:1px solid #2F7C91;
1006
-
1007
- }
1008
- .bubble-warning:after{
1009
- background: #e5d849; /* Old browsers */
1010
- background: -moz-linear-gradient(top, #e5d849 0%, #c4b623 100%); /* FF3.6+ */
1011
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5d849), color-stop(100%,#c4b623)); /* Chrome,Safari4+ */
1012
- background: -webkit-linear-gradient(top, #e5d849 0%,#c4b623 100%); /* Chrome10+,Safari5.1+ */
1013
- background: -o-linear-gradient(top, #e5d849 0%,#c4b623 100%); /* Opera 11.10+ */
1014
- background: -ms-linear-gradient(top, #e5d849 0%,#c4b623 100%); /* IE10+ */
1015
- background: linear-gradient(to bottom, #e5d849 0%,#c4b623 100%); /* W3C */
1016
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5d849', endColorstr='#c4b623',GradientType=0 ); /* IE6-9 */
1017
-
1018
- border:1px solid #9B8F20;
1019
- }
1020
- .bubble-success:after{
1021
- background: #94e569; /* Old browsers */
1022
- background: -moz-linear-gradient(top, #94e569 0%, #62a53e 100%); /* FF3.6+ */
1023
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#94e569), color-stop(100%,#62a53e)); /* Chrome,Safari4+ */
1024
- background: -webkit-linear-gradient(top, #94e569 0%,#62a53e 100%); /* Chrome10+,Safari5.1+ */
1025
- background: -o-linear-gradient(top, #94e569 0%,#62a53e 100%); /* Opera 11.10+ */
1026
- background: -ms-linear-gradient(top, #94e569 0%,#62a53e 100%); /* IE10+ */
1027
- background: linear-gradient(to bottom, #94e569 0%,#62a53e 100%); /* W3C */
1028
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94e569', endColorstr='#62a53e',GradientType=0 ); /* IE6-9 */
1029
-
1030
-
1031
- border:1px solid #7ABC56;
1032
- }
1033
-
1034
- .priority-high{border-right:4px solid #F79999;}
1035
- .priority-medium{border-right:4px solid #F5C294;}
1036
- .priority-low{border-right:4px solid #C3F7A7;}
1037
-
1038
- .priority-high-left{border-left:4px solid #F79999;}
1039
- .priority-medium-left{border-left:4px solid #F5C294;}
1040
- .priority-low-left{border-left:4px solid #C3F7A7;}
1041
-
1042
- /* ----------- analytics ----------- */
1043
-
1044
- .widget-analytics-large{
1045
- width : 100%;
1046
- height: 100%;
1047
- margin: 8px auto;
1048
- }
1049
-
1050
- .widget-analytics-small{
1051
-
1052
- }
1053
- .widget-analytics-small ul{
1054
- list-style:none;
1055
- float:left;
1056
- margin:0;
1057
- width:100%;
1058
- }
1059
- .widget-analytics-small ul li{
1060
- clear:both;
1061
- margin:10px 5px;
1062
- }
1063
- .widget-analytics-small span{
1064
- margin: 0 7px 0 0;
1065
- }
1066
- .widget-analytics-small a{
1067
- }
1068
- .widget-analytics-small h4{
1069
- margin: 0 10px 0 0;
1070
- float:right;
1071
- display:inline;
1072
- color:#E28271;
1073
-
1074
- }
1075
- .widget-analytics-small h5{
1076
- font-size:12px;
1077
- margin:0;
1078
- display:inline;
1079
- }
1080
-
1081
-
1082
- /* ----------- calendar ----------- */
1083
- #calendar {
1084
- width: 100%;
1085
- margin: 0 auto;
1086
- }
1087
- .fc-header-left {
1088
- position: absolute;
1089
- left: 80px;
1090
- top: 0;
1091
- }
1092
- .fc-header-right{
1093
- position: absolute;
1094
- right: 80px;
1095
- top: 0;
1096
- }
1097
- .fc-header-center {
1098
- left: 50%;
1099
- margin-left: -100px;
1100
- position: absolute;
1101
- text-align: center;
1102
- top: 0;
1103
- width: 200px;
1104
- }
1105
- .fc-header-title h2 {
1106
- font-size:20px;
1107
- color:#3D3D3D;
1108
- text-shadow:1px 1px 1px white;
1109
- margin: 5px 0;
1110
- }
1111
- .fc-header .fc-button {
1112
- margin-right: -1px;
1113
- border:medium none;
1114
- }
1115
- .fc-state-default, .fc-state-default .fc-button-inner {
1116
- background: transparent;
1117
- border:0;
1118
- color: #555;
1119
- }
1120
- .fc-state-active, .fc-state-active .fc-button-inner {
1121
- background: transparent;
1122
- border: none;
1123
- color: #333;
1124
- font-weight: bold;
1125
- }
1126
- .fc-button-content {
1127
- float: left;
1128
- font-size: 16px;
1129
- height: auto;
1130
- line-height: 51px;
1131
- padding: 0 10px;
1132
- position: relative;
1133
- white-space: nowrap;
1134
- }
1135
- .fc-event-skin {
1136
- background-color: #67A0E5;
1137
- border-color:#447EC4;
1138
- color: #FFFFFF;
1139
- }
1140
- /* ----------- Progress bars ----------- */
1141
- .progress .bar{
1142
- background-color: #9AD4EC;
1143
- background-image: none;
1144
- box-shadow:none;
1145
- }
1146
- .progress-striped .bar{
1147
- background-color:#9AD4EC;
1148
- background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1149
- background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1150
- background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1151
- background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1152
- background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1153
- -webkit-background-size:40px 40px;
1154
- -moz-background-size:40px 40px;
1155
- -o-background-size:40px 40px;
1156
- background-size:40px 40px;
1157
- }
1158
- .progress-danger.progress-striped .bar, .progress-striped .bar-danger{
1159
- background-color: #F98886;
1160
- background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1161
- background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1162
- background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1163
- background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1164
- background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1165
- }
1166
- .progress-success.progress-striped .bar, .progress-striped .bar-success{
1167
- background-color: #9DD68B;
1168
- background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1169
- background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1170
- background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1171
- background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1172
- background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1173
- }
1174
- .progress-warning.progress-striped .bar, .progress-striped .bar-warning {
1175
- background-color: #F7C15D;
1176
- background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1177
- background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1178
- background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1179
- background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1180
- background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1181
- }
1182
- .progress-info.progress-striped .bar, .progress-striped .bar-info {
1183
- background-color: #9AD4EC;
1184
- background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1185
- background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1186
- background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1187
- background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1188
- background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1189
- }
1190
-
1191
-
1192
-
1193
-
1194
- .progress-success .bar, .progress .bar-success{
1195
- background-color: #9DD68B;
1196
- }
1197
- .progress-warning .bar, .progress .bar-warning{
1198
- background-color: #F7C15D;
1199
- }
1200
- .progress-danger .bar, .progress .bar-danger{
1201
- background-color: #F98886;
1202
- }
1203
- /* ----------- comments ----------- */
1204
- .widget-comments .avatar{
1205
- left: 0;
1206
- margin: 10px;
1207
- position: absolute;
1208
- top: 0;
1209
- width: 50px;
1210
- height: 50px;
1211
- }
1212
- .widget-comments ul{
1213
- list-style: none;
1214
- margin:0;
1215
- }
1216
- .widget-comments ul li{
1217
- position: relative;
1218
- }
1219
- .widget-comments .comment-bubble{
1220
- font-size:12px;
1221
- }
1222
- .widget-comments .comment-bubble h4{
1223
- color: #62687E;
1224
- font-size: 14px;
1225
- margin: 0;
1226
- }
1227
- .widget-comments .comment-bubble h4 strong{
1228
- color:#e28271;
1229
- }
1230
-
1231
-
1232
- .widget-comments .comment-bubble .settings {
1233
- position:relative;
1234
- text-align:right;
1235
- }
1236
- .widget-comments .comment-bubble .settings a{
1237
- font-size:10px;
1238
- margin-left:5px;
1239
- }
1240
- .comment-bubble .date {
1241
- color: #555555;
1242
- font-size: 10px;
1243
- position: absolute;
1244
- right: 10px;
1245
- top: 5px;
1246
- }
1247
-
1248
- /* ----------- tickets -----------*/
1249
- .widget-tickets ul{
1250
- margin:0;
1251
- }
1252
- .widget-tickets ul li:last-child{
1253
- border-bottom: none;
1254
- }
1255
- .widget-tickets ul li{
1256
- border-bottom: 1px solid #DDDDDD;
1257
- color: #9D9D9D;
1258
- display: block;
1259
- font-size: 11px;
1260
- height: 50px;
1261
- margin: 0;
1262
- overflow: hidden;
1263
- position: relative;
1264
- }
1265
- .widget-tickets ul li a{
1266
- display:block;
1267
- text-decoration: none;
1268
- color: #9D9D9D;
1269
- }
1270
- .widget-tickets ul li:hover{
1271
- background:#fafafa;
1272
- }
1273
- .widget-tickets .avatar{
1274
- float:left;
1275
- margin-right:10px;
1276
- border-right: 1px solid #DDDDDD;
1277
- width: 50px;
1278
- height: 50px;
1279
- }
1280
- .widget-tickets h4{
1281
- font-size:15px;
1282
- color: #62687E;
1283
- }
1284
- .widget-tickets h5{
1285
- padding-top:5px;
1286
- font-size:13px;
1287
- margin:0;
1288
- color: #62687E;
1289
- }
1290
-
1291
- .widget-tickets p{
1292
- overflow:hidden;
1293
- }
1294
- .widget-tickets .date{
1295
- color: #9D9D9D;
1296
- font-size: 10px;
1297
- position: absolute;
1298
- right: 10px;
1299
- top: 5px;
1300
- }
1301
- .widget-tickets .settings {
1302
- position:relative;
1303
- text-align:right;
1304
- }
1305
- .widget-tickets .settings a{
1306
- font-size:10px;
1307
- margin-left:5px;
1308
- display:inline;
1309
- color:#26AEF2;
1310
- }
1311
-
1312
- .widget-tickets.widget-tickets-large ul li
1313
- {
1314
- padding:15px;
1315
- height:auto;
1316
- }.widget-tickets.widget-tickets-large .username
1317
- {
1318
- font-size:10px;
1319
- position: relative;
1320
- text-align: right;
1321
- }
1322
-
1323
- /* ----------- user interface ----------- */
1324
- .widget-user-interface .form-horizontal .control-label{
1325
- padding:0;
1326
- width:110px;
1327
- }
1328
- .widget-user-interface .form-horizontal .controls{
1329
- margin-left:130px;
1330
- }
1331
- /* ----------- select2 fix ----------- */
1332
- .select2-container-multi .select2-choices{
1333
- border: 1px solid #CCCCCC;
1334
- -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
1335
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
1336
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
1337
- -moz-border-radius: 1px 1px 1px 1px;
1338
- -webkit-border-radius: 1px 1px 1px 1px;
1339
- border-radius: 1px 1px 1px 1px;
1340
- background-image: none;
1341
- height: 30px;
1342
- }
1343
- .select2-container-multi .select2-choices .select2-search-field input{
1344
- height: 25px;
1345
- }
1346
-
1347
- /* responsive css */
1348
- /* Landscape phones and down */
1349
- @media (max-width: 480px) {
1350
- body{
1351
- padding: 0!important;
1352
- }
1353
- .top-menu ul{
1354
- margin:0 15px 0 0!important;
1355
- }
1356
- .top-menu li a{
1357
- padding: 10px 5px!important;
1358
- }
1359
- label {
1360
- width: 100%;
1361
- }
1362
- label input {
1363
- width: 100%;
1364
- }
1365
- label select {
1366
- text-align:left;
1367
- width: 100%;
1368
- }
1369
- .label {
1370
- font-size: 9px!important;
1371
- }
1372
- .widget-padding .widget-body{
1373
- padding:5px!important;
1374
- }
1375
- .table{
1376
- font-size:12px;
1377
- }
1378
- .table tr > td{
1379
- padding:5px 1px;
1380
- vertical-align: middle;
1381
- }
1382
- .table .btn{
1383
- padding:2px 7px;
1384
- }
1385
- .nav-collapse.collapse{
1386
- position: static!important;
1387
- width: auto!important;
1388
- }
1389
- .navbar-fixed-top{
1390
- margin: 0!important;
1391
- }
1392
- .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner{
1393
- padding: 0!important;
1394
- }
1395
- .overview_boxes .box_row > div{
1396
- float: none!important;
1397
- margin: 0 0 15px 0;
1398
- }
1399
- .heading .btn{
1400
- font-size: 12px!important;
1401
- padding: 2px 8px;
1402
- }
1403
- .widget{
1404
- margin-bottom:25px;
1405
- }
1406
- .row-fluid .widget:last-child{
1407
- margin-bottom: 0;
1408
- }
1409
- .table tr > td{
1410
- padding:8px !important;
1411
- }
1412
- .widget-user-interface .form-horizontal .controls {
1413
- margin-left: 0;
1414
- }
1415
- .widget-padding .widget-body {
1416
- height: auto !important;
1417
- }
1418
- .widget-tasks-assigned .rightboxes li{
1419
- font-size:11px;
1420
- padding: 15px 0;
1421
- }
1422
- .widget-tasks-assigned .rightboxes li span{
1423
- font-size:9px;
1424
- margin-top:0;
1425
- }
1426
- .widget-analytics-small h5{
1427
- font-size:11px;
1428
- }
1429
- .widget-analytics-small h4{
1430
- font-size:12px;
1431
- }
1432
- .nav-tabs > li, .nav-pills > li{
1433
- float: none;
1434
- }
1435
- .widget-header .nav-tabs > .active > a:after{
1436
- display: none;
1437
- }
1438
- .main_container{
1439
- padding: 0 10px 25px;
1440
- }
1441
- .overview_boxes .box_row > div:last-child{
1442
- margin-right: 0;
1443
- }
1444
- }
1445
-
1446
- /* Landscape phone to portrait tablet */
1447
- @media (max-width: 767px) {
1448
- body{
1449
- padding: 0!important;
1450
- }
1451
- .nav-collapse.collapse{
1452
- position: static!important;
1453
- width: auto!important;
1454
- }
1455
- .navbar-fixed-top{
1456
- margin: 0!important;
1457
- }
1458
- .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner{
1459
- padding: 0!important;
1460
- }
1461
- label {
1462
- text-align:left;
1463
- width: 100%;
1464
- }
1465
- label input {
1466
- text-align:left;
1467
- width: 100%;
1468
- }
1469
- label select {
1470
- text-align:left;
1471
- width: 100%;
1472
- }
1473
- .widget-padding .widget-body{
1474
- padding:5px!important;
1475
- }
1476
- .widget{
1477
- margin-bottom:25px;
1478
- }
1479
- .row-fluid .widget:last-child{
1480
- margin-bottom: 0;
1481
- }
1482
- .accordion-group{
1483
- margin: 0;
1484
- }
1485
- .user_side{
1486
- padding: 15px 5px;
1487
- }
1488
- .main_container{
1489
- margin-left: 0px!important;
1490
- left: 0!important;
1491
- }
1492
- .logo {
1493
- margin: 0 0 0 15px;
1494
- }
1495
- .overview_boxes .box_row > div:last-child{
1496
- margin-right: 0;
1497
- }
1498
- }
1499
- /* Portrait tablet to landscape and desktop */
1500
- @media (min-width: 768px) and (max-width: 979px) {
1501
- .sidebar{
1502
- width: 100%!important;
1503
- }
1504
- .navbar-fixed-top{
1505
- margin: 0!important;
1506
- position: fixed!important;
1507
- }
1508
- .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner{
1509
- padding: 0!important;
1510
- }
1511
- .nav-collapse.collapse {
1512
- position: fixed;
1513
- width: 150px;
1514
- height: 100% !important;
1515
- background: #292A2F;
1516
- left: -150px;
1517
- }
1518
- .main_container{
1519
- margin-left: 0;
1520
- }
1521
- .accordion-heading .accordion-toggle {
1522
- display: block;
1523
- padding: 8px 10px;
1524
- }
1525
- .user_side{
1526
- padding: 15px 5px;
1527
- }
1528
- .logo {
1529
- margin: 0 0 0 15px;
1530
- }
1531
- .overview_boxes .box_row > div:last-child{
1532
- margin-right: 0;
1533
- }
1534
- }
1535
- @media (min-width: 980px) and (max-width: 1200px) {
1536
- .nav-collapse.collapse {
1537
- position: fixed;
1538
- width: 170px;
1539
- height: 100% !important;
1540
- background: #292A2F;
1541
- left: 0!important;
1542
- }
1543
- .main_container{
1544
- margin-left: 170px!important;
1545
- left: 0!important;
1546
- }
1547
- .logo {
1548
- margin: 0 90px 0 15px;
1549
- }
1550
- .overview_boxes .box_row > div:last-child{
1551
- margin-right: 0;
1552
- }
1553
- }
1554
- /* Large desktop */
1555
- @media (min-width: 1200px) {
1556
- .nav-collapse.collapse {
1557
- position: fixed;
1558
- width: 200px;
1559
- height: 100% !important;
1560
- background: #292A2F;
1561
- left: 0!important;
1562
- }
1563
- .main_container{
1564
- margin-left: 200px!important;
1565
- left: 0!important;
1566
- }
1567
- .logo {
1568
- margin: 0 90px 0 15px;
1569
- }
1570
- }
1571
-
1
+ /*------- RESPONSIVE -------*/
2
+
3
+ *{
4
+ -webkit-box-sizing: border-box;
5
+ -moz-box-sizing: border-box;
6
+ box-sizing: border-box;
7
+ }
8
+ html, body{
9
+ height: auto !important;
10
+ min-height: 100%;
11
+ }
12
+ body{
13
+ padding-top: 45px;
14
+ font-family: 'Open Sans', sans-serif;
15
+ background-image: url("dotted.png");
16
+ overflow-x: hidden;
17
+ }
18
+ h2{
19
+ text-shadow:1px 1px 1px #FFFFFF;
20
+ }
21
+ a {
22
+ color: #26AEF2;
23
+ }
24
+ a:focus{
25
+ outline: none;
26
+ }
27
+ form{
28
+ margin: 0;
29
+ }
30
+ input.focused{
31
+ border-color: rgba(82, 168, 236, 0.8);
32
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(82, 168, 236, 0.6);
33
+ outline: 0 none;
34
+ position: relative;
35
+ z-index: 2;
36
+ }
37
+
38
+ .field_with_errors > input {
39
+ border-color: rgba(226, 119, 90, 0.6);
40
+ outline: 0 none;
41
+ position: relative;
42
+ z-index: 2;
43
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(226, 119, 90, 0.6);
44
+ }
45
+
46
+ .field_with_errors > select {
47
+ border-color: rgba(226, 119, 90, 0.6);
48
+ outline: 0 none;
49
+ position: relative;
50
+ z-index: 2;
51
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(226, 119, 90, 0.6);
52
+ }
53
+ input.warning, input.warning:focus{
54
+ border-color: rgba(244, 183, 112, 0.6);
55
+ outline: 0 none;
56
+ position: relative;
57
+ z-index: 2;
58
+ }
59
+ input.warning:focus{
60
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(244, 183, 112, 0.6);
61
+
62
+ }
63
+ input.success, input.success:focus{
64
+ border-color: rgba(97, 204, 40, 0.6);
65
+ outline: 0 none;
66
+ position: relative;
67
+ z-index: 2;
68
+ }
69
+ input.success:focus{
70
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(97, 204, 40, 0.6);
71
+
72
+ }
73
+ input.knob{
74
+ display: none;
75
+ }
76
+ .pad15{
77
+ padding: 15px;
78
+ }
79
+ .form-actions{
80
+ margin-bottom: 0;
81
+ }
82
+ .breadcrumb {
83
+ background: none repeat scroll 0 0 transparent;
84
+ margin: 0;
85
+ padding: 8px 0;
86
+ }
87
+ .breadcrumb > li{
88
+ text-shadow: none;
89
+ }
90
+ .heading{
91
+ border-bottom: 1px solid #EBEBEB;
92
+ margin: 0;
93
+ padding: 0 0 15px;
94
+ font-weight: normal;
95
+ }
96
+ .heading > a.btn{
97
+ font-weight: normal;
98
+ margin: 5px 0 0;
99
+ }
100
+ .box{
101
+ background-color: #FFFFFF;
102
+ border: 1px solid #DDDDDD;
103
+ -moz-border-radius: 3px 3px 3px 3px;
104
+ -webkit-border-radius: 3px 3px 3px 3px;
105
+ border-radius: 3px 3px 3px 3px;
106
+ }
107
+ .container-narrow{
108
+ width: 95%;
109
+ max-width: 360px;
110
+ margin: 5% auto;
111
+ }
112
+ .divider hr{
113
+ margin: 18px 0;
114
+ width: 40%;
115
+ }
116
+ .divider {
117
+ color: #656564;
118
+ font-size: 18px;
119
+ line-height: 30px;
120
+ text-align: center;
121
+ margin: 10px 0 15px;
122
+ }
123
+ .avatar-20{
124
+ width:20px;
125
+ height:20px;
126
+ }
127
+ .avatar-50{
128
+ width:50px;
129
+ height:50px;
130
+ }
131
+ .inlinesparkline{
132
+ color: #FFFFFF;
133
+ }
134
+ /* bootstrap-time-picker fix*/
135
+ .bootstrap-timepicker table td input{
136
+ padding:2px;
137
+ font-size:11px;
138
+ }
139
+ /* fix for box-sizing */
140
+ select,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input {
141
+ height: 30px;
142
+ }
143
+ .input-append .add-on, .input-prepend .add-on{
144
+ height:30px;
145
+ width: 30px;
146
+ }
147
+ select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input{
148
+ border-radius:1px;
149
+ }
150
+ .input-append .add-on, .input-prepend .add-on{
151
+ width:30px;
152
+ height:30px;
153
+ }
154
+ /*tabs*/
155
+ .widget-header .nav.nav-tabs {
156
+ margin: 0;
157
+ border: medium none;
158
+ float: left;
159
+ }
160
+ .widget-header .nav-tabs > li{
161
+ margin: 0;
162
+ }
163
+ .widget-header .nav.nav-tabs li > a{
164
+ border: medium none;
165
+ -moz-border-radius: 0 0 0 0;
166
+ -webkit-border-radius: 0 0 0 0;
167
+ border-radius: 0 0 0 0;
168
+ font-size: 15px;
169
+ position: relative;
170
+ background: transparent;
171
+ line-height: 33px;
172
+ }
173
+ .widget-header .nav.nav-tabs li > a i{
174
+ margin-right: 5px;
175
+ }
176
+ .widget-header .nav.nav-tabs li > a:hover{
177
+ background: none repeat scroll 0 0 transparent;
178
+ border: medium none;
179
+ color: #444444;
180
+ }
181
+ .widget-header .nav-tabs > .active > a:after {
182
+ border-color: transparent transparent #FFFFFF;
183
+ border-style: solid;
184
+ border-width: 8px;
185
+ bottom: -1px;
186
+ content: "";
187
+ height: 0;
188
+ left: 50%;
189
+ margin: 0 -4px;
190
+ position: absolute;
191
+ width: 0;
192
+ }
193
+ /*buttons*/
194
+ .navbar .btn.btn-navbar{
195
+ background: #E28271;
196
+ margin: 7px 5px 7px 0;
197
+ }
198
+ .btn-circle{
199
+ border-radius:50px;
200
+ width:20px;
201
+ height:20px;
202
+ padding:0;
203
+ }
204
+ /* gallery */
205
+ .gallery-item {
206
+ display: inline-block;
207
+ margin-bottom: 6px;
208
+ vertical-align: top;
209
+ }
210
+ /* top menu notifications/messages */
211
+ .top-menu .popover.bottom .arrow:after {
212
+ border-bottom-color: #F7F7F7;
213
+ }
214
+ .top-menu .popover{
215
+ width:300px;
216
+ }
217
+ .top-menu .popover-content{
218
+ padding:0;
219
+ }
220
+ .top-menu .popover-content ul{
221
+ width: 100%;
222
+ }
223
+ .top-menu .popover-content li:hover{
224
+ background-color:#fafafa;
225
+ }
226
+ .top-menu .popover-content li{
227
+ display:block;
228
+ border-bottom:1px solid #DDD;
229
+ line-height: 18px;
230
+ width:100%;
231
+ }
232
+ .top-menu .popover-content li:last-child{
233
+ border-bottom: none;
234
+ }
235
+ .top-menu .popover-content li a{
236
+ padding: 7px 5px 7px 45px;
237
+ font-size: 11px;
238
+ display: block;
239
+ color: #333;
240
+ line-height: 15px;
241
+ text-decoration: none;
242
+ }
243
+ .top-menu .popover-content li a h4{
244
+ display: block;
245
+ font-size:12px;
246
+ font-weight:bold;
247
+ margin:0;
248
+ }
249
+ .top-menu .popover-content li a span{
250
+ display: block;
251
+ font-size:10px;
252
+ color: #A8A8A8;
253
+ float:right;
254
+ }
255
+ .top-menu .popover-content li a img{
256
+ height: 35px;
257
+ left: 5px;
258
+ position: absolute;
259
+ width: 35px;
260
+ }
261
+ .top-menu .popover-content .popover_footer a{
262
+ background: none repeat scroll 0 0 #F7F7F7;
263
+ border-top: 1px solid #EBEBEB;
264
+ color: #444444;
265
+ display: block;
266
+ font-size: 12px;
267
+ padding: 3px 0;
268
+ text-align: center;
269
+ text-decoration: none;
270
+ }
271
+ .top-menu .popover-content .popover_footer a:hover{
272
+ background: none repeat scroll 0 0 #EDEDED;
273
+ }
274
+ /* hide bubble if the data attribute value is 0 */
275
+ .top-menu li a[data-notification="0"]:after {
276
+ display: none;
277
+ }
278
+ .top-menu li a[data-notification]:after {
279
+ background-image: linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
280
+ background-image: -o-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
281
+ background-image: -moz-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
282
+ background-image: -webkit-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
283
+ background-image: -ms-linear-gradient(bottom, rgb(199,24,33) 0%, rgb(245,71,71) 100%);
284
+ background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, rgb(199,24,33)),color-stop(1, rgb(245,71,71)));
285
+ border: 1px solid #751616;
286
+ border-radius: 4px 4px 4px 4px;
287
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 1px 1px rgba(0, 0, 0, 0.2);
288
+ color: #FFFFFF;
289
+ content: attr(data-notification);
290
+ font-size: 11px;
291
+ font-weight: bold;
292
+ min-width: 10px;
293
+ padding: 2px 3px;
294
+ position: absolute;
295
+ right: 1px;
296
+ text-align: center;
297
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
298
+ top: 2px;
299
+ line-height: 13px;
300
+ }
301
+ /* dataTables - Dynamic table */
302
+ table.table thead .sorting,
303
+ table.table thead .sorting_asc,
304
+ table.table thead .sorting_desc,
305
+ table.table thead .sorting_asc_disabled,
306
+ table.table thead .sorting_desc_disabled {
307
+ cursor: pointer;
308
+ *cursor: hand;
309
+ }
310
+ table.table thead .sorting { background: url('sort_both.png') no-repeat center right; }
311
+ table.table thead .sorting_asc { background: url('sort_asc.png') no-repeat center right; }
312
+ table.table thead .sorting_desc { background: url('sort_desc.png') no-repeat center right; }
313
+
314
+ table.table thead .sorting_asc_disabled { background: url('sort_asc_disabled.png') no-repeat center right; }
315
+ table.table thead .sorting_desc_disabled { background: url('sort_desc_disabled.png') no-repeat center right; }
316
+ .dataTables_filter{
317
+ text-align: right;
318
+ }
319
+ /* gritter notifications */
320
+ #gritter-notice-wrapper {
321
+ position:fixed;
322
+ top:55px;
323
+ right:20px;
324
+ width:301px;
325
+ z-index:9999;
326
+ }
327
+ #gritter-notice-wrapper.top-left {
328
+ left: 20px;
329
+ right: auto;
330
+ }
331
+ #gritter-notice-wrapper.bottom-right {
332
+ top: auto;
333
+ left: auto;
334
+ bottom: 20px;
335
+ right: 20px;
336
+ }
337
+ #gritter-notice-wrapper.bottom-left {
338
+ top: auto;
339
+ right: auto;
340
+ bottom: 20px;
341
+ left: 20px;
342
+ }
343
+ .gritter-item-wrapper {
344
+ position:relative;
345
+ margin:0 0 10px 0;
346
+ }
347
+ .gritter-top {
348
+ display: none;
349
+ }
350
+ .gritter-bottom {
351
+ display: none;
352
+ }
353
+ .gritter-item {
354
+ display:block;
355
+ /*background:url('assets/img/gritter.png') no-repeat left -40px;*/
356
+ background:#292A2F;
357
+ color:#fff;
358
+ padding:8px 11px;
359
+ font-size: 11px;
360
+ }
361
+ .hover .gritter-item {
362
+ background-position:right -40px;
363
+ }
364
+ .gritter-item p {
365
+ padding:0;
366
+ margin:0;
367
+ word-wrap:break-word;
368
+ }
369
+ .gritter-item a {
370
+ color: #26AEF2!important;
371
+ }
372
+ .gritter-close {
373
+ cursor: pointer;
374
+ display: block !important;
375
+ height: 30px;
376
+ position: absolute;
377
+ right: 3px;
378
+ text-align: right;
379
+ top: 0;
380
+ width: 30px;
381
+ }
382
+ .gritter-close:before {
383
+ content:"\f00d";
384
+ font-size: 20px;
385
+ }
386
+ .gritter-close:hover:before {
387
+ color: #eee;
388
+ }
389
+ .gritter-title {
390
+ font-size:14px;
391
+ font-weight:bold;
392
+ padding:0 0 7px 0;
393
+ display:block;
394
+ text-shadow:1px 1px 0 #000; /* Not supported by IE :( */
395
+ }
396
+ .gritter-image {
397
+ width:48px;
398
+ height:48px;
399
+ float:left;
400
+ }
401
+ .gritter-with-image,
402
+ .gritter-without-image {
403
+ padding:0;
404
+ }
405
+ .gritter-with-image {
406
+ width:220px;
407
+ float:right;
408
+ }
409
+ /* for the light (white) version of the gritter notice */
410
+ .gritter-light .gritter-item,
411
+ .gritter-light .gritter-bottom,
412
+ .gritter-light .gritter-top {
413
+ background: #F4F4F4;
414
+ color: #333;
415
+ border: 1px solid #D8D8D8;
416
+
417
+ }
418
+ .gritter-light .gritter-close:before {
419
+ color: #222;
420
+ }
421
+ .gritter-light .gritter-close:hover:before {
422
+ color: #666;
423
+ }
424
+ .gritter-light .gritter-title {
425
+ text-shadow: none;
426
+ }
427
+
428
+ /* user side */
429
+ .user_side{
430
+ padding: 15px 15px;
431
+ margin: 0;
432
+ background-color: #3D3E43;
433
+ }
434
+ .user_side img{
435
+ float:left;
436
+ width:50px;
437
+ height:50px;
438
+ -moz-border-radius:150px;
439
+ -webkit-border-radius:150px;
440
+ border-radius:150px;
441
+ margin: 0 15px 0 0;
442
+ }
443
+ .user_side h5{
444
+ color: #E28271;
445
+ line-height: 16px;
446
+ margin: 8px 0 0;
447
+ }
448
+ .user_side a{
449
+ color:#FFFFFF;
450
+ font-size: 11px;
451
+ }
452
+ /* dashboard */
453
+ .overview_boxes {
454
+ text-align: center;
455
+ margin-top: 15px;
456
+ min-height: 208px;
457
+ }
458
+ .overview_boxes .box_row{
459
+ display: none;
460
+ }
461
+ .overview_boxes .box_row > div{
462
+ float: left;
463
+ margin: 0 30px 15px 0;
464
+ text-align: center;
465
+ }
466
+ .overview_boxes .box_row:last-child > div:last-child{
467
+ margin-right:0;
468
+ }
469
+ .overview_boxes .userstats.clearfix {
470
+ margin: 0;
471
+ }
472
+ .box_row {
473
+ display: inline-block;
474
+ }
475
+ .overview_boxes h2{
476
+ color: #333;
477
+ font-size: 26px;
478
+ line-height: 30px;
479
+ margin: 5px 0 0;
480
+ }
481
+ .overview_boxes p{
482
+ color: #888;
483
+ font-size:14px;
484
+ margin: 0;
485
+ }
486
+ .overview_boxes .widget-tasks-statistics{
487
+ margin-left:15px;
488
+ }
489
+ .circle i{
490
+ color: #333333;
491
+ display: block;
492
+ font-size: 60px;
493
+ height: 120px;
494
+ line-height: 120px;
495
+ width: 120px;
496
+ }
497
+ .circle{
498
+ background-color: #FFFFFF;
499
+ border-radius: 120px;
500
+ display: inline-block;
501
+ border: 1px solid #ccc;
502
+ }
503
+ /* Navbar */
504
+ .navbar-fixed-top .navbar-inner{
505
+ height: 45px;
506
+ background: #292A2F;
507
+ border: none;
508
+ }
509
+ .navbar-fixed-top .navbar-inner, .navbar-static-top .navbar-inner{
510
+ box-shadow: none;
511
+ padding-right: 30px;
512
+ }
513
+ .logo {
514
+ float: left;
515
+ padding: 9px 0 0;
516
+ }
517
+ .container-fluid {
518
+ padding: 0;
519
+ position: relative;
520
+ }
521
+ #wrap {
522
+ height: auto !important;
523
+ min-height: 100%;
524
+ }
525
+ .main_container{
526
+ padding: 0 25px 25px;
527
+ position: relative;
528
+ }
529
+ .main_container > .row-fluid{
530
+ margin-bottom:25px;
531
+ }
532
+ /* ----------- wizard ----------- */
533
+ .widget-footer .wizard{
534
+ margin: 0;
535
+ list-style: none;
536
+ }
537
+ .widget-footer .wizard .next > a{
538
+ float: right;
539
+ margin-left: 10px;
540
+ }
541
+ .widget-footer .wizard .previous > a{
542
+ float: left;
543
+ margin-right: 10px;
544
+ }
545
+
546
+ /* ----------- top menu ----------- */
547
+
548
+ .top-menu ul{
549
+ list-style: none;
550
+ margin: 0;
551
+ }
552
+ .top-menu > ul > li{
553
+ float: left;
554
+ }
555
+ .top-menu > ul > li > a{
556
+ color: #fff;
557
+ display: block;
558
+ font-size: 16px;
559
+ line-height: 20px;
560
+ padding: 10px 15px;
561
+ text-decoration: none;
562
+ position: relative;
563
+ }
564
+
565
+ /* ----------- Side menu ----------- */
566
+ .b_F79999:hover, .b_F79999.active{
567
+ border-left: 2px solid #F79999;
568
+ }
569
+ .b_C3F7A7:hover, .b_C3F7A7.active{
570
+ border-left: 2px solid #C3F7A7;
571
+ }
572
+ .b_9FDDF6:hover, .b_9FDDF6.active{
573
+ border-left: 2px solid #9FDDF6;
574
+ }
575
+ .b_F6F1A2:hover, .b_F6F1A2.active{
576
+ border-left: 2px solid #F6F1A2;
577
+ }
578
+ .b_C1F8A9:hover, .b_C1F8A9.active{
579
+ border-left: 2px solid #C1F8A9;
580
+ }
581
+ .b_9FDDF6:hover, .b_9FDDF6.active{
582
+ border-left: 2px solid #9FDDF6;
583
+ }
584
+ .b_F5C294:hover, .b_F5C294.active{
585
+ border-left: 2px solid #F5C294;
586
+ }
587
+ .accordion-heading{
588
+ background: #292A2F;
589
+ }
590
+ .accordion-heading a{
591
+ border-left: 2px solid #292A2F;
592
+ border-bottom: 1px dashed #313131;
593
+ }
594
+ .accordion-group a{
595
+ display: block;
596
+ padding: 8px 15px;
597
+ color: #FFFFFF;
598
+ text-decoration: none;
599
+ position: relative;
600
+ }
601
+ .accordion-group{
602
+ border: none;
603
+ border-radius: 0;
604
+ }
605
+ .accordion-inner{
606
+ background-color: #3D3E43;
607
+ border: none;
608
+ padding: 9px 0;
609
+ }
610
+ .accordion-inner a{
611
+ border-left: 2px solid #3D3E43;
612
+ }
613
+ .accordion-inner a:hover, .accordion-inner a.active{
614
+ border-left: 2px solid #76777C;
615
+ }
616
+ .sidebar-nav .accordion-toggle.collapsed[data-toggle]:before, .sidebar-nav .accordion-toggle[data-toggle]:before{
617
+ position: absolute;
618
+ right: 15px;
619
+ top: 10px;
620
+ }
621
+ .sidebar-nav .accordion-toggle.collapsed[data-toggle]:before{
622
+ content:"\f054";
623
+ }
624
+ .sidebar-nav .accordion-toggle[data-toggle]:before{
625
+ content:"\f078";
626
+ }
627
+
628
+ /* ----------- Tasks page ----------- */
629
+ .widget-tasks-progress{
630
+ padding:25px;
631
+ text-align: center;
632
+
633
+ }.widget-tasks-progress .circle{
634
+ margin:0 5px;
635
+ display:inline-block;
636
+ }
637
+ .widget-tasks-progress .userstats {
638
+ position:relative;
639
+ display:inline-block;
640
+ text-align: center;
641
+ }
642
+ .widget-tasks-progress .userstats div{
643
+ display:inline-block;
644
+ }
645
+ .widget-tasks-progress .userstats img{
646
+ position:absolute;
647
+ z-index: 0;
648
+ width:60px;
649
+ left:20px;
650
+ top:20px;
651
+ border-radius:60px;
652
+ }
653
+ .widget-tasks-assigned ul{
654
+ list-style: none;
655
+ padding:0;
656
+ margin:0;
657
+ }
658
+ .widget-tasks-assigned ul > li{
659
+ background: none repeat scroll 0 0 #FFFFFF;
660
+ border-bottom: 1px solid #DDDDDD;
661
+ color: #9D9D9D;
662
+ display: block;
663
+ font-size: 11px;
664
+ height: 80px;
665
+ margin: 0;
666
+ overflow: hidden;
667
+ position: relative;
668
+ }
669
+ .widget-tasks-assigned .content{
670
+ color: #62687E;
671
+ float: left;
672
+ font-size: 13px;
673
+ padding-top: 5px;
674
+ padding-left:10px;
675
+ padding-right: 10px;
676
+ width: 70%;
677
+ }
678
+ .widget-tasks-assigned .content h5{
679
+ font-size:15px;
680
+ color: #62687E;
681
+ margin:0;
682
+ }
683
+ .widget-tasks-assigned .content span{
684
+ font-size:11px;
685
+ }
686
+ .widget-tasks-assigned .rightboxes {
687
+ position:relative;
688
+ right:0;
689
+ float:right;
690
+ width: 30%;
691
+ }
692
+ .widget-tasks-assigned .rightboxes li{
693
+ border-left: 1px solid #DDDDDD;
694
+ float: left;
695
+ font-size: 18px;
696
+ padding: 15px 10px;
697
+ text-align: center;
698
+ width: 50%;
699
+ }
700
+ .widget-tasks-assigned .rightboxes li span{
701
+ color: #CCCCCC;
702
+ display: block;
703
+ font-size: 14px;
704
+ margin-top: 5px;
705
+ }
706
+ .widget-tasks-assigned .info{
707
+ background: none repeat scroll 0 0 white;
708
+ bottom: 10px;
709
+ left: 10px;
710
+ position: absolute;
711
+ }
712
+ .widget-tasks-assigned .info .date{
713
+ color: #9D9D9D;
714
+ font-size: 10px;
715
+ float:right;
716
+ margin-right: 10px;
717
+ }
718
+
719
+ .widget-tasks-assigned .info img{
720
+ float:left;
721
+
722
+ }
723
+
724
+ .widget-tasks-assigned .progress{
725
+ border-radius: 0;
726
+ bottom: 0;
727
+ display: block;
728
+ height: 5px;
729
+ margin: 0;
730
+ position: absolute;
731
+ width: 100%;
732
+ }
733
+ .widget-tasks-statistics {
734
+ text-align: center;
735
+ }
736
+
737
+ .widget-tasks-statistics .userstats {
738
+ position:relative;
739
+ display:inline-block;
740
+ margin: 0 30px 10px;
741
+ }
742
+
743
+ .widget-tasks-statistics .userstats .image{
744
+ border-radius: 60px 60px 60px 60px;
745
+ left: 15px;
746
+ position: absolute;
747
+ top: 15px;
748
+ width: 45px;
749
+ opacity: 1;
750
+ padding:0;
751
+ }
752
+ .widget-tasks-statistics .userstats .white{
753
+ background: none repeat scroll 0 0 white;
754
+ border-radius: 60px 60px 60px 60px;
755
+ font-size: 40px;
756
+ left: 15px;
757
+ opacity: 1;
758
+ padding: 15px;
759
+ position: absolute;
760
+ top: 15px;
761
+ z-index: -1;
762
+ width: 90px;
763
+ height: 90px;
764
+ border: 1px solid #DDDDDD;
765
+ }
766
+ .widget-tasks-statistics .userstats a:hover{
767
+ text-decoration: none;
768
+ }
769
+ .widget-tasks-statistics .userstats .white p{
770
+ font-size:14px;
771
+ color:#555555;
772
+ }
773
+ .widget-tasks-statistics .userstats p strong{
774
+ display:block;
775
+ font-size:16px;
776
+ }
777
+
778
+ /* ----------- Widget ----------- */
779
+
780
+ .widget-top{
781
+ text-align:center;
782
+ }
783
+ .widget-top .circle{
784
+ display:inline-block;
785
+ margin:0 10px;
786
+ }
787
+ .widget{
788
+ /*margin-bottom: 15px; */
789
+ -moz-border-radius: 3px 3px 3px 3px;
790
+ -webkit-border-radius: 3px 3px 3px 3px;
791
+ border-radius: 3px 3px 3px 3px;
792
+ overflow: hidden;
793
+ }
794
+
795
+ .widget-padding .widget-body{
796
+ padding:15px;
797
+ }
798
+ .widget-footer{
799
+ background-color: #efefef;
800
+ -moz-border-radius: 0 0 3px 3px;
801
+ -webkit-border-radius: 0 0 3px 3px;
802
+ border-radius: 0 0 3px 3px;
803
+ padding: 10px;
804
+ border-color: #CCCCCC;
805
+ border-style: solid;
806
+ border-width: 0 1px 1px;
807
+ }
808
+ .widget-footer:after{
809
+ clear: both;
810
+ }
811
+ .widget-footer:after, .widget-footer:before{
812
+ content: "";
813
+ display: table;
814
+ line-height: 0;
815
+ }
816
+ .widget-header{
817
+ background-color: #efefef;
818
+ -moz-border-radius: 3px 3px 0 0;
819
+ -webkit-border-radius: 3px 3px 0 0;
820
+ border-radius: 3px 3px 0 0;
821
+ min-height: 51px;
822
+ border:1px solid #DDDDDD;
823
+ position: relative;
824
+ }
825
+ .widget-header > i, .widget-header h5{
826
+ float: left;
827
+ color: #62687e;
828
+ font-weight:200;
829
+ }
830
+ .widget-header > i{
831
+ font-size: 16px;
832
+ padding: 15px 10px 15px 11px;
833
+ text-align: center;
834
+ width: 40px;
835
+ }
836
+ .widget-header a, .widget-header .nav-tabs a{
837
+ color: #777777;
838
+ cursor: pointer;
839
+ font-size: 16px;
840
+ margin: 0 0 0 8px;
841
+ text-decoration: none;
842
+ }
843
+ .widget-header a:hover{
844
+ color: #333;
845
+ }
846
+ .widget-header .progress{
847
+ margin: 14px 0px;
848
+ width: 30%;
849
+ position: absolute;
850
+ right: 15px;
851
+ }
852
+ .widget-header a.widget-hidden i{
853
+ -moz-transform:rotate(180deg);
854
+ -webkit-transform:rotate(180deg);
855
+ -o-transform:rotate(180deg);
856
+ -ms-transform:rotate(180deg);
857
+ filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
858
+ }
859
+ .widget-header h5{
860
+ margin: 0;
861
+ padding: 15px 0 0;
862
+ font-size: 16px;
863
+ }
864
+ .widget-header .btn-group{
865
+ float: right;
866
+ margin: 7px;
867
+ }
868
+ .widget-header-under{
869
+
870
+ background: none repeat scroll 0 0 #FCFCFC;
871
+ border-color: #DDDDDD;
872
+ border-style: solid;
873
+ border-width: 0 1px 1px;
874
+ clear: both;
875
+ font-size: 11px;
876
+ text-align: center;
877
+ padding:4px;
878
+ }
879
+ .widget-buttons{
880
+ float:right;
881
+ padding: 15px 15px 0 0;
882
+ }
883
+ .widget-buttons button{
884
+ margin-top:-5px;
885
+ }
886
+ .widget-body{
887
+ padding: 0;
888
+ border-style: solid;
889
+ border-width: 0 1px 1px;
890
+ border-color: #ccc;
891
+ background-color: #fff;
892
+ }
893
+ .widget-body .table strong{
894
+ color:#E28271;
895
+ }
896
+ .widget-body .table{
897
+ margin-bottom: 0;
898
+ }
899
+ .widget-header:before, .widget-header:after {
900
+ content: "";
901
+ display: table;
902
+ line-height: 0;
903
+ }
904
+ .widget-header:after {
905
+ clear: both;
906
+ }
907
+
908
+ /* ------------------------------- */
909
+ /* ----------- widgets ----------- */
910
+ /* ------------------------------- */
911
+
912
+ /*----------- items ----------- */
913
+ .comment-bubble{
914
+ background: none repeat scroll 0 0 #F3F6F7;
915
+ border: 1px solid #D5D8DF;
916
+ border-radius: 3px 3px 3px 3px;
917
+ display: block;
918
+ margin: 15px 10px 20px 70px;
919
+ padding: 5px;
920
+ position: relative;
921
+ }
922
+
923
+ .the-icons{
924
+ list-style: none;
925
+ }
926
+ .the-icons i{
927
+ font-size: 20px;
928
+ }
929
+
930
+ .btn.btn-box{
931
+ padding:20px;
932
+ border-radius:0;
933
+ color:#555555;
934
+ position: relative;
935
+ /*margin-bottom: 15px;*/
936
+ }
937
+ .btn.btn-box span{
938
+ display:block;
939
+ }
940
+ .btn.btn-small.btn-box{
941
+ padding:10px 0;
942
+ }
943
+
944
+ /* custom bootstrap design */
945
+ .btn{
946
+ border-radius:2px;
947
+ background-image:none !important;
948
+ }
949
+ .btn.btn-primary{
950
+ background-color: #2D9AF9;
951
+ background-image:none;
952
+ }
953
+ .btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
954
+ background-color: #3074FC;
955
+ }
956
+ .btn-info {
957
+ background-color: #42C1F7;
958
+ }
959
+ .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
960
+ background-color: #4FB6D4;
961
+ }
962
+ .btn-success {
963
+ background-color: #7BD77B;
964
+ }
965
+ .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
966
+ background-color: #71C371;
967
+ }
968
+
969
+
970
+ .bubble[data-bubble]:after{
971
+ content: attr(data-bubble);
972
+ position: absolute;
973
+ top: -5px;
974
+ right: -5px;
975
+ font-size: 11px;
976
+ padding: 2px 4px;
977
+ text-align: center;
978
+ font-weight: bold;
979
+ color: #fff;
980
+ text-shadow: 0px 1px 0px rgba(0,0,0,.15);
981
+ min-width: 15px;
982
+ border-radius:30px;
983
+ }
984
+ .bubble-danger:after{
985
+ background: #ff7c7c; /* Old browsers */
986
+ background: -moz-linear-gradient(top, #ff7c7c 0%, #ef3737 100%); /* FF3.6+ */
987
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7c7c), color-stop(100%,#ef3737)); /* Chrome,Safari4+ */
988
+ background: -webkit-linear-gradient(top, #ff7c7c 0%,#ef3737 100%); /* Chrome10+,Safari5.1+ */
989
+ background: -o-linear-gradient(top, #ff7c7c 0%,#ef3737 100%); /* Opera 11.10+ */
990
+ background: -ms-linear-gradient(top, #ff7c7c 0%,#ef3737 100%); /* IE10+ */
991
+ background: linear-gradient(to bottom, #ff7c7c 0%,#ef3737 100%); /* W3C */
992
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7c7c', endColorstr='#ef3737',GradientType=0 ); /* IE6-9 */
993
+ border:1px solid #BF3333;
994
+
995
+ }
996
+ .bubble-info:after{
997
+ background: #7ec2dd; /* Old browsers */
998
+ background: -moz-linear-gradient(top, #7ec2dd 0%, #34a9c9 100%); /* FF3.6+ */
999
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7ec2dd), color-stop(100%,#34a9c9)); /* Chrome,Safari4+ */
1000
+ background: -webkit-linear-gradient(top, #7ec2dd 0%,#34a9c9 100%); /* Chrome10+,Safari5.1+ */
1001
+ background: -o-linear-gradient(top, #7ec2dd 0%,#34a9c9 100%); /* Opera 11.10+ */
1002
+ background: -ms-linear-gradient(top, #7ec2dd 0%,#34a9c9 100%); /* IE10+ */
1003
+ background: linear-gradient(to bottom, #7ec2dd 0%,#34a9c9 100%); /* W3C */
1004
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7ec2dd', endColorstr='#34a9c9',GradientType=0 ); /* IE6-9 */
1005
+ border:1px solid #2F7C91;
1006
+
1007
+ }
1008
+ .bubble-warning:after{
1009
+ background: #e5d849; /* Old browsers */
1010
+ background: -moz-linear-gradient(top, #e5d849 0%, #c4b623 100%); /* FF3.6+ */
1011
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5d849), color-stop(100%,#c4b623)); /* Chrome,Safari4+ */
1012
+ background: -webkit-linear-gradient(top, #e5d849 0%,#c4b623 100%); /* Chrome10+,Safari5.1+ */
1013
+ background: -o-linear-gradient(top, #e5d849 0%,#c4b623 100%); /* Opera 11.10+ */
1014
+ background: -ms-linear-gradient(top, #e5d849 0%,#c4b623 100%); /* IE10+ */
1015
+ background: linear-gradient(to bottom, #e5d849 0%,#c4b623 100%); /* W3C */
1016
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5d849', endColorstr='#c4b623',GradientType=0 ); /* IE6-9 */
1017
+
1018
+ border:1px solid #9B8F20;
1019
+ }
1020
+ .bubble-success:after{
1021
+ background: #94e569; /* Old browsers */
1022
+ background: -moz-linear-gradient(top, #94e569 0%, #62a53e 100%); /* FF3.6+ */
1023
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#94e569), color-stop(100%,#62a53e)); /* Chrome,Safari4+ */
1024
+ background: -webkit-linear-gradient(top, #94e569 0%,#62a53e 100%); /* Chrome10+,Safari5.1+ */
1025
+ background: -o-linear-gradient(top, #94e569 0%,#62a53e 100%); /* Opera 11.10+ */
1026
+ background: -ms-linear-gradient(top, #94e569 0%,#62a53e 100%); /* IE10+ */
1027
+ background: linear-gradient(to bottom, #94e569 0%,#62a53e 100%); /* W3C */
1028
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94e569', endColorstr='#62a53e',GradientType=0 ); /* IE6-9 */
1029
+
1030
+
1031
+ border:1px solid #7ABC56;
1032
+ }
1033
+
1034
+ .priority-high{border-right:4px solid #F79999;}
1035
+ .priority-medium{border-right:4px solid #F5C294;}
1036
+ .priority-low{border-right:4px solid #C3F7A7;}
1037
+
1038
+ .priority-high-left{border-left:4px solid #F79999;}
1039
+ .priority-medium-left{border-left:4px solid #F5C294;}
1040
+ .priority-low-left{border-left:4px solid #C3F7A7;}
1041
+
1042
+ /* ----------- analytics ----------- */
1043
+
1044
+ .widget-analytics-large{
1045
+ width : 100%;
1046
+ height: 100%;
1047
+ margin: 8px auto;
1048
+ }
1049
+
1050
+ .widget-analytics-small{
1051
+
1052
+ }
1053
+ .widget-analytics-small ul{
1054
+ list-style:none;
1055
+ float:left;
1056
+ margin:0;
1057
+ width:100%;
1058
+ }
1059
+ .widget-analytics-small ul li{
1060
+ clear:both;
1061
+ margin:10px 5px;
1062
+ }
1063
+ .widget-analytics-small span{
1064
+ margin: 0 7px 0 0;
1065
+ }
1066
+ .widget-analytics-small a{
1067
+ }
1068
+ .widget-analytics-small h4{
1069
+ margin: 0 10px 0 0;
1070
+ float:right;
1071
+ display:inline;
1072
+ color:#E28271;
1073
+
1074
+ }
1075
+ .widget-analytics-small h5{
1076
+ font-size:12px;
1077
+ margin:0;
1078
+ display:inline;
1079
+ }
1080
+
1081
+
1082
+ /* ----------- calendar ----------- */
1083
+ #calendar {
1084
+ width: 100%;
1085
+ margin: 0 auto;
1086
+ }
1087
+ .fc-header-left {
1088
+ position: absolute;
1089
+ left: 80px;
1090
+ top: 0;
1091
+ }
1092
+ .fc-header-right{
1093
+ position: absolute;
1094
+ right: 80px;
1095
+ top: 0;
1096
+ }
1097
+ .fc-header-center {
1098
+ left: 50%;
1099
+ margin-left: -100px;
1100
+ position: absolute;
1101
+ text-align: center;
1102
+ top: 0;
1103
+ width: 200px;
1104
+ }
1105
+ .fc-header-title h2 {
1106
+ font-size:20px;
1107
+ color:#3D3D3D;
1108
+ text-shadow:1px 1px 1px white;
1109
+ margin: 5px 0;
1110
+ }
1111
+ .fc-header .fc-button {
1112
+ margin-right: -1px;
1113
+ border:medium none;
1114
+ }
1115
+ .fc-state-default, .fc-state-default .fc-button-inner {
1116
+ background: transparent;
1117
+ border:0;
1118
+ color: #555;
1119
+ }
1120
+ .fc-state-active, .fc-state-active .fc-button-inner {
1121
+ background: transparent;
1122
+ border: none;
1123
+ color: #333;
1124
+ font-weight: bold;
1125
+ }
1126
+ .fc-button-content {
1127
+ float: left;
1128
+ font-size: 16px;
1129
+ height: auto;
1130
+ line-height: 51px;
1131
+ padding: 0 10px;
1132
+ position: relative;
1133
+ white-space: nowrap;
1134
+ }
1135
+ .fc-event-skin {
1136
+ background-color: #67A0E5;
1137
+ border-color:#447EC4;
1138
+ color: #FFFFFF;
1139
+ }
1140
+ /* ----------- Progress bars ----------- */
1141
+ .progress .bar{
1142
+ background-color: #9AD4EC;
1143
+ background-image: none;
1144
+ box-shadow:none;
1145
+ }
1146
+ .progress-striped .bar{
1147
+ background-color:#9AD4EC;
1148
+ background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1149
+ background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1150
+ background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1151
+ background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1152
+ background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1153
+ -webkit-background-size:40px 40px;
1154
+ -moz-background-size:40px 40px;
1155
+ -o-background-size:40px 40px;
1156
+ background-size:40px 40px;
1157
+ }
1158
+ .progress-danger.progress-striped .bar, .progress-striped .bar-danger{
1159
+ background-color: #F98886;
1160
+ background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1161
+ background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1162
+ background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1163
+ background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1164
+ background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1165
+ }
1166
+ .progress-success.progress-striped .bar, .progress-striped .bar-success{
1167
+ background-color: #9DD68B;
1168
+ background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1169
+ background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1170
+ background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1171
+ background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1172
+ background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1173
+ }
1174
+ .progress-warning.progress-striped .bar, .progress-striped .bar-warning {
1175
+ background-color: #F7C15D;
1176
+ background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1177
+ background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1178
+ background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1179
+ background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1180
+ background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1181
+ }
1182
+ .progress-info.progress-striped .bar, .progress-striped .bar-info {
1183
+ background-color: #9AD4EC;
1184
+ background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.25)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.25)), color-stop(0.75, rgba(255, 255, 255, 0.25)), color-stop(0.75, transparent), to(transparent));
1185
+ background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1186
+ background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1187
+ background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1188
+ background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 75%, transparent 75%, transparent);
1189
+ }
1190
+
1191
+
1192
+
1193
+
1194
+ .progress-success .bar, .progress .bar-success{
1195
+ background-color: #9DD68B;
1196
+ }
1197
+ .progress-warning .bar, .progress .bar-warning{
1198
+ background-color: #F7C15D;
1199
+ }
1200
+ .progress-danger .bar, .progress .bar-danger{
1201
+ background-color: #F98886;
1202
+ }
1203
+ /* ----------- comments ----------- */
1204
+ .widget-comments .avatar{
1205
+ left: 0;
1206
+ margin: 10px;
1207
+ position: absolute;
1208
+ top: 0;
1209
+ width: 50px;
1210
+ height: 50px;
1211
+ }
1212
+ .widget-comments ul{
1213
+ list-style: none;
1214
+ margin:0;
1215
+ }
1216
+ .widget-comments ul li{
1217
+ position: relative;
1218
+ }
1219
+ .widget-comments .comment-bubble{
1220
+ font-size:12px;
1221
+ }
1222
+ .widget-comments .comment-bubble h4{
1223
+ color: #62687E;
1224
+ font-size: 14px;
1225
+ margin: 0;
1226
+ }
1227
+ .widget-comments .comment-bubble h4 strong{
1228
+ color:#e28271;
1229
+ }
1230
+
1231
+
1232
+ .widget-comments .comment-bubble .settings {
1233
+ position:relative;
1234
+ text-align:right;
1235
+ }
1236
+ .widget-comments .comment-bubble .settings a{
1237
+ font-size:10px;
1238
+ margin-left:5px;
1239
+ }
1240
+ .comment-bubble .date {
1241
+ color: #555555;
1242
+ font-size: 10px;
1243
+ position: absolute;
1244
+ right: 10px;
1245
+ top: 5px;
1246
+ }
1247
+
1248
+ /* ----------- tickets -----------*/
1249
+ .widget-tickets ul{
1250
+ margin:0;
1251
+ }
1252
+ .widget-tickets ul li:last-child{
1253
+ border-bottom: none;
1254
+ }
1255
+ .widget-tickets ul li{
1256
+ border-bottom: 1px solid #DDDDDD;
1257
+ color: #9D9D9D;
1258
+ display: block;
1259
+ font-size: 11px;
1260
+ height: 50px;
1261
+ margin: 0;
1262
+ overflow: hidden;
1263
+ position: relative;
1264
+ }
1265
+ .widget-tickets ul li a{
1266
+ display:block;
1267
+ text-decoration: none;
1268
+ color: #9D9D9D;
1269
+ }
1270
+ .widget-tickets ul li:hover{
1271
+ background:#fafafa;
1272
+ }
1273
+ .widget-tickets .avatar{
1274
+ float:left;
1275
+ margin-right:10px;
1276
+ border-right: 1px solid #DDDDDD;
1277
+ width: 50px;
1278
+ height: 50px;
1279
+ }
1280
+ .widget-tickets h4{
1281
+ font-size:15px;
1282
+ color: #62687E;
1283
+ }
1284
+ .widget-tickets h5{
1285
+ padding-top:5px;
1286
+ font-size:13px;
1287
+ margin:0;
1288
+ color: #62687E;
1289
+ }
1290
+
1291
+ .widget-tickets p{
1292
+ overflow:hidden;
1293
+ }
1294
+ .widget-tickets .date{
1295
+ color: #9D9D9D;
1296
+ font-size: 10px;
1297
+ position: absolute;
1298
+ right: 10px;
1299
+ top: 5px;
1300
+ }
1301
+ .widget-tickets .settings {
1302
+ position:relative;
1303
+ text-align:right;
1304
+ }
1305
+ .widget-tickets .settings a{
1306
+ font-size:10px;
1307
+ margin-left:5px;
1308
+ display:inline;
1309
+ color:#26AEF2;
1310
+ }
1311
+
1312
+ .widget-tickets.widget-tickets-large ul li
1313
+ {
1314
+ padding:15px;
1315
+ height:auto;
1316
+ }.widget-tickets.widget-tickets-large .username
1317
+ {
1318
+ font-size:10px;
1319
+ position: relative;
1320
+ text-align: right;
1321
+ }
1322
+
1323
+ /* ----------- user interface ----------- */
1324
+ .widget-user-interface .form-horizontal .control-label{
1325
+ padding:0;
1326
+ width:110px;
1327
+ }
1328
+ .widget-user-interface .form-horizontal .controls{
1329
+ margin-left:130px;
1330
+ }
1331
+ /* ----------- select2 fix ----------- */
1332
+ .select2-container-multi .select2-choices{
1333
+ border: 1px solid #CCCCCC;
1334
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
1335
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
1336
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
1337
+ -moz-border-radius: 1px 1px 1px 1px;
1338
+ -webkit-border-radius: 1px 1px 1px 1px;
1339
+ border-radius: 1px 1px 1px 1px;
1340
+ background-image: none;
1341
+ height: 30px;
1342
+ }
1343
+ .select2-container-multi .select2-choices .select2-search-field input{
1344
+ height: 25px;
1345
+ }
1346
+
1347
+ /* responsive css */
1348
+ /* Landscape phones and down */
1349
+ @media (max-width: 480px) {
1350
+ body{
1351
+ padding: 0!important;
1352
+ }
1353
+ .top-menu ul{
1354
+ margin:0 15px 0 0!important;
1355
+ }
1356
+ .top-menu li a{
1357
+ padding: 10px 5px!important;
1358
+ }
1359
+ label {
1360
+ width: 100%;
1361
+ }
1362
+ label input {
1363
+ width: 100%;
1364
+ }
1365
+ label select {
1366
+ text-align:left;
1367
+ width: 100%;
1368
+ }
1369
+ .label {
1370
+ font-size: 9px!important;
1371
+ }
1372
+ .widget-padding .widget-body{
1373
+ padding:5px!important;
1374
+ }
1375
+ .table{
1376
+ font-size:12px;
1377
+ }
1378
+ .table tr > td{
1379
+ padding:5px 1px;
1380
+ vertical-align: middle;
1381
+ }
1382
+ .table .btn{
1383
+ padding:2px 7px;
1384
+ }
1385
+ .nav-collapse.collapse{
1386
+ position: static!important;
1387
+ width: auto!important;
1388
+ }
1389
+ .navbar-fixed-top{
1390
+ margin: 0!important;
1391
+ }
1392
+ .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner{
1393
+ padding: 0!important;
1394
+ }
1395
+ .overview_boxes .box_row > div{
1396
+ float: none!important;
1397
+ margin: 0 0 15px 0;
1398
+ }
1399
+ .heading .btn{
1400
+ font-size: 12px!important;
1401
+ padding: 2px 8px;
1402
+ }
1403
+ .widget{
1404
+ margin-bottom:25px;
1405
+ }
1406
+ .row-fluid .widget:last-child{
1407
+ margin-bottom: 0;
1408
+ }
1409
+ .table tr > td{
1410
+ padding:8px !important;
1411
+ }
1412
+ .widget-user-interface .form-horizontal .controls {
1413
+ margin-left: 0;
1414
+ }
1415
+ .widget-padding .widget-body {
1416
+ height: auto !important;
1417
+ }
1418
+ .widget-tasks-assigned .rightboxes li{
1419
+ font-size:11px;
1420
+ padding: 15px 0;
1421
+ }
1422
+ .widget-tasks-assigned .rightboxes li span{
1423
+ font-size:9px;
1424
+ margin-top:0;
1425
+ }
1426
+ .widget-analytics-small h5{
1427
+ font-size:11px;
1428
+ }
1429
+ .widget-analytics-small h4{
1430
+ font-size:12px;
1431
+ }
1432
+ .nav-tabs > li, .nav-pills > li{
1433
+ float: none;
1434
+ }
1435
+ .widget-header .nav-tabs > .active > a:after{
1436
+ display: none;
1437
+ }
1438
+ .main_container{
1439
+ padding: 0 10px 25px;
1440
+ }
1441
+ .overview_boxes .box_row > div:last-child{
1442
+ margin-right: 0;
1443
+ }
1444
+ }
1445
+
1446
+ /* Landscape phone to portrait tablet */
1447
+ @media (max-width: 767px) {
1448
+ body{
1449
+ padding: 0!important;
1450
+ }
1451
+ .nav-collapse.collapse{
1452
+ position: static!important;
1453
+ width: auto!important;
1454
+ }
1455
+ .navbar-fixed-top{
1456
+ margin: 0!important;
1457
+ }
1458
+ .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner{
1459
+ padding: 0!important;
1460
+ }
1461
+ label {
1462
+ text-align:left;
1463
+ width: 100%;
1464
+ }
1465
+ label input {
1466
+ text-align:left;
1467
+ width: 100%;
1468
+ }
1469
+ label select {
1470
+ text-align:left;
1471
+ width: 100%;
1472
+ }
1473
+ .widget-padding .widget-body{
1474
+ padding:5px!important;
1475
+ }
1476
+ .widget{
1477
+ margin-bottom:25px;
1478
+ }
1479
+ .row-fluid .widget:last-child{
1480
+ margin-bottom: 0;
1481
+ }
1482
+ .accordion-group{
1483
+ margin: 0;
1484
+ }
1485
+ .user_side{
1486
+ padding: 15px 5px;
1487
+ }
1488
+ .main_container{
1489
+ margin-left: 0px!important;
1490
+ left: 0!important;
1491
+ }
1492
+ .logo {
1493
+ margin: 0 0 0 15px;
1494
+ }
1495
+ .overview_boxes .box_row > div:last-child{
1496
+ margin-right: 0;
1497
+ }
1498
+ }
1499
+ /* Portrait tablet to landscape and desktop */
1500
+ @media (min-width: 768px) and (max-width: 979px) {
1501
+ .sidebar{
1502
+ width: 100%!important;
1503
+ }
1504
+ .navbar-fixed-top{
1505
+ margin: 0!important;
1506
+ position: fixed!important;
1507
+ }
1508
+ .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner{
1509
+ padding: 0!important;
1510
+ }
1511
+ .nav-collapse.collapse {
1512
+ position: fixed;
1513
+ width: 150px;
1514
+ height: 100% !important;
1515
+ background: #292A2F;
1516
+ left: -150px;
1517
+ }
1518
+ .main_container{
1519
+ margin-left: 0;
1520
+ }
1521
+ .accordion-heading .accordion-toggle {
1522
+ display: block;
1523
+ padding: 8px 10px;
1524
+ }
1525
+ .user_side{
1526
+ padding: 15px 5px;
1527
+ }
1528
+ .logo {
1529
+ margin: 0 0 0 15px;
1530
+ }
1531
+ .overview_boxes .box_row > div:last-child{
1532
+ margin-right: 0;
1533
+ }
1534
+ }
1535
+ @media (min-width: 980px) and (max-width: 1200px) {
1536
+ .nav-collapse.collapse {
1537
+ position: fixed;
1538
+ width: 170px;
1539
+ height: 100% !important;
1540
+ background: #292A2F;
1541
+ left: 0!important;
1542
+ }
1543
+ .main_container{
1544
+ margin-left: 170px!important;
1545
+ left: 0!important;
1546
+ }
1547
+ .logo {
1548
+ margin: 0 90px 0 15px;
1549
+ }
1550
+ .overview_boxes .box_row > div:last-child{
1551
+ margin-right: 0;
1552
+ }
1553
+ }
1554
+ /* Large desktop */
1555
+ @media (min-width: 1200px) {
1556
+ .nav-collapse.collapse {
1557
+ position: fixed;
1558
+ width: 200px;
1559
+ height: 100% !important;
1560
+ background: #292A2F;
1561
+ left: 0!important;
1562
+ }
1563
+ .main_container{
1564
+ margin-left: 200px!important;
1565
+ left: 0!important;
1566
+ }
1567
+ .logo {
1568
+ margin: 0 90px 0 15px;
1569
+ }
1570
+ }
1571
+