diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 22:38:10 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 22:38:10 +0000 |
commit | 3e06100df817427b9d517bcf8b177f30f254b843 (patch) | |
tree | 6047bd5a8000993388b61ef649d6b0eb85833e2d /views/default/css/elements/components.php | |
parent | bfeee992e484fca7b2dcaaa6f3c84e17217a7f49 (diff) | |
download | elgg-3e06100df817427b9d517bcf8b177f30f254b843.tar.gz elgg-3e06100df817427b9d517bcf8b177f30f254b843.tar.bz2 |
Using shorthand in css to scrunch it a bit
git-svn-id: http://code.elgg.org/elgg/trunk@8478 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/components.php')
-rw-r--r-- | views/default/css/elements/components.php | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php index 9ab48b12b..50eff516f 100644 --- a/views/default/css/elements/components.php +++ b/views/default/css/elements/components.php @@ -217,10 +217,8 @@ float: right; font-size: 85%; padding: 1px 7px; - -moz-border-radius-topleft: 5px; - -moz-border-radius-topright: 5px; - -webkit-border-top-left-radius: 5px; - -webkit-border-top-right-radius: 5px; + -moz-border-radius: 5px 5px 0 0; + -webkit-border-radius: 5px 5px 0 0; } <?php //@todo lists.php ?> @@ -229,14 +227,12 @@ border-top: none; } .elgg-river-comments li:first-child { - -moz-border-radius-topleft: 5px; - -webkit-border-top-left-radius: 5px; + -moz-border-radius: 5px 0 0; + -webkit-border-radius: 5px 0 0; } .elgg-river-comments li:last-child { - -moz-border-radius-bottomleft: 5px; - -moz-border-radius-bottomright: 5px; - -webkit-border-bottom-right-radius: 5px; - -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomleft: 0 0 5px 5px; + -webkit-border-radius: 0 0 5px 5px; } .elgg-river-comments li { background-color: #EEEEEE; |