Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpostblue <postblue+git@postblue.info>2015-04-27 11:32:14 +0300
committerpostblue <postblue+git@postblue.info>2015-04-27 11:32:14 +0300
commit4dbaef16bbff992362582264ad67f3de7dcdfc05 (patch)
tree8a19cdbdd92a4487b58eee362aecef624556d00a
parentb758a65201605d28493bba6366bdf4a86d4f623d (diff)
From list-style-position:inside to list-style-position:outside due to Gecko's (Firefox) bad handling
See: https://bugzilla.mozilla.org/show_bug.cgi?id=36854
-rw-r--r--assets/css/style.css2
-rw-r--r--assets/sass/style.scss4
2 files changed, 3 insertions, 3 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 869b2c3..3bc155e 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -45,7 +45,7 @@ a {
text-decoration: none; }
ul, ol {
- list-style-position: inside;
+ list-style-position: outside;
line-height: 1.8;
margin: 0 0 40px;
padding: 0; }
diff --git a/assets/sass/style.scss b/assets/sass/style.scss
index 0664a12..e393601 100644
--- a/assets/sass/style.scss
+++ b/assets/sass/style.scss
@@ -42,7 +42,7 @@ a {
}
ul, ol {
- list-style-position: inside;
+ list-style-position: outside;
line-height: 1.8;
margin: 0 0 40px;
padding: 0;
@@ -689,4 +689,4 @@ table {
}
.footer-copyright { padding: 0 10px; }
-} \ No newline at end of file
+}