summaryrefslogtreecommitdiff
path: root/ui.css
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-10-29 15:40:58 +0200
committerAlon Levy <alon@pobox.com>2014-10-29 15:41:16 +0200
commit00b33bbf1cef68c3d6c86fe8fd22c0d172743f07 (patch)
tree404e7ded4a88387c157c8aae1ee7661795b38797 /ui.css
parent5d7b3d1e22757c1b9cc9753120eaba97916de13a (diff)
fix multiple warnings from zed (zedapp.org)
css: use 0 instead of 0px (0 doesn't need a unit) fallback rgb(r,g,b) for rgba code: missing semicolons don't use initial caps for a function name unused variables
Diffstat (limited to 'ui.css')
-rw-r--r--ui.css17
1 files changed, 9 insertions, 8 deletions
diff --git a/ui.css b/ui.css
index 2c8f486a..91cc08bb 100644
--- a/ui.css
+++ b/ui.css
@@ -60,6 +60,7 @@
}
.ui-datepicker {
+ background-color: rgb(17,17,17);
background-color: rgba(17,17,17,0.9);
width: 217px;
height: auto;
@@ -67,9 +68,9 @@
font-size: 9pt;
border: 1px solid;
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
- -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
+ -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
+ -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}
@@ -84,16 +85,16 @@
}
.ui-datepicker-next {
float: right;
- background-position: center 0px;
+ background-position: center 0;
}
.ui-datepicker-header {
color: #e0e0e0;
font-weight: bold;
- -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 2);
- -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
- box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, .2);
- text-shadow: 1px -1px 0px #000;
+ -webkit-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 2);
+ -moz-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2);
+ box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, .2);
+ text-shadow: 1px -1px 0 #000;
filter: dropshadow(color=#000, offx=1, offy=-1);
line-height: 30px;
border-width: 1px 0 0 0;