Show More
@@ -1,44 +1,48 b'' | |||
|
1 | 1 | /* CSS for the cell toolbar */ |
|
2 | 2 | @celltoolbar-height: 29px; |
|
3 | 3 | |
|
4 | 4 | .celltoolbar { |
|
5 | 5 | border: thin solid #CFCFCF; |
|
6 | 6 | border-bottom: none; |
|
7 | 7 | background : #EEE; |
|
8 | 8 | border-radius : 3px 3px 0px 0px; |
|
9 | 9 | width:100%; |
|
10 | 10 | -webkit-box-pack: end; |
|
11 | 11 | height: @celltoolbar-height; |
|
12 | 12 | padding-right: 4px; |
|
13 | 13 | .hbox(); |
|
14 | 14 | .reverse(); |
|
15 | 15 | } |
|
16 | 16 | |
|
17 | 17 | .ctb_hideshow { |
|
18 | 18 | display:none; |
|
19 | 19 | vertical-align:bottom; |
|
20 | 20 | } |
|
21 | 21 | |
|
22 | 22 | /* ctb_show is added to the ctb_hideshow div to show the cell toolbar. |
|
23 | 23 | Cell toolbars are only shown when the ctb_global_show class is also set. |
|
24 | 24 | */ |
|
25 | 25 | .ctb_global_show .ctb_show.ctb_hideshow { |
|
26 | 26 | display: block; |
|
27 | 27 | } |
|
28 | 28 | |
|
29 | 29 | .ctb_global_show .ctb_show + .input_area, |
|
30 | 30 | .ctb_global_show .ctb_show + div.text_cell_input |
|
31 | 31 | { |
|
32 | 32 | border-top-right-radius: 0px; |
|
33 | 33 | border-top-left-radius: 0px; |
|
34 | 34 | } |
|
35 | 35 | |
|
36 | 36 | .celltoolbar { |
|
37 | 37 | font-size: 87%; |
|
38 | 38 | padding-top: 3px; |
|
39 | 39 | } |
|
40 | 40 | |
|
41 | .celltoolbar select { | |
|
42 | font-size: 87%; | |
|
43 | } | |
|
44 | ||
|
41 | 45 | .celltoolbar label { |
|
42 | 46 | margin-left: 5px; |
|
43 | 47 | margin-right: 5px; |
|
44 | 48 | } |
General Comments 0
You need to be logged in to leave comments.
Login now