##// END OF EJS Templates
Merge pull request #7514 from minrk/border-markdown...
Min RK -
r20100:ffad807a merge
parent child Browse files
Show More
@@ -31,12 +31,17 b''
31 31 }
32 32
33 33 .ctb_global_show .ctb_show + .input_area,
34 .ctb_global_show .ctb_show + div.text_cell_input
35 {
34 .ctb_global_show .ctb_show + div.text_cell_input,
35 .ctb_global_show .ctb_show ~ div.text_cell_render {
36 36 border-top-right-radius: 0px;
37 37 border-top-left-radius: 0px;
38 38 }
39 39
40 .ctb_global_show .ctb_show ~ div.text_cell_render {
41 // add border to rendered markdown cells
42 border: @border_width solid @light_border_color;
43 }
44
40 45 .celltoolbar {
41 46 font-size: 87%;
42 47 padding-top: 3px;
@@ -10218,10 +10218,14 b' p {'
10218 10218 display: block;
10219 10219 }
10220 10220 .ctb_global_show .ctb_show + .input_area,
10221 .ctb_global_show .ctb_show + div.text_cell_input {
10221 .ctb_global_show .ctb_show + div.text_cell_input,
10222 .ctb_global_show .ctb_show ~ div.text_cell_render {
10222 10223 border-top-right-radius: 0px;
10223 10224 border-top-left-radius: 0px;
10224 10225 }
10226 .ctb_global_show .ctb_show ~ div.text_cell_render {
10227 border: 1px solid #cfcfcf;
10228 }
10225 10229 .celltoolbar {
10226 10230 font-size: 87%;
10227 10231 padding-top: 3px;
General Comments 0
You need to be logged in to leave comments. Login now