diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 22:26:51 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 22:26:51 +0000 |
commit | 0cb6ced20d3e54d1884ee5ab38c24e57246987dc (patch) | |
tree | f765597de0de10309923c81ef178e46232d83588 /views/default/css/elements/components.php | |
parent | 3e699017da34b994da17978b905e985c1927cec0 (diff) | |
download | elgg-0cb6ced20d3e54d1884ee5ab38c24e57246987dc.tar.gz elgg-0cb6ced20d3e54d1884ee5ab38c24e57246987dc.tar.bz2 |
Refs #3109: More CSS cleanup. Fixes bugs introduced by last cleanup where background-color: was being used instead of background:
git-svn-id: http://code.elgg.org/elgg/trunk@8707 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/components.php')
-rw-r--r-- | views/default/css/elements/components.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php index 1d0fbf366..df1632db4 100644 --- a/views/default/css/elements/components.php +++ b/views/default/css/elements/components.php @@ -91,28 +91,28 @@ *************************************** */ .elgg-table { width: 100%; - border-top: 1px solid #cccccc; + border-top: 1px solid #ccc; } .elgg-table td, .elgg-table th { padding: 4px 8px; - border: 1px solid #cccccc; + border: 1px solid #ccc; } .elgg-table th { - background-color: #dddddd; + background-color: #ddd; } .elgg-table tr:nth-child(odd), .elgg-table tr.odd { - background-color: #ffffff; + background-color: #fff; } .elgg-table tr:nth-child(even), .elgg-table tr.even { background-color: #f0f0f0; } .elgg-table-alt { width: 100%; - border-top: 1px solid #cccccc; + border-top: 1px solid #ccc; } .elgg-table-alt td { padding: 2px 4px 2px 4px; - border-bottom: 1px solid #cccccc; + border-bottom: 1px solid #ccc; } .elgg-table-alt td:first-child { width: 200px; @@ -161,10 +161,10 @@ River *************************************** */ .elgg-river { - border-top: 1px solid #CCCCCC; + border-top: 1px solid #CCC; } .elgg-river > li { - border-bottom: 1px solid #CCCCCC; + border-bottom: 1px solid #CCC; } .elgg-river-item { padding: 7px 0; @@ -173,13 +173,13 @@ margin-right: 20px; } .elgg-river-timestamp { - color: #666666; + color: #666; font-size: 85%; font-style: italic; line-height: 1.2em; } .elgg-river-content { - border-left: 1px solid #CCCCCC; + border-left: 1px solid #CCC; font-size: 85%; line-height: 1.5em; margin: 8px 0 5px 0; |