2 <div id="test-switcher" class="{% if explicit %}test-switcher-explicit{% endif %}">
3 <div class="test-switcher-content">
4 {% for test, currval in tests %}
5 {% for cohort in test.cohorts %}
6 {% if cohort.value != currval %}
7 <a onclick="document.cookie='AB_{{test.slug}}={{cohort.value}}; path=/'; window.location.reload(true);">{{ cohort.name }}</a>
25 #test-switcher:before {
27 display: inline-block;
30 transition: opacity .2s;
33 #test-switcher:hover .test-switcher-content {
36 #test-switcher:hover:before,
37 .test-switcher-explicit:before {
40 .test-switcher-content {
43 transition: width .2s;
44 display: inline-block;
48 .test-switcher-explicit .test-switcher-content {
51 .test-switcher-content a {