Changeset - ac91a7ba2691
[Not reviewed]
default
0 2 0
Mads Kiilerich - 11 years ago 2014-07-18 17:01:37
madski@unity3d.com
old style: set max width on pull request headers - don't make them as wide as the longest line in the description
2 files changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -4784,12 +4784,16 @@ span.pr-closed-tag {
 
    -webkit-border-radius: 4px;
 
    border-radius: 4px;
 
    border: 1px solid #d9e8f8;
 
    line-height: 1.5em;
 
}
 

	
 
.pr-box {
 
    max-width: 978px;
 
}
 

	
 
/****
 
  PERMS
 
*****/
 
#perms .perms_section_head {
 
    padding: 10px 10px 10px 0px;
 
    font-size: 16px;
kallithea/templates/pullrequests/pullrequest_show.html
Show inline comments
 
@@ -20,13 +20,13 @@ ${self.repo_context_bar('showpullrequest
 
<div class="box">
 
    <!-- box / title -->
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
 

	
 
    <div class="form" style="float: left">
 
    <div class="form pr-box" style="float: left">
 
        <div class="pr-details-title ${'closed' if c.pull_request.is_closed() else ''}">
 
            ${_('Title')}: ${c.pull_request.title}
 
            %if c.pull_request.is_closed():
 
                (${_('Closed')})
 
            %endif
 
        </div>
0 comments (0 inline, 0 general)