123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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>// //
- .messages-container {
- min-height: 200px;
- }
- .message.unread a {
- color: #D40005;
- }
- .messages-buttonbank {
- text-align: right;
- }
- .messages-buttonbank input {
- margin-left: 10px;
- }
- /*** message metadata ***/
- .messages-owner {
- float: left;
- width: 20%;
- margin-right: 2%;
- }
- .messages-subject {
- float: left;
- width: 55%;
- margin-right: 2%;
- }
- .messages-timestamp {
- float: left;
- width: 14%;
- margin-right: 2%;
- }
- .messages-delete {
- float: left;
- width: 5%;
- }
- /*** topbar icon ***/
- .messages-new {
- color: #FFF;
- background-color: #FF0000;
- border-radius: 10px;
- box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);
- position: absolute;
- text-align: center;
- line-height: 14px;
- top: 4px;
- left: 26px;
- min-width: 16px;
- height: 16px;
- font-size: 10px;
- font-weight: bold;
- }
|