#895898 by Jeff Burnz: Fixed Comment user picture can overflow its container in Bartik
parent
14779b97e1
commit
c9d78b60d4
|
@ -8,6 +8,18 @@ ul.action-links li a,
|
|||
#user-login li.openid-link a {
|
||||
zoom: 1;
|
||||
}
|
||||
.comment .attribution {
|
||||
float: right;
|
||||
}
|
||||
.comment-text {
|
||||
float: right;
|
||||
margin-left: 0;
|
||||
margin-right: 25px;
|
||||
}
|
||||
.comment .comment-arrow {
|
||||
position: absolute;
|
||||
right: 25px;
|
||||
}
|
||||
.region-header .block,
|
||||
.region-header #block-user-login .form-item {
|
||||
float: none;
|
||||
|
|
|
@ -13,6 +13,17 @@ fieldset legend {
|
|||
#footer-wrapper #footer .block {
|
||||
height: 100%;
|
||||
}
|
||||
.comment .attribution {
|
||||
display: inline;
|
||||
float: left; /* LTR */
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
}
|
||||
.comment-text {
|
||||
display: inline;
|
||||
float: left; /* LTR */
|
||||
margin-left: 25px; /* LTR */
|
||||
}
|
||||
#search-block-form input.form-submit,
|
||||
#search-form input.form-submit {
|
||||
text-transform: capitalize; /* Trigger text indent. */
|
||||
|
|
|
@ -107,14 +107,12 @@ ul.tips {
|
|||
}
|
||||
.comment .attribution {
|
||||
float: right;
|
||||
padding: 0 0 0 30px;
|
||||
}
|
||||
.comment .comment-arrow {
|
||||
background: url(../images/comment-arrow-rtl.png);
|
||||
margin-right: -45px;
|
||||
}
|
||||
.comment .comment-text {
|
||||
margin-right: 140px;
|
||||
margin-left: 0;
|
||||
margin-right: -45px;
|
||||
}
|
||||
.comment .indented {
|
||||
margin-right: 40px;
|
||||
|
|
|
@ -591,12 +591,14 @@ ul.links {
|
|||
}
|
||||
.comment {
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
display: table;
|
||||
vertical-align: top;
|
||||
}
|
||||
.comment .attribution {
|
||||
padding-top: 20px;
|
||||
float: left; /* LTR */
|
||||
width: 110px;
|
||||
display: table-cell;
|
||||
padding: 0 30px 0 0; /* LTR */
|
||||
vertical-align: top;
|
||||
overflow: hidden;
|
||||
}
|
||||
.comment .attribution img {
|
||||
margin: 0;
|
||||
|
@ -628,9 +630,11 @@ ul.links {
|
|||
position: absolute;
|
||||
}
|
||||
.comment .comment-text {
|
||||
margin-left: 140px; /* LTR */
|
||||
padding: 10px 25px;
|
||||
border: 1px solid #d3d7d9;
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
position: relative;
|
||||
}
|
||||
.comment .indented {
|
||||
margin-left: 40px; /* LTR */
|
||||
|
|
Loading…
Reference in New Issue