tablefilter
Version:
A Javascript library making HTML tables filterable and a bit more
94 lines (72 loc) • 2.57 kB
text/stylus
/**
* ezEditTable integration default overrides
*/
@import 'config'
$editor-border-color = #AACCF6
// selection
.ezActiveRow
background-color #2852A8
color #fff
.ezSelectedRow
background-color #316AC5
color #fff
.ezActiveCell
background-color #D9E8FB
color #000
font-weight bold
.ezETSelectedCell
background-color #FFDC61
font-weight bold
color rgb(0,0,0)
.ezUnselectable
-moz-user-select -moz-none
-khtml-user-select none
-webkit-user-select none
-o-user-select none
user-select none
// cell editors
.ezInputEditor
width 95%
height auto
font-size inherit
border 1px solid $editor-border-color
.ezTextareaEditor
width 95%
height 35px
font-size inherit
border 1px solid $editor-border-color
.ezSelectEditor
width 100%
font-size inherit
border 1px solid $editor-border-color
.ezModifiedCell
background transparent url(themes/bg_mod_cell.png) 0 0 no-repeat
select[multiple="multiple"].ezSelectEditor
height 35px
/* Command type editor */
.ezCommandEditor
margin 2px
button, input[type="button"]
min-height 22px
margin 1px
padding 3px
border 1px solid #ccc
background #fff
border-radius 4px 4px 4px 4px
-moz-border-radius 4px 4px 4px 4px
&:hover
border 1px solid #999
img
border 0
vertical-align middle
margin 2px
// utils
.ezOpacity
//filter alpha(opacity=60) /* for legacy IE */
opacity 0.6 /* CSS3 standard */
.alignLeft
text-align left
.alignCenter
text-align center
.alignRight
text-align right