Sha256: dd3e2c2ca98ef15fd675b7ec5b0615d29baff704d4a6239e6706e24797df24c9
Contents?: true
Size: 1.1 KB
Versions: 42
Compression:
Stored size: 1.1 KB
Contents
// 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; }
Version data entries
42 entries across 42 versions & 1 rubygems