User Profile Comments again
authorLuzifr <szekely@woltlab.com>
Tue, 29 Nov 2011 19:12:51 +0000 (20:12 +0100)
committerLuzifr <szekely@woltlab.com>
Tue, 29 Nov 2011 19:12:54 +0000 (20:12 +0100)
wcfsetup/install/files/acp/style/style.css

index ea0e5b4de418166c0b4a720669342ed4fa591055..ab099f8665b24576292f3d15f8108431845de530 100644 (file)
@@ -4156,6 +4156,11 @@ div.scrollableContainer > div:first-child p {
        display: block;
 }
 
+.commentContent > .userName time {
+       font-size: 85%;
+       color: rgb(153, 153, 153);
+}
+
 
 
 /* Comment Response List */
@@ -4179,25 +4184,43 @@ div.scrollableContainer > div:first-child p {
 
 /* Comment Options */
 
-.commentOptions {
+.commentContent > .commentOptions,
+.commentResponseList > li .commentOptions {
        display: block;
        font-size: 85%;
-       padding: 3px 0 0;
+       position: absolute;
+       top: 2px;
+       right: 2px;
 }
 
-.commentOptions > li {
-       color: rgb(153, 153, 153);
-       display: inline-block;
-       margin: 0 5px 0 0;
+.commentContent > .commentOptions > li,
+.commentResponseList > li .commentOptions > li {
+       opacity: 0;
+       
+       -webkit-transition: opacity .1s linear;
+       -moz-transition: opacity .1s linear;
+       -ms-transition: opacity .1s linear;
+       -o-transition: opacity .1s linear;
+       transition: opacity .1s linear;
 }
 
-.commentOptions li a {
+.commentContent:hover > .commentOptions > li,
+.commentResponseList > li:hover .commentOptions > li {
+       opacity: 1; 
+}
+
+.commentContent > .commentOptions > li a,
+.commentResponseList > li .commentOptions li a {
        color: rgb(153, 153, 153);
        cursor: pointer;
+       display: inline-block;
+       padding: 5px 10px;
 }
 
 
 
+/* Toggle Comments Links */
+
 .commentResponsePrevious,
 .commentResponseRecent {
        text-align: right;