Skip to content

Commit

Permalink
Fixed table css to properly handle CSS resets (Eric Meyer's reset css)
Browse files Browse the repository at this point in the history
Signed-off-by: Gautam Lad <gautam.lad@gmail.com>
  • Loading branch information
glad committed Aug 1, 2011
1 parent 4fa6b17 commit 4e305a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions css/android.css
@@ -1,7 +1,7 @@
/*
glDatePicker style inspired by the calendar app in FireFly 3.0 rom
http://code.gautamlad.com/gldatepicker/
http://code.gautamlad.com/glDatePicker/
https://github.com/glad/glDatePicker/
http://forum.xda-developers.com/showthread.php?t=914284
*/
Expand All @@ -10,7 +10,7 @@
.gldp-android
{
float:left;
font-family: "trebuchet ms" !important;
font-family:"trebuchet ms" !important;
background-color:#222 !important;
font-size:0.8em !important;
font-weight:bold !important;
Expand All @@ -20,6 +20,7 @@
.gldp-android table
{
border-spacing:1px;
border-collapse:inherit;
}

/* Default style of cell */
Expand Down
5 changes: 3 additions & 2 deletions css/default.css
@@ -1,15 +1,15 @@
/*
glDatePicker default style
http://code.gautamlad.com/gldatepicker/
http://code.gautamlad.com/glDatePicker/
https://github.com/glad/glDatePicker/
*/

/* Calendar container div */
.gldp-default
{
float:left;
font-family: "trebuchet ms" !important;
font-family:"trebuchet ms" !important;
background-color:#ccc !important;
font-size:0.8em !important;
font-weight:bold !important;
Expand All @@ -19,6 +19,7 @@
.gldp-default table
{
border-spacing:1px;
border-collapse:inherit;
}

/* Default style of cell */
Expand Down

0 comments on commit 4e305a0

Please sign in to comment.