aboutsummaryrefslogtreecommitdiff
path: root/views/default/css/elements/components.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-14 21:50:34 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-14 21:50:34 +0000
commitd3b5a8a53771dee9788608d1a30135ca0fa7c6aa (patch)
tree3c6202684991301a68802d307bec9eb4308dcd88 /views/default/css/elements/components.php
parentd27572e839f8f5d035471ce79aa2c2797b9bd086 (diff)
downloadelgg-d3b5a8a53771dee9788608d1a30135ca0fa7c6aa.tar.gz
elgg-d3b5a8a53771dee9788608d1a30135ca0fa7c6aa.tar.bz2
Fixes #3109: added non-vendor-prefixed css property declarations where applicable. Cleaned up various other aspects of the css
git-svn-id: http://code.elgg.org/elgg/trunk@8703 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/components.php')
-rw-r--r--views/default/css/elements/components.php32
1 files changed, 23 insertions, 9 deletions
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php
index f44d1ce7d..1d0fbf366 100644
--- a/views/default/css/elements/components.php
+++ b/views/default/css/elements/components.php
@@ -138,10 +138,14 @@
padding: 3px 10px;
cursor: pointer;
opacity: 0.9;
+
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
+
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
+ border-radius: 8px;
}
.elgg-state-success {
background-color: black;
@@ -193,15 +197,17 @@
.elgg-river-comments-tab {
display: block;
- background-color: #EEEEEE;
+ background-color: #EEE;
color: #4690D6;
margin-top: 5px;
width: auto;
float: right;
font-size: 85%;
padding: 1px 7px;
- -moz-border-radius: 5px 5px 0 0;
+
-webkit-border-radius: 5px 5px 0 0;
+ -moz-border-radius: 5px 5px 0 0;
+ border-radius: 5px 5px 0 0;
}
<?php //@todo components.php ?>
@@ -210,15 +216,17 @@
border-top: none;
}
.elgg-river-comments li:first-child {
- -moz-border-radius: 5px 0 0;
-webkit-border-radius: 5px 0 0;
+ -moz-border-radius: 5px 0 0;
+ border-radius: 5px 0 0;
}
.elgg-river-comments li:last-child {
- -moz-border-radius-bottomleft: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
+ -moz-border-radius-bottomleft: 0 0 5px 5px;
+ border-radius-bottomleft: 0 0 5px 5px;
}
.elgg-river-comments li {
- background-color: #EEEEEE;
+ background-color: #EEE;
border-bottom: none;
padding: 4px;
margin-bottom: 2px;
@@ -227,9 +235,12 @@
padding: 0;
}
.elgg-river-more {
- background-color: #EEEEEE;
- -moz-border-radius: 5px;
+ background-color: #EEE;
+
-webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+
padding: 2px 4px;
font-size: 85%;
margin-bottom: 2px;
@@ -237,10 +248,13 @@
<?php //@todo location-dependent styles ?>
.elgg-river-item form {
- background-color: #EEEEEE;
- padding: 4px 4px;
+ background-color: #EEE;
+ padding: 4px;
+
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
+ border-radius: 5px;
+
display: none;
height: 30px;
}