Dan Brown

Fixed firefox list editing bug and made button text size more consistent

Fixes #77
...@@ -13,6 +13,10 @@ body { ...@@ -13,6 +13,10 @@ body {
13 -webkit-font-smoothing: antialiased; 13 -webkit-font-smoothing: antialiased;
14 } 14 }
15 15
16 +button {
17 + font-size: 100%;
18 +}
19 +
16 table { 20 table {
17 min-width: 100px; 21 min-width: 100px;
18 td { 22 td {
......
...@@ -217,20 +217,22 @@ p.secondary, p .secondary, span.secondary, .text-secondary { ...@@ -217,20 +217,22 @@ p.secondary, p .secondary, span.secondary, .text-secondary {
217 span.highlight { 217 span.highlight {
218 //background-color: rgba($primary, 0.2); 218 //background-color: rgba($primary, 0.2);
219 font-weight: bold; 219 font-weight: bold;
220 - //padding: 2px 4px; 220 + padding: 2px 4px;
221 } 221 }
222 222
223 /* 223 /*
224 * Lists 224 * Lists
225 */ 225 */
226 ul { 226 ul {
227 - padding-left: $-m * 1.5; 227 + padding-left: $-m * 1.3;
228 - list-style: disc inside; 228 + list-style: disc;
229 + overflow: hidden;
229 } 230 }
230 231
231 ol { 232 ol {
232 - list-style: decimal inside; 233 + list-style: decimal;
233 - padding-left: $-m * 1.5; 234 + padding-left: $-m * 1.3;
235 + overflow: hidden;
234 } 236 }
235 237
236 /* 238 /*
......