Commit Graph

57 Commits

Author SHA1 Message Date
James Brooks b5b60fff45 Added update checking, part of #109 2015-11-29 11:00:10 +00:00
James Brooks e46ee644ae Make alert links readable 2015-11-29 10:53:55 +00:00
Joseph Cohen fcc21ce337 Drop the HQ on js 2015-11-20 12:02:19 -06:00
James Brooks 1db5dcbfe6 Fixes #1155 2015-11-19 17:58:01 +00:00
Joseph Cohen 36f0f9f2cb Remove footer icons, make button outline, fix responsive 2015-10-26 12:09:41 -06:00
Joseph Cohen df8e9ea101 Make footer simpler 2015-10-24 12:48:40 -05:00
James Brooks 4e7d4c4581 Move the subscribers button into footer, re-arrange top half page 2015-10-17 14:18:45 +01:00
ulrik nielsen a374ae9abd removed the incident array 2015-10-07 21:48:23 +02:00
Davide Bellini 54d3419d5e Add border to the dragged item 2015-10-05 14:52:50 +02:00
Davide Bellini 021a842520 Added background to sortable list 2015-10-05 12:36:47 +02:00
Davide Bellini e9702e4292 Merged branch master and fixed conflict
After Password Strength merge this branch have 2 conflict:
- gulpfile.js
- public/build/rev-manifest.json

All conflicts solved now
2015-10-03 12:53:43 +02:00
Joseph Cohen 4baaf69907 Small update to the password strength indicator 2015-10-03 03:19:47 -05:00
Antoine Augusti 130dc11740 Add a password strength indicator on relevant forms 2015-10-03 09:50:18 +02:00
Davide Bellini b6056faa72 Removed space before the question mark 2015-10-02 16:31:08 +02:00
Davide Bellini 3fca767624 Use SweetAlert for confirmation dialog 2015-10-01 23:28:01 +02:00
James Brooks eadedeecbf Autosize now works again 2015-09-23 21:25:10 +01:00
James Brooks 6b362fd88d Theming of Cachet is much simpler with more color settings 2015-09-04 22:39:52 +01:00
James Brooks 70a5022740 Working on a widget design for the dashboard index 2015-08-31 18:17:00 +01:00
James Brooks ba558e69a3 Removed erroneous :after pseudo-element 2015-08-25 21:26:22 +01:00
James Brooks 8a3f9196d3 Linking directly to an individual incident 2015-08-15 15:10:20 +01:00
Graham Campbell 1e4a8c8143 Added emoji parsing support 2015-07-25 16:02:35 +01:00
James Brooks d20f2cbbc8 Don't use teal for break element 2015-06-25 14:25:03 +01:00
Fabian Laule d207a2eeeb Fix floating of buttons on login screen & made border radius equal 2015-06-21 16:39:04 +02:00
James Brooks 2579b8a48e Move bower_components into vendor. Closes #747 2015-06-19 11:47:38 +01:00
James Brooks ea56ca4cec Update bootstrap-datetimepicker and fix #675 2015-06-16 14:28:26 +01:00
James Brooks 99b453bbd9 Changes to the incidents 2015-06-16 09:14:24 +01:00
Joseph Cohen 28110f5c8e Update elixir and some design changes 2015-06-15 17:17:49 -05:00
James Brooks 8573b78210 Split up sections a bit more 2015-06-15 21:47:35 +01:00
James Brooks 4f25318271 Component list changes 2015-06-15 21:42:55 +01:00
James Brooks 3bc499a093 Fix timeline stem height 2015-06-15 20:10:40 +01:00
James Brooks 538e22deff Button colour should be green too 2015-06-15 20:04:27 +01:00
James Brooks b591cf188c Cachet is primarily green based, make login green 2015-06-15 20:01:58 +01:00
James Brooks 16cb1bd545 Improve scheduled maintenance design 2015-06-15 16:55:02 +01:00
James Brooks 8ab3209afb Fix sticky footer? 2015-06-15 16:50:12 +01:00
James Brooks 3c5c8b0096 New login screen. 2015-06-13 14:36:02 +01:00
Luc Didry 43e75ceca1 Fix #712 Hide .bottom-menu-sidebar on small devices 2015-06-13 11:12:38 +02:00
James Brooks 9a200684c1 Improve footer layout and styling (fixed position is not fixed) 2015-06-10 22:09:28 +01:00
Joseph Cohen 55dcf3a277 Handle subscribers 2015-06-09 14:13:27 -05:00
James Brooks 8299afaa8a Update bootstrap-datetimepicker and styles. Closes #675 2015-05-28 14:26:51 +01:00
James Brooks 502ae9d2a0 Closes #669 2015-05-26 19:13:46 +01:00
James Brooks e399fe4637 Default jQuery AJAX accept headers to JSON 2015-05-25 20:18:01 +01:00
James Brooks 084f685387 Fix compilation of nav 2015-05-25 19:05:55 +01:00
James Brooks 6dbd15d272 Allow changing of some env variable during setup. 2015-05-25 18:40:09 +01:00
James Brooks 9337c1a75b Allows ordering of component groups. Closes #573. 2015-05-19 22:54:28 +01:00
James Brooks 77d0c20015 Allow changing of incident dates. Closes #615 2015-05-19 17:40:04 +01:00
James Brooks f277d8b2bc Toggle component group visibility. Closes #572 2015-05-18 21:45:14 +01:00
James Brooks 159e4fc0c9 Make panels use our colour palette. Add .alert default styles 2015-05-18 09:59:07 +01:00
James Brooks c370ed47ef Reduce letter spacing within the dashboard. 2015-05-18 09:53:30 +01:00
James Brooks afa66814fa Make alert styles consistent 2015-05-18 09:23:09 +01:00
EdeMeijer c4c55a73cb Use APC cache for Docker and fix bug with changing component sort order
By default, the file cache is used, but this breaks the throttling detection when authenticating.
The APC cache is tagged and will allow you to log in again after installation.
---
When changing the sort order, a form with hidden inputs for every component was serialized. The hidden inputs
had names in the form of `component[id]`. When you removed components, there would be holes in this ID sequence,
yielding a serialized array with empty values (since JS arrays always have every index until the highest one, even
if you don't specify a value).

This is fixed by just passing an array of component IDs in the desired sort order to the API endpoint. The API
will then update the components based on the implicit given sort order. Much simpler.
2015-04-25 12:00:53 +02:00