Skip to content
Snippets Groups Projects
Commit 17be82a7 authored by Prasad's avatar Prasad
Browse files

Merge branch 'fix_print_css' into 'master'

change the default media type to all so that printing is improved ref #127

setting the default media type means that css files get loaded on printing, specific @media changes might be worth doing to improve the printing layout but CSS files  should be loaded by default unless they are explicitly not for a particular media type.

See merge request !41
parents 66667f9b 1c3451ad
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
class Vtiger_CssScript_Model extends Vtiger_Base_Model {
const DEFAULT_REL = 'stylesheet';
const DEFAULT_MEDIA = 'screen';
const DEFAULT_MEDIA = 'all';
const DEFAULT_TYPE = 'text/css';
const LESS_REL = 'stylesheet/less';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment