summaryrefslogtreecommitdiff
path: root/assets/sass/_suggest_menu.sass
blob: 76580d56e77cab46ebc702851817b16289e381a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@import variables

#suggest-menu
  position: absolute
  display: block
  z-index: 1000
  min-width: 160px
  padding: 5px 0
  background: #fff
  list-style: none
  border: 1px solid #ccc
  border-radius: 3px
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175)

.suggest-menu-item
  white-space: nowrap
  padding: 3px 10px
  color: color('primary')
  font-weight: bold
  cursor: pointer
  &.active
    color: #fff
    background: #428bca
    small
      color: #fff
  small
    color: color('light')
    font-weight: normal