Module: check_mk
Branch: master
Commit: 0a58993885a06a39bc84dbf94f7fb54f4ce25efc
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=0a58993885a06a…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Jul 26 17:06:37 2018 +0200
Add CSS classes to tag filter fields
Change-Id: Ia68c53fe720e8629d9c33e8edfc06c515a57b536
---
cmk/gui/plugins/visuals/filters.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cmk/gui/plugins/visuals/filters.py b/cmk/gui/plugins/visuals/filters.py
index f2f7b07..f5c625c 100644
--- a/cmk/gui/plugins/visuals/filters.py
+++ b/cmk/gui/plugins/visuals/filters.py
@@ -996,14 +996,14 @@ class FilterHostTags(Filter):
html.open_td()
html.dropdown(prefix + '_grp', [("", "")] +
groups,
onchange = 'host_tag_update_value(\'%s\',
this.value)' % prefix,
- style='width:129px', sorted=True)
+ style='width:129px', sorted=True,
class_="grp")
html.close_td()
html.open_td()
- html.dropdown(prefix + '_op', [("", "")] +
operators, style="width:36px", sorted=True)
+ html.dropdown(prefix + '_op', [("", "")] +
operators, style="width:36px", sorted=True, class_="op")
html.close_td()
html.open_td()
choices = grouped[html.var(prefix + '_grp')] if html.var(prefix +
'_grp') else [("", "")]
- html.dropdown(prefix + '_val', choices,
style="width:129px", sorted=True)
+ html.dropdown(prefix + '_val', choices,
style="width:129px", sorted=True, class_="val")
html.close_td()
html.close_tr()
html.close_table()