Changeset 473:91d7c787bd7b
- Timestamp:
- 07/01/11 20:39:13 (14 years ago)
- Branch:
- default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/auth.php
r454 r473 272 272 ?> 273 273 274 <style type="text/css"> 275 @import url(style/default.css); 276 </style> 274 <link rel="stylesheet" href="style/default.css" type="text/css" media="screen" /> 275 277 276 <?php 278 277 # --BEHAVIOR-- loginPageHTMLHead -
admin/install/index.php
r467 r473 264 264 <title><?php echo __('Dotclear Install'); ?></title> 265 265 266 <style type="text/css"> 267 @import url(../style/install.css); 268 </style> 266 <link rel="stylesheet" href="../style/install.css" type="text/css" media="screen" /> 267 269 268 <script type="text/javascript" src="../js/jquery/jquery.js"></script> 270 269 <script type="text/javascript"> -
admin/install/wizard.php
r363 r473 139 139 <meta name="GOOGLEBOT" content="NOSNIPPET" /> 140 140 <title><?php echo __('Dotclear installation wizard'); ?></title> 141 142 <style type="text/css"> 143 @import url(../style/install.css); 144 </style> 141 <link rel="stylesheet" href="../style/install.css" type="text/css" media="screen" /> 145 142 </head> 146 143 -
inc/admin/lib.dc.page.php
r454 r473 98 98 99 99 self::jsLoadIE7(). 100 ' <style type="text/css">'."\n". 101 ' @import "style/default.css";'."\n". 102 " </style>\n"; 100 ' <link rel="stylesheet" href="style/default.css" type="text/css" media="screen" />'."\n". ; 103 101 if (l10n::getTextDirection($GLOBALS['_lang']) == 'rtl') { 104 echo ' <style type="text/css">'."\n".' @import "style/default-rtl.css";'."\n"." </style>\n"; 102 echo 103 ' <link rel="stylesheet" href="style/default-rtl.css" type="text/css" media="screen" />'."\n". ; 105 104 } 106 105 … … 213 212 214 213 self::jsLoadIE7(). 215 ' <style type="text/css">'."\n". 216 ' @import "style/default.css";'."\n". 217 " </style>\n"; 214 ' <link rel="stylesheet" href="style/default.css" type="text/css" media="screen" />'."\n". ; 218 215 if (l10n::getTextDirection($GLOBALS['_lang']) == 'rtl') { 219 echo ' <style type="text/css">'."\n".' @import "style/default-rtl.css";'."\n"." </style>\n"; 216 echo 217 ' <link rel="stylesheet" href="style/default-rtl.css" type="text/css" media="screen" />'."\n". ; 220 218 } 221 219
Note: See TracChangeset
for help on using the changeset viewer.