UNPKG

2.57 kBtext/stylusView Raw
1/**
2 * ezEditTable integration default overrides
3 */
4
5@import 'config'
6
7$editor-border-color = #AACCF6
8
9// selection
10.ezActiveRow
11 background-color #2852A8 !important
12 color #fff
13
14.ezSelectedRow
15 background-color #316AC5 !important
16 color #fff
17
18.ezActiveCell
19 background-color #D9E8FB !important
20 color #000 !important
21 font-weight bold
22
23.ezETSelectedCell
24 background-color #FFDC61 !important
25 font-weight bold
26 color rgb(0,0,0) !important
27
28.ezUnselectable
29 -moz-user-select -moz-none
30 -khtml-user-select none
31 -webkit-user-select none
32 -o-user-select none
33 user-select none
34
35// cell editors
36.ezInputEditor
37 width 95%
38 height auto
39 font-size inherit
40 border 1px solid $editor-border-color
41
42.ezTextareaEditor
43 width 95%
44 height 35px
45 font-size inherit
46 border 1px solid $editor-border-color
47
48.ezSelectEditor
49 width 100%
50 font-size inherit
51 border 1px solid $editor-border-color
52
53.ezModifiedCell
54 background transparent url(themes/bg_mod_cell.png) 0 0 no-repeat
55
56select[multiple="multiple"].ezSelectEditor
57 height 35px
58
59/* Command type editor */
60.ezCommandEditor
61 margin 2px
62
63 button, input[type="button"]
64 min-height 22px
65 margin 1px
66 padding 3px
67 border 1px solid #ccc
68 background #fff
69 border-radius 4px 4px 4px 4px
70 -moz-border-radius 4px 4px 4px 4px
71
72 &:hover
73 border 1px solid #999
74
75 img
76 border 0
77 vertical-align middle
78 margin 2px
79
80
81// utils
82.ezOpacity
83 //filter alpha(opacity=60) /* for legacy IE */
84 opacity 0.6 /* CSS3 standard */
85
86.alignLeft
87 text-align left
88
89.alignCenter
90 text-align center
91
92.alignRight
93 text-align right