Commit c4967a19 by Scott

Fix RTL CSS link

parent 0adb4571
...@@ -50,7 +50,6 @@ class qa_html_theme extends qa_html_theme_base ...@@ -50,7 +50,6 @@ class qa_html_theme extends qa_html_theme_base
// theme subdirectories // theme subdirectories
$this->js_dir = 'js/'; $this->js_dir = 'js/';
$this->css_dir = 'css/';
$this->img_url = 'images/'; $this->img_url = 'images/';
$this->icon_url = $this->img_url . 'icons/'; $this->icon_url = $this->img_url . 'icons/';
...@@ -86,7 +85,7 @@ class qa_html_theme extends qa_html_theme_base ...@@ -86,7 +85,7 @@ class qa_html_theme extends qa_html_theme_base
{ {
// add RTL CSS file // add RTL CSS file
if ($this->isRTL) if ($this->isRTL)
$this->content['css_src'][] = $this->rooturl . $this->css_dir . 'qa-styles-rtl.css?' . QA_VERSION; $this->content['css_src'][] = $this->rooturl . 'qa-styles-rtl.css?' . QA_VERSION;
// add Ubuntu font CSS file // add Ubuntu font CSS file
$this->content['css_src'][] = 'http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic'; $this->content['css_src'][] = 'http://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic,700italic';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment