raster pushed a commit to branch master. http://git.enlightenment.org/website/www.git/commit/?id=4eeb75bd0bcd29da7ad0bfc2449337c7df4d1ce8
commit 4eeb75bd0bcd29da7ad0bfc2449337c7df4d1ce8 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Apr 8 16:30:19 2015 +0900 e ww template - fix text editor to have monospace font --- public_html/lib/tpl/e/css/modifications.css | 4 ++++ public_html/lib/tpl/e/main.php | 1 + 2 files changed, 5 insertions(+) diff --git a/public_html/lib/tpl/e/css/modifications.css b/public_html/lib/tpl/e/css/modifications.css index a558582..6fbd7c5 100644 --- a/public_html/lib/tpl/e/css/modifications.css +++ b/public_html/lib/tpl/e/css/modifications.css @@ -329,6 +329,10 @@ textarea, input { padding: 6px; } +textarea { + font-family: font-family: "Source Code Pro", Courier, mono; +} + #config__manager tr .input, #config__manager tr input, #config__manager tr textarea, diff --git a/public_html/lib/tpl/e/main.php b/public_html/lib/tpl/e/main.php index 797e627..0ea58da 100644 --- a/public_html/lib/tpl/e/main.php +++ b/public_html/lib/tpl/e/main.php @@ -33,6 +33,7 @@ $showTOC = ($ACT == "show") && tpl_toc(true); <script src="<?php echo tpl_getMediaFile(array("js/bootstrap.min.js")); ?>"></script> <script src="<?php echo tpl_getMediaFile(array("js/modifications.js")); ?>"></script> <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> + <link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'> </head> <body> --
