You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/*** Folders list widget ***/
|
|
|
|
|
|
|
|
|
|
|
|
.folderlist {
|
|
|
|
li {
|
|
|
|
&.mailbox {
|
|
|
|
.unreadcount {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
min-width: 2em;
|
|
|
|
line-height: 1.4em;
|
|
|
|
margin: 0.5em 0.2em;
|
|
|
|
padding: 0 0.3em;
|
|
|
|
background: /* todo */ #1e70bf;
|
|
|
|
border-radius: 0.4em;
|
|
|
|
color: @badge-font-color;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected > a .unreadcount {
|
|
|
|
background: /* todo */;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.recent > a .unreadcount {
|
|
|
|
background: /* todo */;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a:before {
|
|
|
|
&:extend(.font-icon-class);
|
|
|
|
content: @fa-var-folder-o;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.inbox a:before {
|
|
|
|
content: @fa-var-inbox;
|
|
|
|
}
|
|
|
|
&.trash a:before {
|
|
|
|
content: @fa-var-trash;
|
|
|
|
}
|
|
|
|
&.trash.empty a:before {
|
|
|
|
content: @fa-var-trash-o;
|
|
|
|
}
|
|
|
|
&.drafts a:before {
|
|
|
|
content: @fa-var-edit;
|
|
|
|
}
|
|
|
|
&.sent a:before {
|
|
|
|
content: @fa-var-paper-plane;
|
|
|
|
}
|
|
|
|
&.junk a:before {
|
|
|
|
content: @fa-var-recycle;
|
|
|
|
}
|
|
|
|
&.archive a:before {
|
|
|
|
content: @fa-var-archive;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|