Browse Source

Style finesse for “Attachments:” list in issues

Make `#attached-list` attachment labels wrap, make spacing more
consistent, add hover stats to `.attachment-remove` icon, adjust
padding of labels to compensate for `.attachment-remove` icon
pull/332/head
Andrew Patton 10 years ago
parent
commit
c084a5ba73
  1. 21
      public/css/gogs.css

21
public/css/gogs.css

@ -1826,21 +1826,24 @@ body {
} }
#attached { #attached {
height: 18px; margin: 10px 0 15px;
margin: 10px 10px 15px 10px;
} }
#attached-list .label { #attached-list .label {
display: inline-block;
vertical-align: top;
margin-right: 10px; margin-right: 10px;
padding-right: 0;
} }
#issue-create-form #attached { #attached-list .label .attachment-remove {
margin-bottom: 0; cursor: pointer;
} }
#submit-error { #attached-list .label .attachment-remove:hover {
display: none; background: #d8d8d8;
padding: 10px 15px 15px 15px; }
font-weight: bold;
text-align: center; #issue-create-form #attached {
margin-bottom: 0;
} }
Loading…
Cancel
Save