mirror of https://gitee.com/bigwinds/arangodb
Moved collectionsItemView.css to scss reduction 100% so basicly removed
This commit is contained in:
parent
296278cfbc
commit
58a9b5dc85
|
@ -1,72 +0,0 @@
|
||||||
.span3 {
|
|
||||||
min-height:100px;
|
|
||||||
width: 230px;
|
|
||||||
margin-left: 13px !important;
|
|
||||||
margin-bottom: 13px !important;
|
|
||||||
border: 0px;
|
|
||||||
position:relative;
|
|
||||||
text-align:center;
|
|
||||||
box-shadow: 0 0 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.span3 a {
|
|
||||||
border: 0;
|
|
||||||
box-shadow: 0 0 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.span3 h5 {
|
|
||||||
font-family: 'Open Sans', sans-serif !important;
|
|
||||||
font-weight: 300;
|
|
||||||
font-size: 12px;
|
|
||||||
white-space: nowrap !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
text-overflow: ellipsis !important;
|
|
||||||
width: 214px;
|
|
||||||
color: #fff;
|
|
||||||
border: 0;
|
|
||||||
background:#676665;
|
|
||||||
padding: 4px 8px;
|
|
||||||
margin:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thumbnail {
|
|
||||||
padding:0;
|
|
||||||
box-shadow: 0 0 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.span3 .ICON {
|
|
||||||
position: absolute;
|
|
||||||
right: 0px;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-right: 5px;
|
|
||||||
opacity: 0.5;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.span3 .ICON:hover {
|
|
||||||
opacity: 1.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.span3 .spanInfo {
|
|
||||||
right: 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spanDisabled {
|
|
||||||
right: 25px !important;
|
|
||||||
opacity: 0.2 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spanDisabled:hover {
|
|
||||||
opacity: 0.2 !important;
|
|
||||||
cursor: default !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.span3 .badge-success {
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.badge, .label, .btn {
|
|
||||||
text-shadow: none !important;
|
|
||||||
font-size: 11px;
|
|
||||||
}
|
|
|
@ -7,7 +7,6 @@
|
||||||
window.CollectionListItemView = Backbone.View.extend({
|
window.CollectionListItemView = Backbone.View.extend({
|
||||||
|
|
||||||
tagName: "div",
|
tagName: "div",
|
||||||
// className: "span3",
|
|
||||||
className: "tile",
|
className: "tile",
|
||||||
template: templateEngine.createTemplate("collectionsItemView.ejs"),
|
template: templateEngine.createTemplate("collectionsItemView.ejs"),
|
||||||
|
|
||||||
|
|
|
@ -44,21 +44,9 @@
|
||||||
$('#collectionsToggle').addClass('activated');
|
$('#collectionsToggle').addClass('activated');
|
||||||
}
|
}
|
||||||
|
|
||||||
//append info icon for loaded collections
|
|
||||||
/*
|
|
||||||
$('.loaded').parent().prev().append(
|
|
||||||
'<span class="icon_arangodb_info spanInfo ICON" ' +
|
|
||||||
'title="Show collection properties"</span>'
|
|
||||||
);
|
|
||||||
$('.unloaded').parent().prev().append(
|
|
||||||
'<span class="icon_arangodb_info spanDisabled ICON" alt="disabled"</span>'
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
|
|
||||||
$('#searchInput').val(searchOptions.searchPhrase);
|
$('#searchInput').val(searchOptions.searchPhrase);
|
||||||
$('#searchInput').focus();
|
$('#searchInput').focus();
|
||||||
var val = $('#searchInput').val();
|
var val = $('#searchInput').val();
|
||||||
$('#searchInput').val('');
|
|
||||||
$('#searchInput').val(val);
|
$('#searchInput').val(val);
|
||||||
|
|
||||||
arangoHelper.fixTooltips(".icon_arangodb, .arangoicon", "left");
|
arangoHelper.fixTooltips(".icon_arangodb, .arangoicon", "left");
|
||||||
|
|
Loading…
Reference in New Issue