site_style

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 "site_style".
... in configuration.naml
16
17
18
19
20
21
<override_macro name="site_style">
        <n.overridden/>
        
            div.avatar-label { background-color: #ff00ff;} body { margin-right: 0em; margin-left: 0em; } .nabble { background-color: transparent; } .nabble div.search-box{ float: right; margin-right: 5px; } .nabble div.search-box #search-input{ background-color: #eeeeff; } .nabble a:link,.nabble a.not-visited-link, span.dropdown-item{ color: #0000ff; } .nabble a:visited,.nabble a.visited-link { color: #000080; } .nabble h1, .nabble h2 { color: #000000; } .nabble .light-black { color: #124850; } .nabble .message-text, .small, .nabble .editor-table td, p, form, small, ul, table td, .breadcrumbs { color:#000000; } .nabble .light-bg-color { background-color: #EDF7F9; } .nabble .shaded-bg-color { background-color: #EEEEFF; } .nabble th, .nabble .dark-bg-color { background-color: #C2E5EB; } .nabble .light-highlight { background-color: #ADF3DF; } .nabble .highlight { background-color: #94E4CD; } .nabble .info-message th, .nabble .dark-highlight { background-color: #7FD6BC; } .nabble table, .nabble li, .nabble div, .nabble .medium-border-color { border-color: #99CFDA; } .nabble td, .nabble .light-border-color { border-color: #C4E2F5; } .nabble .dark-border-color { border-color: #8CC3CD; } .nabble .error-message { border-color: #ffcc33; } .nabble .info-message { border-color: #3366ff; } span.dropdown table { background-color:#F1F9FA; border-color:#8CC3CD; } tr.dropdown-hover { background-color:#DAEEF1; } .post-border, td.post-border { border-color: #d9d9d9; } span.post-author { color:#000000; } .post-hover { background-color:#E4F6F9; } select, input, textarea, button { border:1px solid #337984; } input[type=radio] { border:none; } .classic-author-name { font-size: 90%; } .nabble .caption { clear: both; background-color: #ddddee; width: 97%; text-align: center; font-size: 0.9em; margin: 5px; padding: 5px; border: 1px solid #666666; } .nabble .caption img { width: 100%; padding-bottom: 5px; } .nabble img { max-width: 100%; }
        
    </override_macro>
Overrides configuration
... in configuration.naml
1
2
3
4
5
6
<override_macro name="site_style">
        <n.overridden/>
        
            body, input, button, textarea, select { font-size: 95%; }
        
    </override_macro>
Overrides default macro
... in utilities.naml
70
71
72
73
74
<macro name="site_style" unindent="true">
    <n.uncache_for/>
    <n.set_response_header name="Content-Type" value="text/css"/>
    <n.comment.>To be overridden</n.comment.>
</macro>