123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /**
- * Modbash Clean Elgg Theme
- *
- * Copyright (c) 2015 ModBash
- *
- * @author Shane Barron <admin@modbash.com>
- * @copyright 2015 SocialApparatus
- * @license GNU General Public License (GPL) version 2
- * @version 1
- * @link http://modbash.com
- */
- ?>
- /* <style> /**/
- /**
- * Elgg Boostrap 3 Theme by SocialApparatus
- *
- * PHP version 5
- *
- * @category Theme
- * @package lorea_hydra
- * @author Shane Barron <admin@socia.us>
- * @copyright 2015 SocialApparatus
- * @license Commercial
- * @version 1.0
- * @link http://socialapparatus.com
- *
- */
- /* trigger hasLayout in IE */
- * {
- zoom: 1;
- }
- /* site menu drop-down z-index fix for IE7 */
- .elgg-page-header {
- z-index: 1;
- }
- /* inline-block fixes */
- .elgg-gallery > li,
- .elgg-button,
- .elgg-icon,
- .elgg-menu-hz > li,
- .elgg-menu-hz > li:after,
- .elgg-menu-hz > li > a,
- .elgg-menu-hz > li > span,
- .elgg-breadcrumbs > li,
- .elgg-menu-footer > li > a,
- .elgg-menu-footer li,
- .elgg-menu-general > li > a,
- .elgg-menu-general li {
- display: inline;
- }
- /* IE7 does not support :after */
- .elgg-breadcrumbs > li > a {
- display: inline;
- padding-right: 4px;
- margin-right: 4px;
- border-right: 1px solid #bababa;
- }
- .elgg-menu-footer li,
- .elgg-menu-user li,
- .elgg-menu-general li {
- padding-left: 4px;
- padding-right: 4px;
- }
- /* longtext menu would not display horizontally without this */
- .elgg-menu-longtext {
- width: 100%;
- }
- .elgg-menu-longtext li {
- width: 100px;
- float: right;
- }
- .elgg-avatar {
- display: inline;
- }
- .elgg-body-walledgarden .elgg-col-1of2 {
- width: 255px;
- }
- .elgg-module-walledgarden > .elgg-head,
- .elgg-module-walledgarden > .elgg-foot {
- width: 530px;
- }
- input, textarea {
- width: 98%;
- }
- .elgg-tag a {
- /* IE7 had a weird wrapping issue for tags */
- word-wrap: normal;
- }
- /* theme specific */
- .elgg-page-navbar {
- z-index: 1;
- }
|