diff options
author | Byron Jones <bjones@mozilla.com> | 2013-12-10 21:30:11 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-12-10 21:30:11 +0100 |
commit | 7d33443002e5da146e506f92600ff456571ac84a (patch) | |
tree | 79b24d20c409ae8ae2b926fe3eac90a9f47a363d /skins | |
parent | f21a2d3506d4c4913d0d0a8c1134188a85b76562 (diff) | |
download | bugzilla-7d33443002e5da146e506f92600ff456571ac84a.tar.gz bugzilla-7d33443002e5da146e506f92600ff456571ac84a.tar.xz |
Bug 942725: backport bug 793963 to bmo (add the ability to tag comments with arbitrary tags)
Diffstat (limited to 'skins')
-rw-r--r-- | skins/contrib/Mozilla/global.css | 29 | ||||
-rw-r--r-- | skins/standard/show_bug.css | 39 |
2 files changed, 68 insertions, 0 deletions
diff --git a/skins/contrib/Mozilla/global.css b/skins/contrib/Mozilla/global.css index b0ce99cf8..4d6fd7113 100644 --- a/skins/contrib/Mozilla/global.css +++ b/skins/contrib/Mozilla/global.css @@ -559,6 +559,35 @@ table.edit_form hr { padding: 5px !important; } +.bz_comment_tags { + background: #eee; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); + border-top: 1px solid rgba(0, 0, 0, 0.1); + padding: 5px; +} + +.bz_comment_tag { + background: #fff; + color: #444; + border: none; + padding: 2px 6px; +} + +.bz_comment_tag a { + color: #0095DD; +} + +#bz_ctag_error { + border: none; + background-color: #faa; + color: #444; + padding: 2px 6px; +} + +#bz_ctag_error a { + color: #0095DD; +} + .ih_inlinehistory { background: #eee; border-top: 1px solid rgba(0, 0, 0, 0.1); diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css index 8214ce5f4..656e130a0 100644 --- a/skins/standard/show_bug.css +++ b/skins/standard/show_bug.css @@ -116,3 +116,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; +} + |