mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-06-10 17:36:21 +00:00
46 lines
980 B
CSS
46 lines
980 B
CSS
/* Navigation: folder like structure */
|
|
#app-mailbox-peers {
|
|
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;
|
|
}
|
|
|
|
#app-mailbox-peers > ul {
|
|
position: relative;
|
|
height: 100%;
|
|
overflow: auto;
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
}
|
|
#app-mailbox-peers li {
|
|
position: relative;
|
|
width: 100%;
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
}
|
|
|
|
#app-mailbox-peers li:hover > a,
|
|
#app-mailbox-peers .selected,
|
|
#app-mailbox-peers .selected a {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
#app-mailbox-peers li > a {
|
|
display: block;
|
|
width: 100%;
|
|
line-height: 44px;
|
|
padding: 0 12px;
|
|
overflow: hidden;
|
|
-moz-box-sizing: border-box; box-sizing: border-box;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
color: #333;
|
|
}
|