Fossil

Check-in [e982f18bd3]
Login

Check-in [e982f18bd3]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:A couple framework-level CSS micro-tweaks uncovered by testing with different skins.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | wikiedit-wysiwyg-legacy
Files: files | file ages | folders
SHA3-256: e982f18bd30de69382b9eb0866fa68fb48873d14dc69bcc5f10a1d40bcb0d82a
User & Date: stephan 2020-08-30 16:22:10.296
Context
2020-08-30
17:12
Replaced \u002f slash escapes with \x2f, thanks to a hint from Arseniy Terekhin. ... (check-in: 1455466234 user: stephan tags: wikiedit-wysiwyg-legacy)
16:22
A couple framework-level CSS micro-tweaks uncovered by testing with different skins. ... (check-in: e982f18bd3 user: stephan tags: wikiedit-wysiwyg-legacy)
16:07
Moar wysiwyg style fine-tuning. ... (check-in: 6f03a598fe user: stephan tags: wikiedit-wysiwyg-legacy)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/default.css.
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
   both a LABEL tag and an INPUT or SELECT control.  The wrapper is
   "necessary", as opposed to placing the INPUT in the LABEL, so that
   we can include multiple INPUT elements (e.g. a set of radio
   buttons). Note that these elements must sometimes be BLOCK elements
   (e.g. DIV) so that certain nesting constructs are legal.
*/
.input-with-label {
  border: 1px inset #808080;
  border-radius: 0.25em;
  padding: 0.25em 0.4em;
  margin: 0 0.5em;
  display: inline-block;
  cursor: default;
  white-space: nowrap;
}
.input-with-label > * {
  vertical-align: middle;







|

|







1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
   both a LABEL tag and an INPUT or SELECT control.  The wrapper is
   "necessary", as opposed to placing the INPUT in the LABEL, so that
   we can include multiple INPUT elements (e.g. a set of radio
   buttons). Note that these elements must sometimes be BLOCK elements
   (e.g. DIV) so that certain nesting constructs are legal.
*/
.input-with-label {
  border: 1px inset rgba(128, 128, 128, 0.5);
  border-radius: 0.25em;
  padding: 0.15em 0.25em;
  margin: 0 0.5em;
  display: inline-block;
  cursor: default;
  white-space: nowrap;
}
.input-with-label > * {
  vertical-align: middle;
1313
1314
1315
1316
1317
1318
1319

1320
1321
1322
1323
1324
1325
1326
1327
*/
.help-buttonlet {
  display: inline-block;
  min-width: 1rem;
  max-width: 1rem;
  min-height: 1rem;
  max-height: 1rem;

  font-size: 0.9em;
  border-radius: 0.5rem;
  background-color: rgba(54, 54, 255,1);
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-family: monspace;
  text-align: center;
  margin: 0 0 0 0.35em;







>
|







1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
*/
.help-buttonlet {
  display: inline-block;
  min-width: 1rem;
  max-width: 1rem;
  min-height: 1rem;
  max-height: 1rem;
  line-height: 1 /*important for some skins*/;
  font-size: 100%;
  border-radius: 0.5rem;
  background-color: rgba(54, 54, 255,1);
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-family: monspace;
  text-align: center;
  margin: 0 0 0 0.35em;