Skip to content

Commit

Permalink
fixed wrong css syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
waridrox committed Jul 19, 2021
1 parent 0bb9130 commit 56e417e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ h5 small {
}

.capture-navbar.red .nav .active a {
background-color: #900;
background-color: #900 !important;
}

#display {
Expand Down
14 changes: 4 additions & 10 deletions app/views/capture/index2.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<span class="bs-stepper-label">Settings</span>
<script>
function settingsPage() {
$('html').css('background', '#272727');
$('html').css('background', '#272727');

$("#heightIndicator").removeClass("capture-settings-hide");
$("#heightIndicator").show();
Expand Down Expand Up @@ -110,8 +110,7 @@
<span class="bs-stepper-label">Capture</span>
<script>
function capturePage() {
$("html, .full-strecth-block").css('background', '#272727');

$("html, .full-strecth-block").css('background', '#272727');
$("#landing-page-content").hide();
$("#capture-option").addClass("capture-settings-hide");
$("#heightIndicator").addClass("capture-settings-hide");
Expand All @@ -136,9 +135,7 @@
<span class="bs-stepper-label">Save</span>
<script>
function savePage() {
// $('html').css('background', '#ffffff');
$("html, .full-strecth-block").css('background', '#ffffff');

$("html, .full-strecth-block").css('background', '#ffffff');
$("#landing-page-content").hide();
$("div#capture-page-content").hide();
$("div#capture-settings").hide();
Expand Down Expand Up @@ -336,10 +333,7 @@
<% if params[:action] == "match" %>
$W.set = <%= @set.id %>
<% end %>

// if ($('body').width() > 768) $('#tool-toggle').hide()
// else $('#tool-pane').hide()


})();
</script>
</body>
Expand Down

0 comments on commit 56e417e

Please sign in to comment.