nabble_stylesheets

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 "nabble_stylesheets".
... in configuration.naml
59
60
61
62
63
64
65
66
67
68
69
<override_macro name="nabble_stylesheets" unindent="true">
        <n.overridden/>
        
        
        <style type="text/css">
            .second-font, h1, h2, h3, h4, h5, h6 {
                font-family: 'Tahoma';
            }
        </style>
        
    </override_macro>
Overrides default macro
... in responsive.naml
196
197
198
199
200
201
202
203
204
<override_macro name="nabble_stylesheets" unindent="true">
    <n.overridden/>
    <style type="text/css">
        @media (max-width: 600px) {
            #search-box,#topic-search-box{margin:1em 0}
            td.pin-column img{display:none}
        }
    </style>
</override_macro>
Overrides default macro
... in utilities.naml
65
66
67
68
<macro name="nabble_stylesheets">
    <link rel="stylesheet" href="/nabble.css?v=[n.css_version/]" type="text/css" />
    <link rel="stylesheet" href="/template/NamlServlet.jtp?macro=site_style" type="text/css" />
</macro>