Commit bf93a21b by Scott

Split SnowFlat RTL styles into separate stylesheet

parent d402cf53
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -4677,5 +4677,3 @@ input[type="submit"], button {
float: right;
}
}
/*# sourceMappingURL=snow-core.css.map */
......@@ -85,9 +85,10 @@ class qa_html_theme extends qa_html_theme_base
public function head_css()
{
// add Snow CSS file
$cssFile = $this->isRTL ? 'snow-core-rtl.css' : 'snow-core.css';
$cssUrl = $this->rooturl . $this->css_dir . $cssFile . '?' . QA_VERSION;
$this->content['css_src'][] = $cssUrl;
$this->content['css_src'][] = $this->rooturl . $this->css_dir . 'snow-core.css?' . QA_VERSION;
if ($this->isRTL)
$this->content['css_src'][] = $this->rooturl . $this->css_dir . 'snow-rtl.css?' . QA_VERSION;
// add Ubuntu font CSS file
$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