1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-11 01:46:13 +00:00
ocsms/css/style.css
2014-09-16 21:59:28 +00:00

84 lines
1.5 KiB
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;
}
#app-content {
padding: 15px;
}
.msg-sent, .msg-recv {
border-radius: 12px;
margin: 4px;
max-width: 50%;
padding: 8px;
box-shadow: 1px 1px 1px #CCC;
-moz-box-shadow: 1px 1px 1px #CCC;
-webkit-box-shadow: 1px 1px 1px #CCC;
-ms-box-shadow: 1px 1px 1px #CCC;
-o-box-shadow: 1px 1px 1px #CCC;
}
.msg-sent {
border: 1px solid #bbb;
background: #a5fb7a;
float: right;
}
.msg-recv {
border: 1px solid #bbb;
background: #e8e8e8;
float: left;
}
.msg-date {
font-style: italic;
font-size: 90%;
float: right;
}
.msg-spacer {
clear: both;
}