css fix for ordering
This commit is contained in:
parent
5711618d63
commit
59e7bb9ade
|
@ -1,4 +1,79 @@
|
||||||
/*
|
/*reset*/
|
||||||
Place all the styles related to the matching controller here.
|
h1, h2, h3, h4, h5, p{
|
||||||
They will automatically be included in application.css.
|
margin: 0;
|
||||||
*/
|
padding: 0;
|
||||||
|
}
|
||||||
|
br{
|
||||||
|
display: block;
|
||||||
|
margin: 0 0 5px;
|
||||||
|
}
|
||||||
|
ol, ul{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
li{
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
body > img {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
img{
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
outline: none;
|
||||||
|
text-decoration: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
table, tr, td{
|
||||||
|
padding: 0;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*reset end *//* CSS Document */
|
||||||
|
|
||||||
|
#web_resource_order_table{
|
||||||
|
border-collapse: unset !important;
|
||||||
|
position: relative;
|
||||||
|
width: 593px;
|
||||||
|
margin: 40px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#web_resource_order_table th{
|
||||||
|
background-color: #454545;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.position-text{
|
||||||
|
position: relative;
|
||||||
|
width: 85px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#web_resource_order_table .editable-input{
|
||||||
|
position: relative;
|
||||||
|
width: 25px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
padding: 0px 0px 0px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.position-text-div{
|
||||||
|
height: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-edit-notification{
|
||||||
|
background-color: #ffffd5;
|
||||||
|
z-index: 10;
|
||||||
|
display: none;
|
||||||
|
height: 25px;
|
||||||
|
left: 40%;
|
||||||
|
position: fixed;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 5px;
|
||||||
|
top: 85px;
|
||||||
|
width: 400px;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
<% content_for :page_specific_css do %>
|
<% content_for :page_specific_css do %>
|
||||||
<%= stylesheet_link_tag "admin/web_links" %>
|
<%= stylesheet_link_tag "admin/web_links" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<table width="100%" id="web_resource_order_table">
|
<div class="order-edit-notification">Please click "Save Order" button when you done.</div>
|
||||||
|
<table width="100%" id="web_resource_order_table" class="table table-striped" class="web_soursce_table">
|
||||||
<thead>
|
<thead>
|
||||||
<th>Position</th>
|
<tr>
|
||||||
<th>Link</th>
|
<th>Position</th>
|
||||||
|
<th>Link</th>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% @links.each_with_index do |link,i| %>
|
<% @links.each_with_index do |link,i| %>
|
||||||
|
@ -30,6 +32,7 @@
|
||||||
var makeEditable = function(){
|
var makeEditable = function(){
|
||||||
var input_box = $("<input type='text'/>"),
|
var input_box = $("<input type='text'/>"),
|
||||||
el = $(this);
|
el = $(this);
|
||||||
|
input_box.addClass("editable-input");
|
||||||
input_box.val(el.data("value"));
|
input_box.val(el.data("value"));
|
||||||
input_box.attr("data-old-id",el.data("value"));
|
input_box.attr("data-old-id",el.data("value"));
|
||||||
input_box.on("blur",function(){
|
input_box.on("blur",function(){
|
||||||
|
@ -56,6 +59,7 @@
|
||||||
div.on("click",makeEditable);
|
div.on("click",makeEditable);
|
||||||
el.parent().html(div);
|
el.parent().html(div);
|
||||||
$("#save-order-button").removeClass("disabled");
|
$("#save-order-button").removeClass("disabled");
|
||||||
|
$(".order-edit-notification").slideDown();
|
||||||
sortTable(el.data("old-id"),current_value);
|
sortTable(el.data("old-id"),current_value);
|
||||||
}else{
|
}else{
|
||||||
var div = $("<div class='position-text-div' data-value='" + current_value + "'>" + current_value + "</div>");
|
var div = $("<div class='position-text-div' data-value='" + current_value + "'>" + current_value + "</div>");
|
||||||
|
@ -108,6 +112,7 @@
|
||||||
type : "post"
|
type : "post"
|
||||||
}).done(function(){
|
}).done(function(){
|
||||||
el.addClass("disabled");
|
el.addClass("disabled");
|
||||||
|
$(".order-edit-notification").slideUp();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue