UNPKG

1.44 kBtext/stylusView Raw
1/**
2 * Help box default style
3 */
4
5@import 'config'
6@import 'mixins/arrow'
7@import 'mixins/box-shadow'
8
9// help button
10.helpBtn
11 display inline-block
12 height 27px
13 margin 0
14 padding 8px 15px 0 15px
15 vertical-align top
16
17 &:hover
18 background-color $toolbar-hover-color
19
20// help container
21div.helpCont
22 arrow(top, 10px white, 2px #ccc)
23 box-shadow(3px 3px 2px #888)
24 position absolute
25 display none
26 width 300px
27 padding 10px
28 margin 45px 0 0 -150px
29 border 1px solid #CCC
30 line-height 20px
31 font-size inherit
32 color #333
33 background #fff
34 text-align left
35 z-index 1000
36
37 a
38 color #cc0000
39 text-decoration underline
40 font-weight normal
41
42 a.close
43 color #333 !important
44 text-decoration none !important
45 font-weight bold
46
47 &:hover
48 text-decoration none
49
50 hr
51 border 1px solid #ccc
52
53div.helpFooter
54 margin 10px 0 0 0
55 h4
56 margin 2px 2px 2px 2px
57 color #333