Removes files that should belong only to master

This commit is contained in:
Zeno Rocha
2015-09-19 03:20:30 -07:00
parent 702d353447
commit d4f94a3d8f
301 changed files with 27238 additions and 176 deletions

View File

@ -0,0 +1,32 @@
// 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; }