mirror of
https://github.com/primer/css.git
synced 2024-11-10 16:07:25 +03:00
74 lines
1.1 KiB
SCSS
74 lines
1.1 KiB
SCSS
// Clear floats
|
|
.clearfix {
|
|
@include clearfix;
|
|
}
|
|
|
|
// Floats
|
|
.right { float: right; }
|
|
|
|
.left { float: left; }
|
|
|
|
|
|
// Text alignment
|
|
.text-right { text-align: right; }
|
|
|
|
.text-left { text-align: left; }
|
|
|
|
|
|
// Text states
|
|
.danger { color: #c00; }
|
|
|
|
.mute { color: #000; }
|
|
|
|
.text-diff-added { color: darken($brand-green, 10%); }
|
|
|
|
.text-diff-deleted { color: $brand-red; }
|
|
|
|
.text-open,
|
|
.text-success { color: $status-open; }
|
|
|
|
.text-closed { color: $status-closed; }
|
|
|
|
.text-reverted { color: $status-reverted; }
|
|
|
|
.text-merged { color: $status-merged; }
|
|
|
|
.text-renamed { color: $status-renamed; }
|
|
|
|
.text-pending { color: $status-pending; }
|
|
|
|
.text-error,
|
|
.text-failure { color: $brand-red; }
|
|
|
|
|
|
// Muted link
|
|
//
|
|
// Have a link you need to be gray to start, and blue on hover? Use this.
|
|
.muted-link {
|
|
color: #777;
|
|
|
|
&:hover {
|
|
color: $brand-blue;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
// Misc
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.warning {
|
|
padding: 0.5em;
|
|
margin-bottom: 0.8em;
|
|
font-weight: bold;
|
|
background-color: #fffccc;
|
|
}
|
|
|
|
.error_box {
|
|
padding: 1em;
|
|
font-weight: bold;
|
|
background-color: #ffebe8;
|
|
border: 1px solid #dd3c10;
|
|
}
|