Changeset 136587 in webkit


Ignore:
Timestamp:
Dec 4, 2012, 4:06:02 PM (12 years ago)
Author:
ojan@chromium.org
Message:

Use sticky positioning for the code review toolbar
https://bugs.webkit.org/show_bug.cgi?id=104056

Reviewed by Adam Barth.

This simplifies the code and gives a nicer user-experience.
Also, while here, I fixed up the CSS to not have toolbar items
overlap when you make the window too small.

  • PrettyPatch/PrettyPatch.rb:
  • code-review-test.html:
  • code-review.js:
Location:
trunk/Websites/bugs.webkit.org
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r136578 r136587  
     12012-12-04  Ojan Vafai  <ojan@chromium.org>
     2
     3        Use sticky positioning for the code review toolbar
     4        https://bugs.webkit.org/show_bug.cgi?id=104056
     5
     6        Reviewed by Adam Barth.
     7
     8        This simplifies the code and gives a nicer user-experience.
     9        Also, while here, I fixed up the CSS to not have toolbar items
     10        overlap when you make the window too small.
     11
     12        * PrettyPatch/PrettyPatch.rb:
     13        * code-review-test.html:
     14        * code-review.js:
     15
    1162012-12-04  Ojan Vafai  <ojan@chromium.org>
    217
  • trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb

    r130276 r136587  
    319319  height: 2em;
    320320  max-width: 100%;
     321  min-width: 200px;
    321322}
    322323
     
    335336}
    336337
    337 body {
    338   margin-bottom: 40px;
    339 }
    340 
    341338#toolbar {
    342   display: -webkit-box;
    343   display: -moz-box;
     339  display: -webkit-flex;
     340  display: -moz-flex;
    344341  padding: 3px;
    345342  left: 0;
     
    349346  font-family: sans-serif;
    350347  position: fixed;
    351 }
    352 
    353 #toolbar.anchored {
    354348  bottom: 0;
    355349}
     
    452446
    453447.overallComments {
    454   -webkit-box-flex: 1;
    455   -moz-box-flex: 1;
     448  -webkit-flex: 1;
     449  -moz-flex: 1;
    456450  margin-right: 3px;
    457451}
     
    479473  border: none;
    480474  vertical-align: middle;
    481 }
    482 
    483 .pseudo_resize_event_iframe {
    484   height: 10%;
    485   width: 10%;
    486   position: absolute;
    487   top: -11%;
    488475}
    489476
  • trunk/Websites/bugs.webkit.org/code-review-test.html

    r136578 r136587  
    5151    '<a target="_blank" href="http://trac.webkit.org/log/trunk/foo/bar.cpp/qux.h">header</a>' +
    5252    '<a target="_blank" href="http://trac.webkit.org/browser/trunk/foo/bar.cpp/qux.mm?annotate=blame">annotate</a>' +
    53     '<a target="_blank" href="http://trac.webkit.org/log/trunk/foo/bar.cpp/qux.mm">revision log</a>
    54 ');
     53    '<a target="_blank" href="http://trac.webkit.org/log/trunk/foo/bar.cpp/qux.mm">revision log</a>');
    5554
    5655  var links = tracLinks('foo/bar.h', '');
  • trunk/Websites/bugs.webkit.org/code-review.js

    r136578 r136587  
    10611061  }
    10621062
    1063   function onBodyResize() {
    1064     updateToolbarAnchorState();
    1065   }
    1066 
    1067   function updateToolbarAnchorState() {
    1068     var toolbar = $('#toolbar');
    1069     // Unanchor the toolbar and then see if it's bottom is below the body's bottom.
    1070     toolbar.toggleClass('anchored', false);
    1071     var toolbar_bottom = toolbar.offset().top + toolbar.outerHeight();
    1072     var should_anchor = toolbar_bottom >= document.body.clientHeight;
    1073     toolbar.toggleClass('anchored', should_anchor);
    1074   }
    1075 
    10761063  function diffLinksHtml() {
    10771064    return '<a href="javascript:" class="unify-link">unified</a>' +
     
    10921079            '<button id="post_comments">Publish</button> ' +
    10931080          '</span>' +
     1081          '<div class="clear_float"></div>' +
    10941082        '</div>' +
    10951083        '<div class="autosave-state"></div>' +
     
    10981086    $('.overallComments textarea').bind('click', openOverallComments);
    10991087    $('.overallComments textarea').bind('input', handleOverallCommentsInput);
     1088
     1089    var toolbar = $('#toolbar');
     1090    toolbar.css('position', '-webkit-sticky');
     1091    var supportsSticky = toolbar.css('position') == '-webkit-sticky';
     1092    document.body.style.marginBottom = supportsSticky ? 0 : '40px';
    11001093  }
    11011094
     
    11311124    $('#reviewform').bind('load', handleReviewFormLoad);
    11321125
    1133     // Create a dummy iframe and monitor resizes in it's contentWindow to detect when the top document's body changes size.
    1134     // FIXME: Should we setTimeout throttle these?
    1135     var resize_iframe = $('<iframe class="pseudo_resize_event_iframe"></iframe>');
    1136     $(document.body).append(resize_iframe);
    1137     // Handle the event on a timeout to avoid crashing Firefox.
    1138     $(resize_iframe[0].contentWindow).bind('resize', function() { setTimeout(onBodyResize, 0)});
    1139 
    1140     updateToolbarAnchorState();
    11411126    loadDiffState();
    11421127    generateFileDiffResizeStyleElement();
Note: See TracChangeset for help on using the changeset viewer.