diff options
Diffstat (limited to 'public/less/_base.less')
-rw-r--r-- | public/less/_base.less | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/public/less/_base.less b/public/less/_base.less index 4e498a4e3f..db893fca8e 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -143,6 +143,37 @@ img { } } +.overflow.menu { + .items { + max-height: 300px; + overflow-y: auto; + .item { + position: relative; + cursor: pointer; + display: block; + border: none; + height: auto; + border-top: none; + line-height: 1em; + color: rgba(0,0,0,.8); + padding: .71428571em 1.14285714em!important; + font-size: 1rem; + text-transform: none; + font-weight: 400; + box-shadow: none; + -webkit-touch-callout: none; + &.active { + font-weight: 700; + } + &:hover { + background: rgba(0,0,0,.05); + color: rgba(0,0,0,.8); + z-index: 13; + } + } + } +} + footer { margin-top: @footer-margin+14px!important; height: @footer-margin; |