diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-26 16:45:04 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-26 16:45:04 -0800 |
commit | afe2ba36904de4d308fb0620ebef52d7eefecda0 (patch) | |
tree | 178f0e376f243c7fa048b4e389001234c07bd72e /library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less | |
parent | 01776e767d1976663d2c36fd7e6e4431c16c84c1 (diff) | |
parent | fe7fba4789fac2024c4e8e711e2f8a2492c683bd (diff) | |
download | volse-hubzilla-afe2ba36904de4d308fb0620ebef52d7eefecda0.tar.gz volse-hubzilla-afe2ba36904de4d308fb0620ebef52d7eefecda0.tar.bz2 volse-hubzilla-afe2ba36904de4d308fb0620ebef52d7eefecda0.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less')
-rw-r--r-- | library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less deleted file mode 100644 index 6ee16dca4..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less +++ /dev/null @@ -1,66 +0,0 @@ -// -// Badges -// -------------------------------------------------- - - -// Base class -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: @font-size-small; - font-weight: @badge-font-weight; - color: @badge-color; - line-height: @badge-line-height; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: @badge-bg; - border-radius: @badge-border-radius; - - // Empty badges collapse automatically (not available in IE8) - &:empty { - display: none; - } - - // Quick fix for badges in buttons - .btn & { - position: relative; - top: -1px; - } - - .btn-xs &, - .btn-group-xs > .btn & { - top: 0; - padding: 1px 5px; - } - - // Hover state, but only for links - a& { - &:hover, - &:focus { - color: @badge-link-hover-color; - text-decoration: none; - cursor: pointer; - } - } - - // Account for badges in navs - .list-group-item.active > &, - .nav-pills > .active > a > & { - color: @badge-active-color; - background-color: @badge-active-bg; - } - - .list-group-item > & { - float: right; - } - - .list-group-item > & + & { - margin-right: 5px; - } - - .nav-pills > li > a > & { - margin-left: 3px; - } -} |