diff options
Diffstat (limited to 'cyborg/bootswatch.less')
-rwxr-xr-x | cyborg/bootswatch.less | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less index ac76c7bb..df90c9e7 100755 --- a/cyborg/bootswatch.less +++ b/cyborg/bootswatch.less @@ -32,6 +32,14 @@ label, input, button, select, textarea { font-family: 'Droid Sans', sans-serif; } +blockquote { + border-left: 5px solid @blue; + + &.pull-right { + border-right: 5px solid @blue; + } +} + // SCAFFOLDING // ----------------------------------------------------- @@ -40,11 +48,6 @@ body { #gradient > .vertical (#060606, #252A30); } -hr { - border-top: 1px solid #222; - border-bottom: 0; -} - .page-header { border-bottom: 2px solid @blue } @@ -209,6 +212,12 @@ div.subnav .nav .dropdown.open { background-color: rgba(40, 40, 40, 0.5); } +.table-striped tbody tr:nth-child(even) td, +.table-striped tbody tr:nth-child(even) th { + background-color: transparent; +} + + code, pre, pre.prettyprint { background-color: @grayLighter; } @@ -416,6 +425,10 @@ legend, label { .label { background-color: darken(@gray, 20%); } .label-important { background-color: @red; } +.label-important:hover { background-color: darken(@red, 10%); } .label-warning { background-color: darken(@orange, 10%); } +.label-warning:hover { background-color: darken(@orange, 20%); } .label-success { background-color: darken(@green, 3%); } +.label-success:hover { background-color: darken(@green, 13%); } .label-info { background-color: darken(@blueDark, 10%); } +.label-info:hover { background-color: darken(@blueDark, 20%); } |