editor_stylesheet

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "editor_stylesheet".
... in editor_stylesheet.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<override_macro name="editor_stylesheet">
    <style type="text/css">
        div.editor-dropdown {
            margin-top:1.8em;
            position:absolute;
            display:none;
            z-index:1000;
            border-width:1px;
            border-style:solid;
        }
        .nabble div.toolbar {
            min-width:30em;
            max-width:62em;
            width:100%;
            padding:.1em;
        }
        table.toolbar {
            border-spacing:0;
        }
        table.toolbar td {
            padding:0;
        }
        button {
            white-space:nowrap;
        }
        div > h2 {
            margin:0;
            padding:0;
        }
    </style>
</override_macro>
Overrides default macro
... in text_editor.naml
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<macro name="editor_stylesheet">
    <style type="text/css">
        div.editor-dropdown {
            margin-top:1.8em;
            position:absolute;
            display:none;
            z-index:1000;
            border-width:1px;
            border-style:solid;
        }
        .nabble div.toolbar {
            min-width:30em;
            max-width:55em;
            width:100%;
            padding:.1em;
        }
        table.toolbar {
            border-spacing:0;
        }
        table.toolbar td {
            padding:0;
        }
        button {
            white-space:nowrap;
        }
        div > h2 {
            margin:0;
            padding:0;
        }
    </style>
</macro>