permission_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 "permission_stylesheet".
... in change_permissions.naml
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<macro name="permission_stylesheet">
    <style type="text/css">
        input[type=radio] {
            vertical-align:-15%;
        }
        table.permissions {
            border-collapse: collapse;
            margin-top:1em;
        }
        table.permissions th {
            padding: .3em .6em;
            border-bottom-style:solid;
            border-bottom-width:2px;
        }
        table.permissions td {
            padding: .3em .4em;
            text-align:center;
        }
        table.permissions td.col1 {
            text-align: left;
        }
    </style>
</macro>