Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | |
michael@0 | 2 | |
michael@0 | 3 | BookSet { |
michael@0 | 4 | display: block; |
michael@0 | 5 | } |
michael@0 | 6 | |
michael@0 | 7 | Book { |
michael@0 | 8 | float: left; |
michael@0 | 9 | display: block; |
michael@0 | 10 | width: 300px; |
michael@0 | 11 | background-color: #f1f1f1; |
michael@0 | 12 | border: 1px solid #cccccc; |
michael@0 | 13 | margin-right: 8px; |
michael@0 | 14 | margin-top: 8px; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | BookCover { |
michael@0 | 18 | display: inline; |
michael@0 | 19 | float: left; |
michael@0 | 20 | margin-right: 10px; |
michael@0 | 21 | padding: 5px; |
michael@0 | 22 | width: 100px; |
michael@0 | 23 | height: 140px; |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | Title { |
michael@0 | 27 | display: block; |
michael@0 | 28 | font-weight: bold; |
michael@0 | 29 | color: blue; |
michael@0 | 30 | text-decoration: underline; |
michael@0 | 31 | cursor: pointer; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | Author { |
michael@0 | 35 | display: block; |
michael@0 | 36 | font-style: italic; |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | Synopsis { |
michael@0 | 40 | display: block; |
michael@0 | 41 | overflow: scroll; |
michael@0 | 42 | height: 100px; |
michael@0 | 43 | width: 155px; |
michael@0 | 44 | padding: 3px; |
michael@0 | 45 | background-color: #ddddff; |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | |
michael@0 | 49 | ListPrice { |
michael@0 | 50 | display: block; |
michael@0 | 51 | text-align: right; |
michael@0 | 52 | padding-right: 15px; |
michael@0 | 53 | text-decoration: line-through; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | |
michael@0 | 57 | Price { |
michael@0 | 58 | display: block; |
michael@0 | 59 | color: rgb(20,100,0); |
michael@0 | 60 | text-align:right; |
michael@0 | 61 | padding-right: 15px; |
michael@0 | 62 | font-weight: bold; |
michael@0 | 63 | } |
michael@0 | 64 | |
michael@0 | 65 | |
michael@0 | 66 | Price:before { |
michael@0 | 67 | content: "Our Price: "; |
michael@0 | 68 | } |
michael@0 | 69 | |
michael@0 | 70 | ISBN { |
michael@0 | 71 | display: block; |
michael@0 | 72 | font-family: monospace; |
michael@0 | 73 | font-size: 8pt; |
michael@0 | 74 | } |
michael@0 | 75 | |
michael@0 | 76 | |
michael@0 | 77 | |
michael@0 | 78 |