fix report ui issues
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 335 B |
Before Width: | Height: | Size: 262 B |
Before Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 4.4 KiB |
@@ -37,11 +37,11 @@ $(document).ready(function () {
|
||||
bindEvents();
|
||||
|
||||
$("a.select-all").bind("click", function (e) {
|
||||
$("ul.multiselect .coll-checkbox", $(this).closest('.form2')).attr("checked", true);
|
||||
$("ul.multiselect .coll-checkbox", $(this).closest('.form2')).prop("checked", true);
|
||||
});
|
||||
|
||||
$("a.deselect-all").bind("click", function (e) {
|
||||
$("ul.multiselect .coll-checkbox", $(this).closest('.form2')).attr("checked", false);
|
||||
$("ul.multiselect .coll-checkbox", $(this).closest('.form2')).prop("checked", false);
|
||||
});
|
||||
|
||||
// toggle is deprecated:
|
||||
@@ -51,12 +51,12 @@ $(document).ready(function () {
|
||||
if( hasMultiSelectionGroup === true) {
|
||||
var $this = $(this);
|
||||
var groupId = $this.data('group-id');
|
||||
$(".checkbox-" + groupId, $this.closest('.form2')).attr("checked", false);
|
||||
$(".checkbox-" + groupId, $this.closest('.form2')).prop("checked", false);
|
||||
hasMultiSelectionGroup = false;
|
||||
} else {
|
||||
var $this = $(this);
|
||||
var groupId = $this.data('group-id');
|
||||
$(".checkbox-" + groupId, $this.closest('.form2')).attr("checked", true);
|
||||
$(".checkbox-" + groupId, $this.closest('.form2')).prop("checked", true);
|
||||
hasMultiSelectionGroup = true;
|
||||
}
|
||||
});
|
||||
@@ -92,7 +92,7 @@ function bindEvents() {
|
||||
//reload the content by pressing enter key, it concerns the number of result by report
|
||||
$('form .entersubmiter').bind('keypress', function (event) {
|
||||
if (event.keyCode == '13') {
|
||||
$("#DOC-input").attr("checked", "checked").trigger('click');
|
||||
$("#DOC-input").prop("checked", "checked").trigger('click');
|
||||
}
|
||||
});
|
||||
//action on table links
|
||||
|
@@ -44,7 +44,7 @@ form.report_form input[type=text] {
|
||||
|
||||
.form_csv input[name=submit] {
|
||||
|
||||
background: url('#{$imagesPath}csv.gif') top right no-repeat;
|
||||
background: url('#{$reportImagesPath}csv.gif') top right no-repeat;
|
||||
width: 15px;
|
||||
height: 16px;
|
||||
cursor: pointer;
|
||||
@@ -107,7 +107,7 @@ iframe {
|
||||
}
|
||||
|
||||
.answers {
|
||||
background-color: #F6F2F1;
|
||||
background-color: $reportBackgroundColor;
|
||||
}
|
||||
|
||||
.report-table tr.odd {
|
||||
@@ -130,7 +130,7 @@ iframe {
|
||||
#title_dash {
|
||||
float: left;
|
||||
font-size: 18px;
|
||||
color: #f6f2f1;
|
||||
color: $reportBackgroundColor;
|
||||
}
|
||||
|
||||
#periode_dash {
|
||||
@@ -178,7 +178,7 @@ iframe {
|
||||
font-weight: 900;
|
||||
padding: 2px;
|
||||
text-align: left;
|
||||
background-color: #f6f2f1;
|
||||
background-color: $reportBackgroundColor;
|
||||
color: #202020;
|
||||
border-bottom: 1px solid #9C9B99;
|
||||
border-top: 1px solid #9C9B99;
|
||||
@@ -204,8 +204,8 @@ iframe {
|
||||
text-align: center;
|
||||
font-weight: bolder;
|
||||
font-size: small;
|
||||
border-bottom: 3px solid #f6f2f1;
|
||||
border-top: 3px solid #f6f2f1;
|
||||
border-bottom: 3px solid $reportBackgroundColor;
|
||||
border-top: 3px solid $reportBackgroundColor;
|
||||
background-color: #FF9000;
|
||||
min-width: 50px;
|
||||
width: auto;
|
||||
@@ -305,7 +305,7 @@ table.center {
|
||||
}
|
||||
|
||||
#dashboard.loading {
|
||||
background: url('#{$imagesPath}dash-ajax-loader.gif') #696969 no-repeat center center;
|
||||
background: url('#{$reportImagesPath}dash-ajax-loader.gif') #696969 no-repeat center center;
|
||||
}
|
||||
|
||||
#dashboard-table table {
|
||||
@@ -398,19 +398,17 @@ table.center {
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
div.form_titre {
|
||||
padding-bottom: 2px;
|
||||
font-size: large;
|
||||
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
.form_titre {
|
||||
padding: 10px 5px;
|
||||
font-size: 15px;
|
||||
text-align: left;
|
||||
color: #f6f2f1;
|
||||
color: $reportBackgroundColor;
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid #323232;
|
||||
margin-bottom: 3px;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
// border-bottom: 1px solid #323232;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
.form1 {
|
||||
float: left;
|
||||
width: 140px;
|
||||
@@ -430,6 +428,7 @@ div.form_titre {
|
||||
width: 420px;
|
||||
padding: 3px;
|
||||
}
|
||||
*/
|
||||
|
||||
input {
|
||||
font-family: Verdana, sans-serif;
|
||||
@@ -489,7 +488,7 @@ table.tablesorter tr th.SortDown {
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: -1px 45px;
|
||||
// margin: -1px 45px;
|
||||
}
|
||||
|
||||
.onload {
|
||||
@@ -512,22 +511,21 @@ table.tablesorter tr th.SortDown {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.imgdash table {
|
||||
margin: auto;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
width: 100%;
|
||||
.imgdash {
|
||||
table {
|
||||
margin: auto;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
td, th {
|
||||
border: 1px solid #bbb;
|
||||
background: #ddd;
|
||||
text-align: center;
|
||||
border-radius: 0.5px;
|
||||
}
|
||||
caption {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
.imgdash td, .imgdash th {
|
||||
border: 1px solid #bbb;
|
||||
background: #ddd;
|
||||
text-align: center;
|
||||
border-radius: 0.5px;
|
||||
}
|
||||
|
||||
.imgdash caption {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
|
@@ -1,169 +0,0 @@
|
||||
@import '../../vendors/jquery-ui/dark-hive';
|
||||
$reportImagesPath: '../images/report/jquery-ui-theme/report-base/images/';
|
||||
.ui-widget-content {
|
||||
border: 1px solid #202020;
|
||||
background: #555555 url('#{$reportImagesPath}ui-bg_flat_75_d2d1cf_40x100.png') 50% 50% repeat-x;
|
||||
color: #ff9000;
|
||||
}
|
||||
.ui-widget-content a {
|
||||
color: #ff9000;
|
||||
}
|
||||
.ui-widget-header {
|
||||
border: 1px solid #202020;
|
||||
background: #202020 url('#{$reportImagesPath}ui-bg_flat_75_d2d1cf_40x100.png') 50% 50% repeat-x;
|
||||
color: #222222;
|
||||
font-weight: bold;
|
||||
}
|
||||
.ui-widget-header a {
|
||||
color: #222222;
|
||||
}
|
||||
|
||||
/* Interaction states
|
||||
----------------------------------*/
|
||||
.ui-state-default,
|
||||
.ui-widget-content .ui-state-default,
|
||||
.ui-widget-header .ui-state-default {
|
||||
border: 1px solid #202020;
|
||||
background: #313131 url('#{$reportImagesPath}ui-bg_flat_75_d2d1cf_40x100.png') 50% 50% repeat-x;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
}
|
||||
.ui-state-default a,
|
||||
.ui-state-default a:link,
|
||||
.ui-state-default a:visited {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-state-hover,
|
||||
.ui-widget-content .ui-state-hover,
|
||||
.ui-widget-header .ui-state-hover,
|
||||
.ui-state-focus,
|
||||
.ui-widget-content .ui-state-focus,
|
||||
.ui-widget-header .ui-state-focus {
|
||||
border: 1px solid #999999;
|
||||
background: #dadada url('#{$reportImagesPath}ui-bg_glass_75_dadada_1x400.png') 50% 50% repeat-x;
|
||||
font-weight: bold;
|
||||
color: #212121;
|
||||
}
|
||||
.ui-state-hover a,
|
||||
.ui-state-hover a:hover,
|
||||
.ui-state-hover a:link,
|
||||
.ui-state-hover a:visited {
|
||||
color: #212121;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-state-active,
|
||||
.ui-widget-content .ui-state-active,
|
||||
.ui-widget-header .ui-state-active {
|
||||
border: 1px solid #202020;
|
||||
background: #555555 url('#{$reportImagesPath}ui-bg_flat_75_d2d1cf_40x100.png') 50% 50% repeat-x;
|
||||
font-weight: bold;
|
||||
color: #ff9000;
|
||||
}
|
||||
.ui-state-active a,
|
||||
.ui-state-active a:link,
|
||||
.ui-state-active a:visited {
|
||||
color: #ff9000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-highlight,
|
||||
.ui-widget-content .ui-state-highlight,
|
||||
.ui-widget-header .ui-state-highlight {
|
||||
border: 1px solid #fcefa1;
|
||||
background: #fbf9ee url('#{$reportImagesPath}ui-bg_glass_55_fbf9ee_1x400.png') 50% 50% repeat-x;
|
||||
color: #363636;
|
||||
}
|
||||
.ui-state-highlight a,
|
||||
.ui-widget-content .ui-state-highlight a,
|
||||
.ui-widget-header .ui-state-highlight a {
|
||||
color: #363636;
|
||||
}
|
||||
.ui-state-error,
|
||||
.ui-widget-content .ui-state-error,
|
||||
.ui-widget-header .ui-state-error {
|
||||
border: 1px solid #cd0a0a;
|
||||
background: #fef1ec url('#{$reportImagesPath}ui-bg_inset-soft_95_fef1ec_1x100.png') 50% bottom repeat-x;
|
||||
color: #cd0a0a;
|
||||
}
|
||||
.ui-state-error a,
|
||||
.ui-widget-content .ui-state-error a,
|
||||
.ui-widget-header .ui-state-error a {
|
||||
color: #cd0a0a;
|
||||
}
|
||||
.ui-state-error-text,
|
||||
.ui-widget-content .ui-state-error-text,
|
||||
.ui-widget-header .ui-state-error-text {
|
||||
color: #cd0a0a;
|
||||
}
|
||||
|
||||
.ui-icon,
|
||||
.ui-widget-content .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_222222_256x240.png');
|
||||
}
|
||||
.ui-widget-header .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_222222_256x240.png');
|
||||
}
|
||||
.ui-state-default .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_888888_256x240.png');
|
||||
}
|
||||
.ui-state-hover .ui-icon,
|
||||
.ui-state-focus .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_454545_256x240.png');
|
||||
}
|
||||
.ui-state-active .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_454545_256x240.png');
|
||||
}
|
||||
.ui-state-highlight .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_2e83ff_256x240.png');
|
||||
}
|
||||
.ui-state-error .ui-icon,
|
||||
.ui-state-error-text .ui-icon {
|
||||
background-image: url('#{$reportImagesPath}ui-icons_cd0a0a_256x240.png');
|
||||
}
|
||||
|
||||
/* Misc visuals
|
||||
----------------------------------*/
|
||||
|
||||
/* Corner radius */
|
||||
.ui-corner-all,
|
||||
.ui-corner-top,
|
||||
.ui-corner-left,
|
||||
.ui-corner-tl {
|
||||
border-top-left-radius: 4px;
|
||||
}
|
||||
.ui-corner-all,
|
||||
.ui-corner-top,
|
||||
.ui-corner-right,
|
||||
.ui-corner-tr {
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
.ui-corner-all,
|
||||
.ui-corner-bottom,
|
||||
.ui-corner-left,
|
||||
.ui-corner-bl {
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
.ui-corner-all,
|
||||
.ui-corner-bottom,
|
||||
.ui-corner-right,
|
||||
.ui-corner-br {
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
background: #aaaaaa url('#{$reportImagesPath}ui-bg_flat_0_aaaaaa_40x100.png') 50% 50% repeat-x;
|
||||
opacity: .3;
|
||||
filter: Alpha(Opacity=30);
|
||||
}
|
||||
.ui-widget-shadow {
|
||||
margin: -8px 0 0 -8px;
|
||||
padding: 8px;
|
||||
background: #aaaaaa url('#{$reportImagesPath}ui-bg_flat_0_aaaaaa_40x100.png') 50% 50% repeat-x;
|
||||
opacity: .3;
|
||||
filter: Alpha(Opacity=30);
|
||||
border-radius: 8px;
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
@import '../../vendors/jquery-ui/dark-hive';
|
||||
|
||||
$reportImagesPath: '../images/jquery-ui-theme/report-detailed/images/';
|
||||
|
||||
/* Component containers
|
||||
@@ -18,16 +18,16 @@ $reportImagesPath: '../images/jquery-ui-theme/report-detailed/images/';
|
||||
font-size: 1em;
|
||||
}
|
||||
.answers .ui-widget-content {
|
||||
border: 1px solid #f6f2f1;
|
||||
background: #f6f2f1 url('#{$reportImagesPath}ui-bg_flat_75_f6f2f1_40x100.png') 50% 50% repeat-x;
|
||||
border: 1px solid $reportBackgroundColor;
|
||||
background-color: $reportBackgroundColor; // url('#{$reportImagesPath}ui-bg_flat_75_f6f2f1_40x100.png') 50% 50% repeat-x;
|
||||
color: #222222;
|
||||
}
|
||||
.answers .ui-widget-content a {
|
||||
color: #222222;
|
||||
}
|
||||
.answers .ui-widget-header {
|
||||
border: 1px solid #f6f2f1;
|
||||
background: #f6f2f1 url('#{$reportImagesPath}ui-bg_flat_75_f6f2f1_40x100.png') 50% 50% repeat-x;
|
||||
border: 1px solid $reportBackgroundColor;
|
||||
background: $reportBackgroundColor; // url('#{$reportImagesPath}ui-bg_flat_75_f6f2f1_40x100.png') 50% 50% repeat-x;
|
||||
color: #222222;
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -40,7 +40,7 @@ $reportImagesPath: '../images/jquery-ui-theme/report-detailed/images/';
|
||||
.answers .ui-state-default,
|
||||
.answers .ui-widget-content .ui-state-default,
|
||||
.answers .ui-widget-header .ui-state-default {
|
||||
border: 1px solid #f6f2f1;
|
||||
border: 1px solid $reportBackgroundColor;
|
||||
background: #d2d1cf url('#{$reportImagesPath}ui-bg_flat_75_d2d1cf_40x100.png') 50% 50% repeat-x;
|
||||
font-weight: bold;
|
||||
color: #9c9b99;
|
||||
@@ -72,7 +72,7 @@ $reportImagesPath: '../images/jquery-ui-theme/report-detailed/images/';
|
||||
.answers .ui-state-active,
|
||||
.answers .ui-widget-content .ui-state-active,
|
||||
.answers .ui-widget-header .ui-state-active {
|
||||
border: 1px solid #f6f2f1;
|
||||
border: 1px solid $reportBackgroundColor;
|
||||
background: #ff9000 url('#{$reportImagesPath}ui-bg_flat_65_ff9000_40x100.png') 50% 50% repeat-x;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
|
@@ -70,7 +70,7 @@ ul {
|
||||
font-weight: 900;
|
||||
padding: 5px, 5px, 2px, 5px;
|
||||
text-align: left;
|
||||
background-color: #f6f2f1;
|
||||
background-color: $reportBackgroundColor;
|
||||
/*color:#9C9B99;*/
|
||||
color: #202020;
|
||||
border-bottom: 1px solid #9C9B99;
|
||||
|
@@ -1,17 +1,40 @@
|
||||
$sharedIconPath: '../../../assets/common/images/icons/';
|
||||
@import '../../_shared/styles/main';
|
||||
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
||||
@import '../../_shared/styles/jquery-ui/dark-hive';
|
||||
|
||||
$imagesPath: '../images/';
|
||||
$reportBackgroundColor: #FFFFFF; //#F6F2F1;
|
||||
$reportImagesPath: '../images/';
|
||||
@import './tables';
|
||||
@import './jquery-cluetip';
|
||||
@import './jquery-ui/report-base';
|
||||
@import './jquery-ui/report-detailed';
|
||||
|
||||
$mainMenuBackgroundColor: #c7c7c7; //BFBFBF;
|
||||
$mainMenuBottomBorder: 1px solid #c7c7c7;
|
||||
$mainMenuLinkColor: #212121;
|
||||
$mainMenuLinkHoverColor: #BFBFBF;
|
||||
$mainMenuLinkActiveColor: #BFBFBF;
|
||||
$mainMenuBackgroundColor: #3b3b3b;
|
||||
$mainMenuBottomBorder: none;
|
||||
$mainMenuLinkColor: #b1b1b1;
|
||||
$mainMenuLinkHoverColor: #FFFFFF;
|
||||
$mainMenuLinkActiveColor: #FFFFFF;
|
||||
// $mainMenuMarginBottom: 30px;
|
||||
@import '../../_shared/styles/main-menu';
|
||||
@import '../../_shared/styles/main-menu';
|
||||
|
||||
|
||||
#mainTabs {
|
||||
background-color: #212121;
|
||||
}
|
||||
|
||||
#report-activite,
|
||||
#report-telechargement,
|
||||
#report-connexions {
|
||||
background-color: #555555;
|
||||
}
|
||||
.ui-widget-content a {
|
||||
&.btn {
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
.ui-modal {
|
||||
background-color: #212121;
|
||||
&.ui-widget-content{
|
||||
background-color: #212121;
|
||||
}
|
||||
}
|