Fossil

Check-in [957d037407]
Login

Check-in [957d037407]

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

Overview
Comment:Add some padding around subscripted inherited privilege markers to improve readability.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | inherit-priv-mark-sub
Files: files | file ages | folders
SHA1: 957d0374073603321064655462bcaace585a9f9f
User & Date: andybradford 2014-09-27 05:54:47.484
Context
2014-09-27
17:08
Use brackets to further distinguish the mark from the surrounding text not relying too much on CSS. ... (check-in: a6e8e7004d user: andybradford tags: inherit-priv-mark-sub)
05:54
Add some padding around subscripted inherited privilege markers to improve readability. ... (check-in: 957d037407 user: andybradford tags: inherit-priv-mark-sub)
2014-09-26
21:02
Wrap markdown content in an HTML 'div' block of the 'markdown' class. ... (check-in: e061a675e6 user: mistachkin tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/style.c.
932
933
934
935
936
937
938

939
940
941
942

943
944
945
946

947
948
949
950

951
952
953
954
955
956
957
    @   text-align: right;
    @   vertical-align: top;
    @   white-space: nowrap;
  },
  { "span.ueditInheritNobody",
    "color for capabilities, inherited by nobody",
    @   color: green;

  },
  { "span.ueditInheritDeveloper",
    "color for capabilities, inherited by developer",
    @   color: red;

  },
  { "span.ueditInheritReader",
    "color for capabilities, inherited by reader",
    @   color: black;

  },
  { "span.ueditInheritAnonymous",
    "color for capabilities, inherited by anonymous",
    @   color: blue;

  },
  { "span.capability",
    "format for capabilities, mentioned on the user edit page",
    @   font-weight: bold;
  },
  { "span.usertype",
    "format for different user types, mentioned on the user edit page",







>




>




>




>







932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
    @   text-align: right;
    @   vertical-align: top;
    @   white-space: nowrap;
  },
  { "span.ueditInheritNobody",
    "color for capabilities, inherited by nobody",
    @   color: green;
    @   padding: .2em;
  },
  { "span.ueditInheritDeveloper",
    "color for capabilities, inherited by developer",
    @   color: red;
    @   padding: .2em;
  },
  { "span.ueditInheritReader",
    "color for capabilities, inherited by reader",
    @   color: black;
    @   padding: .2em;
  },
  { "span.ueditInheritAnonymous",
    "color for capabilities, inherited by anonymous",
    @   color: blue;
    @   padding: .2em;
  },
  { "span.capability",
    "format for capabilities, mentioned on the user edit page",
    @   font-weight: bold;
  },
  { "span.usertype",
    "format for different user types, mentioned on the user edit page",