1
1
mirror of https://github.com/primer/css.git synced 2024-09-22 06:07:31 +03:00
css/scss/_states.scss
Pascal Borreli 7f0ecf12c7 Fixed typos
2015-03-23 22:46:58 +00:00

33 lines
710 B
SCSS

// A rounded corner box containing a label "open" or "closed"
// Without a state it is grey.
//
// open - green background
// reopened - green background
// closed - red background
// merged - purple background
// renamed - orange background
//
// No styleguide reference
.state {
display: inline-block;
padding: 4px 8px;
font-weight: bold;
line-height: 20px;
color: #fff;
text-align: center;
border-radius: 3px;
background-color: #999;
}
.state-open,
.state-proposed,
.state-reopened {
background-color: $status-open;
}
.state-merged { background-color: $status-merged; }
.state-closed { background-color: $status-closed; }
.state-renamed { background-color: $status-renamed; }