--- a/includes/clientside/css/enano-shared.css Sat Aug 21 23:30:56 2010 -0400
+++ b/includes/clientside/css/enano-shared.css Sat Aug 21 23:31:36 2010 -0400
@@ -1056,3 +1056,33 @@
background-color: #ddd;
padding: 3px;
}
+
+/* Totally cheating jQuery UI here. */
+div.ui-corner-left {
+ -moz-border-radius: 4px 0 0 4px;
+ -webkit-border-radius: 4px 0 0 4px;
+ border-radius: 4px 0 0 4px;
+}
+div.ui-corner-right {
+ -moz-border-radius: 0 4px 4px 0;
+ -webkit-border-radius: 0 4px 4px 0;
+ border-radius: 0 4px 4px 0;
+}
+div.ui-corner-all, div.ui-corner-left.ui-corner-right {
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+}
+div.ui-progressbar {
+ height: 2em;
+ background-color: #d0d0d0;
+}
+
+div.ui-progressbar-value {
+ height: 100%;
+ background-color: #909090;
+}
+
+div.ui-progressbar-failure div.ui-progressbar-value {
+ background-color: #E02600;
+}