Mailspring/static/mixins/common-ui-elements.less

24 lines
543 B
Plaintext
Raw Normal View History

@import "ui-variables";
2015-03-04 04:00:04 +08:00
// A Mixin holding common UI elements.
// A box to hold counts of things (like number of items in a tag, or
// number of messages in a thread)
.item-count-box {
float: right;
min-width: 15px;
height: 15px;
text-align: center;
2015-03-04 04:00:04 +08:00
display: inline;
font-size: @font-size-tiny;
padding: 0 0.286em 0 0.286em;
margin-top: floor(@line-height-large*1.1 - @font-size)/2 + 1;
line-height: @font-size;
2015-03-04 04:00:04 +08:00
border-radius: @border-radius-small;
}
body.platform-win32 {
.item-count-box {
border-radius: 0;
}
}