Fixed firefox list editing bug and made button text size more consistent
Fixes #77
This commit is contained in:
parent
9f11e045a5
commit
e9c213f803
|
@ -13,6 +13,10 @@ body {
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
td {
|
td {
|
||||||
|
|
|
@ -217,20 +217,22 @@ p.secondary, p .secondary, span.secondary, .text-secondary {
|
||||||
span.highlight {
|
span.highlight {
|
||||||
//background-color: rgba($primary, 0.2);
|
//background-color: rgba($primary, 0.2);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
//padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Lists
|
* Lists
|
||||||
*/
|
*/
|
||||||
ul {
|
ul {
|
||||||
padding-left: $-m * 1.5;
|
padding-left: $-m * 1.3;
|
||||||
list-style: disc inside;
|
list-style: disc;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
ol {
|
ol {
|
||||||
list-style: decimal inside;
|
list-style: decimal;
|
||||||
padding-left: $-m * 1.5;
|
padding-left: $-m * 1.3;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue