Status: Increase width of change-progress-row-left

Make the left portion wider as the change id is quite tight against
the progress bar right now. The progress bar is fixed at 100px and
stil fits well within size 8 column.

On desktop, size-8 is 122px wide, size-9 is 139px.
On mobile its even wider as columns collapse (eventually).

Change-Id: I894677b7bb4ded72f178e5703332df2ee20fd2d7
diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js
index 1db3c8e..0ca2718 100644
--- a/etc/status/public_html/jquery.zuul.js
+++ b/etc/status/public_html/jquery.zuul.js
@@ -289,10 +289,10 @@
                 }
 
                 var $change_progress_row_left = $('<div />')
-                    .addClass('col-xs-3')
+                    .addClass('col-xs-4')
                     .append($change_link);
                 var $change_progress_row_right = $('<div />')
-                    .addClass('col-xs-9')
+                    .addClass('col-xs-8')
                     .append(this.change_total_progress_bar(change));
 
                 var $change_progress_row = $('<div />')