1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-17 22:06:41 +02:00
TableFilter/static/style/toolbar.styl
2015-08-09 15:18:09 +10:00

55 lines
1.5 KiB
Stylus

/**
* Toolbar default style
*/
@import 'config'
// left, middle and right divs container (toolbar)
.inf
clear both
width auto
height $min-height
background-color $toolbar-bg-color
font-size $toolbar-font-size
margin 0
padding 0
border-top 1px solid $toolbar-border-color
border-left 1px solid $toolbar-border-color
border-right 1px solid $toolbar-border-color
overflow hidden
border-top-left-radius 3px
border-top-right-radius 3px
// link appearence
a
color #333
text-decoration none
font-weight bold
&:hover
text-decoration underline
// left div
.ldiv
float left
width 30%
// height 100%
position inherit
text-align left
// middle div
.mdiv
float left
width 38%
// height 100%
position inherit
text-align center
padding 0
// right div
.rdiv
float right
width 30%
// height 100%
position inherit
text-align right