12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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
- */
- ?>
- /**********************************
- Search plugin
- ***********************************/
- .elgg-search-header {
- display: block;
- position: relative;
- margin-bottom: 15px;
- }
- .elgg-search input[type=text] {
- width: 100%;
- }
- .elgg-search input[type=submit] {
- display: none;
- }
- .search-list li {
- padding: 5px 0 0;
- }
- .search-heading-category {
- margin-top: 20px;
- color: #666;
- }
- .search-highlight {
- background-color: #BBDAF7;
- }
- .search-highlight-color1 {
- background-color: #BBDAF7;
- }
- .search-highlight-color2 {
- background-color: #A0FFFF;
- }
- .search-highlight-color3 {
- background-color: #FDFFC3;
- }
- .search-highlight-color4 {
- background-color: #CCC;
- }
- .search-highlight-color5 {
- background-color: #08A7E7;
- }
|