1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 04:38:27 +01:00

Some CSS cleanup and .gitignore added.

This commit is contained in:
CaMer0n 2012-11-20 15:53:52 -08:00
parent b667892f53
commit a285f816a4
3 changed files with 21 additions and 5 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
e107_config.php
e107_media/*
e107_system/*

View File

@ -8,8 +8,8 @@
*
* Admin Header
*
* $URL$
* $Id$
* $URL:$
* $Id:$
*/
if (!defined('e107_INIT'))
@ -243,7 +243,7 @@ echo "\n<!-- footer_inline_css -->\n";
//
// Unobtrusive JS via CSS, prevent 3rd party code overload
//
require_once(e_FILE."/e_css.php");
// require_once(e_FILE."/e_css.php"); //moved to e107_web/css/e107.css
//
// E: Send JS

View File

@ -193,6 +193,19 @@ div.e-comment-edit-save { margin-top:8px; padding: 5px }
.divider { border-bottom: 1px solid silver; font-size: 18px; margin-bottom: 30px; position: relative; text-align: center; }
.divider span { padding: 0 15px; position: relative; top: 10px; }
/* Used to hide elements when JavaScript is enabled */
/*
.e-hide-if-js { display: none; }
*/
/* Used to show elements when JavaScript is disabled */
/*
.e-show-if-js { display: none; }
*/
/* Used to hide elements when JavaScript is disabled */
/*
.e-hide-if-js { display: block; }
a.e-hide-if-js,
span.e-hide-if-js,
button.e-hide-if-js { display: inline; }
*/