site_style

NAML documentation   Watch a video
   Usages of this macro
... in configuration.naml
101
102
103
104
105
106
<override_macro name="site_style">
        <n.overridden/>
        
            body, input, button, textarea, select { font-size: 90%; }
        
    </override_macro>
Overrides configuration
... in configuration.naml
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<override_macro name="site_style" unindent="true">
    <n.overridden/>
.nabble a:link,.nabble a.not-visited-link,
span.dropdown-item{
    color: #4B3B17;
}
.nabble a:visited,.nabble a.visited-link {
    color: #558943;
}
.nabble h1,
.nabble h2,
.nabble .light-black {
    color: #124850;
}
.nabble .message-text, .small, .nabble .editor-table td, p, form, small, ul, table td, .breadcrumbs {
    color:#333333;
}
#nabble.path {color:#333333;}
 
.nabble .shaded-bg-color {
    background-color: #F1ECE1;
}
.nabble th,
.nabble .dark-bg-color {
    background-color: #D5D1B6;
}
.nabble .light-highlight {
    background-color: #FBF7ED;
}
.nabble .highlight {
    background-color: #F4CC98;
}
.nabble .info-message th,
.nabble .dark-highlight {
    background-color: #C6A171;
}
.nabble table,
.nabble li,
.nabble div,
.nabble .medium-border-color  {
    border-color: #D5D1B6;
}
.nabble td,
.nabble .light-border-color {
    border-color: #F1ECE1;
}
.nabble .dark-border-color {
    border-color: #BCB797;
}
.nabble .error-message {
    border-color: #ffcc33;
}
.nabble .info-message {
    border-color: #3366ff;
}
span.dropdown table {
    background-color:#FBF7ED;
    border-color:#BCB797;
}
tr.dropdown-hover {
    background-color:#F5E4B8;
}
.post-border, td.post-border {
    border-color: #d9d9d9;
}
span.post-date {
    color: #7E5600;                    
}
span.post-author {
    color:#706F18;
}
span.post-snippet {
                    color: #877348;
}
span.post-subject {
                    color: #60734A;
}
.post-hover {
    background-color:#F4F0E0;
}
select, input, textarea, button {
    border:1px solid #D5D1B6;
}
input[type=radio] {
    border:none;
}
</override_macro>
Overrides configuration
... in configuration.naml
6
7
8
9
<override_macro name="site_style" unindent="true">
    <n.overridden/>
    #description-box {float:right;}
</override_macro>
Overrides configuration
... in configuration.naml
1
2
3
4
<override_macro name="site_style" unindent="true">
    <n.overridden/>
    #forum-title {display:none;}
</override_macro>
Overrides default macro
... in utilities.naml
70
71
72
73
74
<macro name="site_style" unindent="true">
    <n.uncache_for
Binary
Namespace: ServletNamespace
Parameters: do
/>
    <n.set_response_header
Binary
Namespace: ServletNamespace
Parameters: name, value
 name="Content-Type" value="text/css"/>
    <n.comment
Macro
Parameters: text
.>To be overridden</n.comment.>
</macro>