mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-25 19:47:12 +02:00
.github
bin
module
vendor
CPR
CivetWeb
ConcurrentQueue
DPP
Fmt
doc
_static
_templates
basic-bootstrap
bootstrap
mixins
alerts.less
badges.less
bootstrap.less
breadcrumbs.less
button-groups.less
buttons.less
carousel.less
close.less
code.less
component-animations.less
dropdowns.less
forms.less
glyphicons.less
grid.less
input-groups.less
jumbotron.less
labels.less
list-group.less
media.less
mixins.less
modals.less
navbar.less
navs.less
normalize.less
pager.less
pagination.less
panels.less
popovers.less
print.less
progress-bars.less
responsive-embed.less
responsive-utilities.less
scaffolding.less
tables.less
theme.less
thumbnails.less
tooltip.less
type.less
utilities.less
variables.less
wells.less
CMakeLists.txt
api.rst
build.py
conf.py
contents.rst
fmt.less
index.rst
python-license.txt
syntax.rst
usage.rst
include
src
support
test
CMakeLists.txt
CONTRIBUTING.md
ChangeLog.rst
LICENSE.rst
README.rst
MDBC
MaxmindDB
POCO
PUGIXML
SAJSON
SimpleIni
Squirrel
TinyDir
UTF8
ZMQ
xxHash
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
//
|
|
// Labels
|
|
// --------------------------------------------------
|
|
|
|
.label {
|
|
display: inline;
|
|
padding: .2em .6em .3em;
|
|
font-size: 75%;
|
|
font-weight: bold;
|
|
line-height: 1;
|
|
color: @label-color;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: baseline;
|
|
border-radius: .25em;
|
|
|
|
// Add hover effects, but only for links
|
|
a& {
|
|
&:hover,
|
|
&:focus {
|
|
color: @label-link-hover-color;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
// Empty labels collapse automatically (not available in IE8)
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
// Quick fix for labels in buttons
|
|
.btn & {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
}
|
|
|
|
// Colors
|
|
// Contextual variations (linked labels get darker on :hover)
|
|
|
|
.label-default {
|
|
.label-variant(@label-default-bg);
|
|
}
|
|
|
|
.label-primary {
|
|
.label-variant(@label-primary-bg);
|
|
}
|
|
|
|
.label-success {
|
|
.label-variant(@label-success-bg);
|
|
}
|
|
|
|
.label-info {
|
|
.label-variant(@label-info-bg);
|
|
}
|
|
|
|
.label-warning {
|
|
.label-variant(@label-warning-bg);
|
|
}
|
|
|
|
.label-danger {
|
|
.label-variant(@label-danger-bg);
|
|
}
|