mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-27 02:23:28 +08:00
14 lines
479 B
Text
14 lines
479 B
Text
@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 {
|
|
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;
|
|
}
|