1. 24 Jul, 2014 1 commit
  2. 23 Jul, 2014 24 commits
  3. 22 Jul, 2014 5 commits
  4. 21 Jul, 2014 2 commits
  5. 18 Jul, 2014 8 commits
    • Randall Leeds's avatar
      Fix quirks with show/hide on the search bar · 6c2640d4
      Randall Leeds authored
      This is a small consistency improvement which ensures that whenever the
      search is cleared the input becomes invisible. Previously, this only
      worked correctly on the sidebar. Now, it works everywhere, including
      when navigating using the back button to get to the unfiltered stream.
      6c2640d4
    • Randall Leeds's avatar
      Restore pointer cursor on close X · f26656d0
      Randall Leeds authored
      f26656d0
    • Randall Leeds's avatar
      Fix close X on sheet · 92236f9f
      Randall Leeds authored
      92236f9f
    • Randall Leeds's avatar
      Fix layout of share links · 5c4ce881
      Randall Leeds authored
      5c4ce881
    • Randall Leeds's avatar
      Merge pull request #1325 from hypothesis/1311-isolate-static-assets · ded2db61
      Randall Leeds authored
      Isolate static assets in h:static
      ded2db61
    • Randall Leeds's avatar
      Update karma.config.js for asset move · fc7d3562
      Randall Leeds authored
      fc7d3562
    • Randall Leeds's avatar
      Move fonts to h:static/fonts · bb523f2e
      Randall Leeds authored
      Drop the icomoon directory, saving only selection.json. The rest is not
      needed, and is regenerated from the .json by the icomoon app.
      
      Drop the font icon declarations in base.scss and use the css generated
      by icomoon.
      
      Move everything to h:static/fonts.
      
      The icomoon css is not in styles because it has "fonts" as a relative
      url, and we want "../fonts".
      bb523f2e
    • Randall Leeds's avatar
      Isolate static assets in h:static · 1171cd36
      Randall Leeds authored
      There are a number of reasons to isolate the static assets into their
      own directory.
      
      - An edge case in Pyramid: https://github.com/Pylons/pyramid/pull/1377
      - Make serving them with a reverse proxy safer by ensuring that no code
        or configuration lives beneath the static directory
      - Cleanliness
      
      To avoid a big move happening shortly after this, also rename some of
      the asset subdirectories to close #1317.
      
      - js -> scripts
      - css -> stylesheets
      - lib -> scripts/vendor
      - lib/images -> images
      - browser/chrome/js/background.js -> browser/chrome/background.js
      - browser/chrome/public/js/destroy.js -> browser/chrome/public/destroy.js
      
      Finally, the locale directory was totally busted. The annotator.po file
      included is the defualt locale, and it should have been .pot. Since it
      includes only the default strings, there's no reason to serve it. I've
      stripped it and we'll reinstate it correctly later.
      
      Close #1311
      1171cd36