mixed_table_stylesheet

   Usages of this macro
... in responsive.naml
229
230
231
232
233
234
235
236
<override_macro name="mixed_table_stylesheet">
    <n.overridden/>
    <style type="text/css">
        @media (max-width: 600px) {
            .nowrap{white-space:normal}
        }
    </style>
</override_macro>
Overrides default macro
... in view_mixed.naml
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
<macro name="mixed_table_stylesheet">
    <style type="text/css">
        table.main {
            border-spacing:0;
            width:100%;
            border-width:1px;
            border-style:solid;
        }
        table.main td {
            padding:.1em;
            height:2.2em;
        }
        tr.header-row td {
            font-weight:bold;
            padding: .2em .2em .1em;
            border-bottom-width: 1px;
            border-bottom-style: solid;
        }
        tr.category-row td {
            border-width: 1px;
            border-style: solid;
            border-left: none;
            border-right: none;
        }
        tr.main-row td {
            border-width: 1px;
            border-style: dotted;
            border-left: none;
            border-right: none;
            border-top:none;
        }
 
        tr.main-row td td {
            border-color: transparent;
        }
        a.category-link {
            text-decoration:none;
            font-size:110%;
        }
        td.topics-column {
            width:70%;
        }
    </style>
</macro>