enable webkit hardware acceleration for css shadows
This commit is contained in:
parent
51c7e879de
commit
beb5380ada
1 changed files with 44 additions and 4 deletions
|
|
@ -195,12 +195,19 @@ body {
|
|||
padding: 20px;
|
||||
text-shadow: 0 -2px 0 black; } }
|
||||
|
||||
.time, .via {
|
||||
.info {
|
||||
color: #ccc;
|
||||
font: {
|
||||
size: smaller;
|
||||
weight: bold; };
|
||||
};
|
||||
}
|
||||
|
||||
.via {
|
||||
font: {
|
||||
weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.via {
|
||||
a {
|
||||
color: #ccc; } }
|
||||
|
|
@ -258,6 +265,8 @@ header {
|
|||
z-index: 10;
|
||||
top: 0;
|
||||
|
||||
-webkit-transform: translate3d(0,0,0);
|
||||
|
||||
border: {
|
||||
bottom: 1px solid #222;
|
||||
}
|
||||
|
|
@ -355,7 +364,18 @@ footer {
|
|||
.floater {
|
||||
float: right; }
|
||||
|
||||
.stream_element {
|
||||
-webkit-transform: translate3d(0,0,0);
|
||||
}
|
||||
|
||||
.stream_element .photo_attachments {
|
||||
background: {
|
||||
color: #999;
|
||||
}
|
||||
border: {
|
||||
bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
img.big-stream-photo {
|
||||
@include border-radius(3px, 3px, 0, 0);
|
||||
width: 100%;
|
||||
|
|
@ -422,6 +442,9 @@ footer {
|
|||
#message_container {
|
||||
background-color: #fff;
|
||||
padding: 5px;
|
||||
border: {
|
||||
bottom: 1px solid #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
|
@ -448,12 +471,10 @@ form {
|
|||
}
|
||||
|
||||
.btn,
|
||||
select,
|
||||
input[type=submit] {
|
||||
@include border-radius(3px);
|
||||
background-color: #ddd;
|
||||
color: #666;
|
||||
text-size: larger;
|
||||
font-weight: bold;
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
|
|
@ -466,6 +487,11 @@ input[type=submit] {
|
|||
}
|
||||
}
|
||||
|
||||
select {
|
||||
font-size: larger;
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
.new_comment {
|
||||
padding: 10px 0;
|
||||
padding-top: 20px;
|
||||
|
|
@ -501,3 +527,17 @@ input[type=submit] {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.additional_photo_count {
|
||||
@include opacity(0.5);
|
||||
|
||||
position: absolute;
|
||||
padding: 3px 8px;
|
||||
font-weight: bold;
|
||||
background: #fff;
|
||||
border: 1px solid #222;
|
||||
border-bottom: 2px solid #111;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue