mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
PHRAS-2544 #comment update fix on grey and white theme #time 8h
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<div>
|
||||
<button class="tools-accordion"><span>Actions<i class="fa fa-chevron-right rotate"></i></span></button>
|
||||
<button class="tools-accordion">Actions</button>
|
||||
<div class="tools-panel">
|
||||
<button class="ui-corner-all TOOL_disktt_btn basket_window" data-selection-source="basket">
|
||||
<img src="/assets/common/images/icons/disktt_history.png"/>
|
||||
|
@@ -33,7 +33,7 @@
|
||||
/>
|
||||
</td>
|
||||
<td>
|
||||
<a class="contextMenuTrigger"></a>
|
||||
<a class="contextMenuTrigger icon-display-grid" href="#"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -127,7 +127,7 @@
|
||||
{% endif %}
|
||||
-->
|
||||
<td>
|
||||
<a class="contextMenuTrigger"></a>
|
||||
<a class="contextMenuTrigger icon-display-grid" href="#"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -230,7 +230,7 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<a class="contextMenuTrigger"></a>
|
||||
<a class="contextMenuTrigger icon-display-grid" href="#"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@@ -75,10 +75,20 @@
|
||||
data.addColumn('number', '{{ 'preview::visualisation' | trans }}');
|
||||
|
||||
data.addRows(arrayViews);
|
||||
var $color = "#FFFFFF";
|
||||
if ($('body').hasClass('000000')) {
|
||||
$color = "#FFFFFF";
|
||||
}
|
||||
if ($('body').hasClass('FFFFFF')) {
|
||||
$color = "#000000";
|
||||
}
|
||||
/*if ($('body').hasClass('959595')) {
|
||||
$color = "#000000";
|
||||
}*/
|
||||
|
||||
var options = {
|
||||
titleTextStyle: {
|
||||
color: 'white',
|
||||
color: $color,
|
||||
fontSize: 13
|
||||
},
|
||||
colors: ['#FF9900'],
|
||||
@@ -87,28 +97,28 @@
|
||||
hAxis: {
|
||||
title: '{{ 'preview::date' | trans }}',
|
||||
titleTextStyle: {
|
||||
color: 'white',
|
||||
color: $color,
|
||||
fontSize: 11
|
||||
},
|
||||
textStyle:{color: '#FFF'},
|
||||
textStyle:{color: $color},
|
||||
format: 'd/M/yy',
|
||||
gridlines: {color: 'none'},
|
||||
min: new Date(statistics.from),
|
||||
max: new Date(statistics.to),
|
||||
baselineColor: '#FFF'
|
||||
baselineColor: $color
|
||||
},
|
||||
vAxis: {
|
||||
title: '{{ 'preview::visualisation' | trans }}',
|
||||
titleTextStyle: {
|
||||
color: 'white',
|
||||
color: $color,
|
||||
fontSize: 11
|
||||
},
|
||||
textStyle:{color: '#FFF'},
|
||||
textStyle:{color: $color},
|
||||
minValue: 0,
|
||||
maxValue: maxValue,
|
||||
baselineColor: '#FFF'
|
||||
baselineColor: $color
|
||||
},
|
||||
legend: {position: 'top', textStyle: {color: 'white'}},
|
||||
legend: {position: 'top', textStyle: {color: $color}},
|
||||
};
|
||||
|
||||
var chart = new google.visualization.ColumnChart(
|
||||
@@ -199,4 +209,4 @@
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user