Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appearance #159

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 18 additions & 46 deletions demo/css/myTheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

.fancyTable td, .fancyTable th {
/* appearance */
border: 1px solid #778899;
border: 1px solid #eee;

/* size */
padding: 5px;
Expand All @@ -77,70 +77,42 @@

.fancyTable tbody tr td {
/* appearance */
background-color: #eef2f9;
background-image: -moz-linear-gradient(
top,
rgba(255,255,255,0.4) 0%,
rgba(255,255,255,0.2) 50%,
rgba(255,255,255,0.1) 51%,
rgba(255,255,255,0.0) 100%);

background-image: -webkit-gradient(
linear, left top, left bottom,
color-stop(0%,rgba(255,255,255,0.4)),
color-stop(50%,rgba(255,255,255,0.2)),
color-stop(51%,rgba(255,255,255,0.1)),
color-stop(100%,rgba(255,255,255,0.0)));

background-color: #fff;
/* text */
color: #262c31;
font-size: 11px;
}

.fancyTable tbody tr.odd td {
/* appearance */
background-color: #d6e0ef;
background-image: -moz-linear-gradient(
top,
rgba(255,255,255,0.4) 0%,
rgba(255,255,255,0.2) 50%,
rgba(255,255,255,0.1) 51%,
rgba(255,255,255,0.0) 100%);

background-image: -webkit-gradient(
linear, left top, left bottom,
color-stop(0%,rgba(255,255,255,0.4)),
color-stop(50%,rgba(255,255,255,0.2)),
color-stop(51%,rgba(255,255,255,0.1)),
color-stop(100%,rgba(255,255,255,0.0)));
background-color: #eaeaea;
border-bottom: 1px solid #ccc;
}

.fancyTable thead tr th,
.fancyTable thead tr td,
.fancyTable tfoot tr th,
.fancyTable tfoot tr td {
/* appearance */
background-color: #8ca9cf;
background-image: -moz-linear-gradient(
top,
rgba(255,255,255,0.4) 0%,
rgba(255,255,255,0.2) 50%,
rgba(255,255,255,0.1) 51%,
rgba(255,255,255,0.0) 100%);

background-image: -webkit-gradient(
linear, left top, left bottom,
color-stop(0%,rgba(255,255,255,0.4)),
color-stop(50%,rgba(255,255,255,0.2)),
color-stop(51%,rgba(255,255,255,0.1)),
color-stop(100%,rgba(255,255,255,0.0)));

background-color: #EEE;
/* text */
color: #121517;
font-size: 12px;
font-weight: bold;
vert-align: middle;
text-shadow: 0 1px 1px #e8ebee;
}

.fancyTable thead tr th,
.fancyTable thead tr td{
border: 1px solid #CCC;
border-bottom: 2px solid #666;
}

.fancyTable tfoot tr th,
.fancyTable tfoot tr td {
border: 1px solid #CCC;
border-top: 2px solid #666;
}


/* Fancy Dark Table */
Expand Down