mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
97 lines
1.7 KiB
SCSS
97 lines
1.7 KiB
SCSS
// ------------------------------------------------------------
|
|
// Labels
|
|
//
|
|
// Labels are little bubbles of info.
|
|
// Imagine an unread email counter.
|
|
//
|
|
// * Labels
|
|
// * Colours
|
|
// ------------------------------------------------------------
|
|
|
|
|
|
//
|
|
// Labels
|
|
// --------------------------------------------------
|
|
|
|
.label {
|
|
display: inline;
|
|
padding: .2em .6em .3em;
|
|
font-size: 75%;
|
|
font-weight: 300;
|
|
line-height: 1;
|
|
color: #FFF;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: baseline;
|
|
border-radius: .25em;
|
|
|
|
// Empty labels collapse automatically (not available in IE8)
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
// Quick fix for labels in buttons
|
|
.btn & {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
.label {
|
|
display: inline-block;
|
|
padding: 0.2em 0.5em 0.25em;
|
|
top: -0.18em;
|
|
position: relative;
|
|
line-height: 70%;
|
|
font-size: 70%;
|
|
}
|
|
}
|
|
|
|
// Add hover effects, but only for links
|
|
a.label {
|
|
&:hover,
|
|
&:focus {
|
|
color: #FFF;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Colours
|
|
// --------------------------------------------------
|
|
|
|
@mixin label-variant($text-color, $bg-color) {
|
|
background-color: $bg-color;
|
|
color: $text-color;
|
|
|
|
&[href] {
|
|
color: $text-color;
|
|
&:hover,
|
|
&:focus {
|
|
background-color: darken($bg-color, 10%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.label-default {
|
|
@include label-variant(#fff, #A1ADB3);
|
|
}
|
|
|
|
.label-alt {
|
|
@include label-variant(#fff, #666);
|
|
}
|
|
|
|
.label-blue {
|
|
@include label-variant(#fff, $blue);
|
|
}
|
|
|
|
.label-green {
|
|
@include label-variant(#fff, $green);
|
|
}
|
|
|
|
.label-red {
|
|
@include label-variant(#fff, $red);
|
|
} |