Mailspring/static/mixins/common-ui-elements.less
Evan Morikawa b76fd0e578 feat(windows): improve UI for Windows
Remove rounded corners and gradients
2015-10-21 20:32:33 -07:00

23 lines
606 B
Plaintext

@import "ui-variables";
// 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: 26px;
text-align: center;
display: inline;
font-size: @font-size-smaller;
padding: @padding-xs-vertical @padding-xs-horizontal @padding-xs-vertical @padding-xs-horizontal;
margin-top: floor(@line-height-large - @line-height-small)/2;
line-height: @line-height-small;
border-radius: @border-radius-small;
}
body.platform-win32 {
.item-count-box {
border-radius: 0;
}
}