--- a/includes/clientside/css/enano-shared.css Sun Sep 05 16:05:06 2010 -0400
+++ b/includes/clientside/css/enano-shared.css Sun Sep 05 16:05:33 2010 -0400
@@ -793,7 +793,7 @@
.adminiconsprite {
width: 16px;
height: 16px;
- background-image: url(../../../images/icons/applets/sprite.png);
+ background-image: url(../../../images/icons/applets/sprite.png?1.1.8);
background-position: center center;
background-repeat: no-repeat;
}
@@ -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;
+}