forked from external-repos/pa11y-dashboard
* Added list view & grid view buttons on the dashboard, on click of which switches the view and avoids truncation of title of the page. * Indentation fixed.
This commit is contained in:
2
public/css/site.min.css
vendored
2
public/css/site.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -27,6 +27,8 @@ $(document).ready(function(){
|
||||
var graphContainer = $('[data-role="graph"]');
|
||||
var dateSelectDropdownMenu = $('[data-role="date-select-dropdown-menu"]');
|
||||
var legend = graphContainer.parent('.graph-container').find('.dashedLegend');
|
||||
var list = localStorage.getItem("listview") || ""; // get choice or nothing
|
||||
|
||||
|
||||
var graphOptions = {
|
||||
series: {
|
||||
@@ -397,4 +399,38 @@ $(document).ready(function(){
|
||||
$.fn.collapse.Constructor.prototype.keydown
|
||||
);
|
||||
|
||||
// List View
|
||||
$('.btn-list').click(function () {
|
||||
var elements = $("#grid-container .task-card");
|
||||
for (i = 0; i < elements.length; i++) {
|
||||
$(elements[i]).removeClass('col-md-4 col-sm-6');
|
||||
$(elements[i]).addClass('col-md-12');
|
||||
$(elements[i]).find('.gridview:nth-child(1)').addClass('listview col-md-9 col-sm-8');
|
||||
$(elements[i]).find('.gridview:nth-child(2)').addClass('listview col-md-3 col-sm-4 task-actions clearfix');
|
||||
$(elements[i]).find('.gridview').removeClass('gridview');
|
||||
};
|
||||
$('.view-btn').removeClass('btn-default')
|
||||
$(this).addClass('btn-default');
|
||||
localStorage.setItem("listview", "yes") //save the choice
|
||||
});
|
||||
|
||||
// Grid View
|
||||
$('.btn-grid').click(function () {
|
||||
var elements = $("#grid-container .task-card");
|
||||
for (i = 0; i < elements.length; i++) {
|
||||
$(elements[i]).removeClass('col-md-12');
|
||||
$(elements[i]).addClass('col-md-4 col-sm-6');
|
||||
$(elements[i]).find('.listview').addClass('gridview')
|
||||
$(elements[i]).find('.listview:nth-child(1)').removeClass('listview col-md-9 col-sm-8');
|
||||
$(elements[i]).find('.listview:nth-child(2)').removeClass('listview col-md-3 col-sm-4 task-actions clearfix');
|
||||
};
|
||||
$('.view-btn').removeClass('btn-default')
|
||||
$(this).addClass('btn-default')
|
||||
localStorage.setItem("listview", "") //clears the choice
|
||||
});
|
||||
|
||||
//load the view as per user's choice
|
||||
if (list === 'yes') {
|
||||
$('.btn-list').trigger('click');
|
||||
}
|
||||
});
|
||||
|
2
public/js/site.min.js
vendored
2
public/js/site.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -3,7 +3,7 @@
|
||||
// Amend the width of container if you want to here
|
||||
@container-md-ie8: @container-md;
|
||||
|
||||
@grid-adjustment: percentage(@grid-gutter-width / @container-md-ie8);
|
||||
@grid-adjustment: percentage((@grid-gutter-width / @container-md-ie8));
|
||||
|
||||
.ie7, .ie8 {
|
||||
* {
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -233,7 +233,7 @@
|
||||
@navbar-default-bg: @brand-primary;
|
||||
@navbar-default-border: darken(@navbar-default-bg, 6.5%);
|
||||
@navbar-border-radius: @border-radius-base;
|
||||
@navbar-padding-horizontal: floor(@grid-gutter-width / 2); // ~15px
|
||||
@navbar-padding-horizontal: floor((@grid-gutter-width / 2)); // ~15px
|
||||
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
|
||||
|
||||
// Navbar links
|
||||
|
@@ -247,7 +247,7 @@
|
||||
@navbar-height: 50px;
|
||||
@navbar-margin-bottom: @line-height-computed;
|
||||
@navbar-border-radius: @border-radius-base;
|
||||
@navbar-padding-horizontal: floor(@grid-gutter-width / 2);
|
||||
@navbar-padding-horizontal: floor((@grid-gutter-width / 2));
|
||||
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
|
||||
|
||||
@navbar-default-color: #777;
|
||||
|
Reference in New Issue
Block a user