diff options
author | Byron Jones <bjones@mozilla.com> | 2013-11-25 09:21:03 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-11-25 09:21:03 +0100 |
commit | ba0765bf4dc468815e4fa45509010c0cd675e5b2 (patch) | |
tree | 32d979d1172495770a326f87f294c6f10a1eaa68 /skins | |
parent | 0aade93cebf4192b240347e092a7e53a62436ea2 (diff) | |
download | bugzilla-ba0765bf4dc468815e4fa45509010c0cd675e5b2.tar.gz bugzilla-ba0765bf4dc468815e4fa45509010c0cd675e5b2.tar.xz |
Bug 793963: add the ability to tag comments with arbitrary tags
r=dkl, a=glob
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/show_bug.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css index 2d5ba4309..7c002cc15 100644 --- a/skins/standard/show_bug.css +++ b/skins/standard/show_bug.css @@ -121,3 +121,42 @@ table#flags { .bz_bug .bz_alias_short_desc_container { width: inherit; } + +.bz_comment_tags { + margin-top: 3px; +} + +.bz_comment_tag { + border: 1px solid #c8c8ba; + padding: 1px 3px; + margin-right: 2px; + border-radius: 0.5em; + background-color: #eee; + color: #000; +} + +#bz_ctag_div { + display: inline-block; +} + +#bz_ctag_error { + border: 1px solid #ff6666; + padding: 0px 2px; + border-radius: 0.5em; + margin: 2px; + display: inline-block; +} + +#comment_tags_collapse_expand_container { + padding-top: 1em; +} + +#comment_tags_collapse_expand { + list-style-type: none; + padding-left: 1em; +} + +#comment_tags_collapse_expand li { + margin-bottom: 0px; +} + |