Overview
Comment:Use grids for
columns
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: ee594478411b0780777a5cb26f0843c7f108bafb
User & Date: bohwaz on 2020-09-25 11:46:54
Other Links: branch diff | manifest | tags
Context
2020-09-25
11:58
Change date inputs to something more accessible check-in: 59cbce0ec3 user: bohwaz tags: dev
11:46
Use grids for
columns
check-in: ee59447841 user: bohwaz tags: dev
2020-09-18
16:36
Saving the creator check-in: 1c7ffa0c7d user: bohwaz tags: dev
Changes

Modified src/www/admin/static/admin.css from [fb1306c98b] to [ae7c16ef28].

1144
1145
1146
1147
1148
1149
1150
1151



1152
1153
1154
1155
1156
1157
1158




1159
1160
1161
1162

1163

1164
1165
1166
1167
1168
1169
1170
1171
1144
1145
1146
1147
1148
1149
1150

1151
1152
1153
1154
1155
1156




1157
1158
1159
1160

1161
1162
1163
1164

1165

1166
1167
1168
1169
1170
1171
1172







-
+
+
+



-
-
-
-
+
+
+
+
-



+
-
+
-







table.accounts .account-level-2 th { padding-left: 1em; font-size: 1.3em; }
table.accounts .account-level-3 th { padding-left: 2em; }
table.accounts .account-level-4 th { padding-left: 3em; }
table.accounts .account-level-5 th { padding-left: 4em; }
table.accounts .account-level-6 th { padding-left: 5em; }

dl.describe {
    margin-bottom: 1em;
    margin-bottom: 1rem;
    display: grid;
    grid-template: auto / 15rem 1fr;
}

dl.describe > dt {
    font-weight: bold;
    width: 15em;
    float: left;
    clear: left;
    grid-column: 1;
    margin: .2rem .5rem;
    text-align: right;
    color: #666;
    margin-bottom: .5em;
}

dl.describe > dd {
    grid-column: 2;
    margin-bottom: .5em;
    margin: .2rem .5rem;
    float: left;
}

dl.describe ul {
    margin-left: 1.5em;
    list-style-type: disc;
}