Skip to content

Commit

Permalink
Fixed radio buttons and fixed text-edit cursor appearing on non-edita…
Browse files Browse the repository at this point in the history
…ble text.
  • Loading branch information
niall-slater committed Dec 6, 2017
1 parent 82f99dd commit 0adc45f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Chrometana/html/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ body {
background-color: #FFFFFF;
color: #fff;
font-family: 'Raleway',Tahoma,Verdana,Arial,sans-serif;

cursor: default;
}

.content {
Expand Down
7 changes: 3 additions & 4 deletions Chrometana/html/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ <h3>Optional Features</h3>
<div class="form-group">
<input type="checkbox" id="enable_open_website" class="chrometana_advanced_setting" /><label for="enable_open_website" class="pointer">Enable "Open Website"</label>
<div class="helper-text">
<p>Enable abilty to search "Open example.com" and load example.com</p>
<p>Enable ability to search "Open example.com" and load example.com</p>
</div>
<br>
</div>
</section>
<section class="col-md-6 col-sm-6 col-lg-6">
<div>
<label for="all_bing_searches" class="pointer checkbox-inline option-text"><input type="checkbox" id="all_bing_searches" class="chrometana_advanced_setting">Apply to all Bing Searches</label>
<label for="all_bing_searches" class="pointer checkbox-inline option-text"><input type="radio" name="search_option" value="all_searches" id="all_bing_searches" class="chrometana_advanced_setting">Apply to all Bing Searches</label>
<div class="helper-text">
<p>Redirect all searches sent to bing (including Cortana)</p>
</div>
<label for="exclude_settings_app" class="option-text pointer checkbox-inline"><input type="checkbox" id="exclude_settings_app" class="chrometana_advanced_setting">Apply Only to Cortana Searches</label>
<label for="exclude_settings_app" class="option-text pointer checkbox-inline"><input type="radio" name="search_option" value="cortana_searches" id="exclude_settings_app" class="chrometana_advanced_setting">Apply Only to Cortana Searches</label>
<div class="helper-text">
<p>Only redirect searches that come from Cortana</p>
</div>
Expand All @@ -95,7 +95,6 @@ <h3>Custom Search Engine</h3>
</div>
</div>
</div>
</div>
<script src="../js/options.js"></script>
</body>
</html>

0 comments on commit 0adc45f

Please sign in to comment.