mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-06-26 09:16:36 +00:00
16 lines
372 B
CSS
16 lines
372 B
CSS
/* Navigation: folder like structure */
|
|
#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;
|
|
}
|