mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
Removes files that should belong only to master
This commit is contained in:
86
bower_components/primer-css/scss/_utility.scss
vendored
Normal file
86
bower_components/primer-css/scss/_utility.scss
vendored
Normal file
@ -0,0 +1,86 @@
|
||||
// Clear floats
|
||||
.clearfix {
|
||||
@include clearfix;
|
||||
}
|
||||
|
||||
// Floats
|
||||
.right { float: right; }
|
||||
|
||||
.left { float: left; }
|
||||
|
||||
|
||||
// Layout
|
||||
|
||||
// Centers content horizontally. Can be used inside or outside the grid.
|
||||
.centered {
|
||||
display: block;
|
||||
float: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
|
||||
// Text alignment
|
||||
.text-right { text-align: right; }
|
||||
|
||||
.text-left { text-align: left; }
|
||||
|
||||
.text-center { text-align: center; }
|
||||
|
||||
|
||||
// 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: $brand-gray;
|
||||
|
||||
&: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;
|
||||
}
|
Reference in New Issue
Block a user