Skip to content

Commit

Permalink
Add a stub clean1.css for #1077
Browse files Browse the repository at this point in the history
For now it just sets box-sizing to a reasonable default.

Looking to @colmjude and other interested parties to put something
nice here.
  • Loading branch information
cdent committed Jun 23, 2013
1 parent 5ed5787 commit eb80e68
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/common.recipe
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,6 @@ tiddler: https://github.com/necolas/normalize.css/raw/master/normalize.css text/

# syndication icon
tiddler: common/syndication.png

# clean1
tiddler: common/clean1.css
6 changes: 6 additions & 0 deletions src/common/clean1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* Because this makes sense. */
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
2 changes: 2 additions & 0 deletions src/common/clean1.css.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
type: text/css
_cache-max-age: 43200
4 changes: 2 additions & 2 deletions test/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_search_no_args():
response, content = http.request('http://0.0.0.0:8080/search.json?q=_limit:999')
assert response['status'] == '200'
allinfo = simplejson.loads(content)
assert len(allinfo) == 170
assert len(allinfo) == 171

response, content = http.request('http://fnd.0.0.0.0:8080/search.json')
assert response['status'] == '200'
Expand All @@ -124,7 +124,7 @@ def test_search_no_args():
response, content = http.request('http://fnd.0.0.0.0:8080/search.json?q=_limit:999')
assert response['status'] == '200'
fndinfo = simplejson.loads(content)
assert len(fndinfo) == 149
assert len(fndinfo) == 150

assert len(allinfo) > len(fndinfo)

Expand Down

0 comments on commit eb80e68

Please sign in to comment.