1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-18 14:26:40 +02:00
TableFilter/static/style/toolbar.styl

59 lines
1.6 KiB
Stylus
Raw Normal View History

2015-08-04 10:38:40 +02:00
/**
* Toolbar default style
*/
@import 'config'
@import 'mixins/empty-content'
2015-08-04 10:38:40 +02:00
// left, middle and right divs container (toolbar)
.inf
2015-08-07 12:11:27 +02:00
clear both
width auto
2015-08-08 16:17:22 +02:00
height $min-height
min-width 400px
2015-08-07 12:11:27 +02:00
background-color $toolbar-bg-color
font-size $toolbar-font-size
margin 0
padding 0
border-top 1px solid $toolbar-border-color
2015-10-04 04:51:43 +02:00
border-bottom 1px solid $toolbar-border-color
2015-08-07 12:11:27 +02:00
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
2015-08-04 10:38:40 +02:00
// link appearence
a
color #333
text-decoration none
font-weight bold
box-sizing initial
2015-08-06 07:27:09 +02:00
&:hover
2015-08-04 10:38:40 +02:00
text-decoration underline
// left div
.ldiv
empty-content()
2015-08-07 12:11:27 +02:00
float left
width 30%
position inherit
text-align left
2015-08-04 10:38:40 +02:00
// middle div
.mdiv
empty-content()
2015-08-07 12:11:27 +02:00
float left
width 38%
position inherit
text-align center
2015-08-07 16:23:32 +02:00
padding 0
2015-08-04 10:38:40 +02:00
// right div
.rdiv
empty-content()
2015-08-07 12:11:27 +02:00
float right
width 30%
position inherit
text-align right