mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-07-23 09:55:44 +00:00
Add style for mailbox-content
This commit is contained in:
parent
a8ca14fd5d
commit
b559b43983
@ -1,3 +1,15 @@
|
|||||||
#hello {
|
/* Navigation: folder like structure */
|
||||||
color: red;
|
#app-mailbox-content {
|
||||||
}
|
width: 250px;
|
||||||
|
height: 100%;
|
||||||
|
float: left;
|
||||||
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
padding-bottom: 44px;
|
||||||
|
border-left: 1px solid #ddd;
|
||||||
|
border-right: 1px solid #ddd;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
@ -1,12 +1,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<?php foreach ($_['mailboxes'] as $mboxName => $mailbox) { ?>
|
<?php foreach ($_['mailboxes'] as $mboxName => $mailbox) { ?>
|
||||||
<?php if (count($mailbox['phoneNumbers']) > 0) { ?>
|
<?php if (count($mailbox['phoneNumbers']) > 0) { ?>
|
||||||
<li><a href="<?php p($mailbox['url']); ?>"><?php p($mailbox['label']); ?></a>
|
<li><a href="<?php p($mailbox['url']); ?>"><?php p($mailbox['label']); ?></a></li>
|
||||||
<ul>
|
<?php }
|
||||||
<?php foreach ($mailbox['phoneNumbers'] as $number) { ?>
|
|
||||||
<li><?php p($number); ?></li>
|
|
||||||
<?php } ?>
|
|
||||||
</ul></li>
|
|
||||||
<?php }
|
|
||||||
} ?>
|
} ?>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user