mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
Fix tooltip + enhancement
Adressed PR's comment Fix CSS issue
This commit is contained in:
@@ -75,27 +75,11 @@
|
||||
</style>
|
||||
<style type="text/css">
|
||||
/* Vertical Tabs */
|
||||
.ui-tabs-vertical .ui-tabs-nav {
|
||||
padding: .2em .1em .2em .2em;
|
||||
float: left;
|
||||
width: 12em;
|
||||
}
|
||||
.ui-tabs-vertical .ui-tabs-nav li {
|
||||
clear: left;
|
||||
width: 100%;
|
||||
border-bottom-width: 1px !important;
|
||||
border-right-width: 0 !important;
|
||||
margin: 0 -1px .2em 0;
|
||||
}
|
||||
.ui-tabs-vertical .ui-tabs-nav li a {
|
||||
display:block;
|
||||
}
|
||||
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-selected {
|
||||
padding-bottom: 0;
|
||||
padding-right: .1em;
|
||||
border-right-width: 1px;
|
||||
border-right-width: 1px;
|
||||
}
|
||||
.ui-tabs-vertical .ui-tabs-nav { padding: .2em .1em .2em .2em; float: left; width: 12em; }
|
||||
.ui-tabs-vertical .ui-tabs-nav li { clear: left; width: 100%; border-bottom-width: 1px !important; border-right-width: 0 !important; margin: 0 -1px .2em 0; }
|
||||
.ui-tabs-vertical .ui-tabs-nav li a { display:block; }
|
||||
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active { padding-bottom: 0; padding-right: .1em; border-right-width: 1px; border-right-width: 1px; }
|
||||
.ui-tabs-vertical .ui-tabs-panel { padding: 1em; float: right;}
|
||||
</style>
|
||||
|
||||
<link type="text/css" rel="stylesheet" href="{{ path('minifier', { 'f' : 'include/jslibs/jquery.contextmenu.css,include/jslibs/colorpicker/css/colorpicker.css,include/jslibs/jquery-treeview/jquery.treeview.css,skins/common/main.css,skins/geonames/geonames.css,include/jquery.image_enhancer.css' }) }}" >
|
||||
@@ -171,7 +155,7 @@
|
||||
</li>
|
||||
{% endif %}
|
||||
<li style="float:right;">
|
||||
<a href="#" class="" style="margin:8px 0;">
|
||||
<a href="#" class="escamote" style="margin:8px 0;">
|
||||
<img src="/skins/icons/workzoneEscamote.png" title="{% trans 'Close the WorkZone' %}"/>
|
||||
</a>
|
||||
</li>
|
||||
@@ -826,7 +810,7 @@
|
||||
<h1>{% trans 'Theme' %}</h1>
|
||||
{% for color, file in css %}
|
||||
<div title="{% trans 'Selecteur de theme' %}" class="colorpicker_box"
|
||||
onclick="setCss('{{color}}')" style="width:16px;height:16px;background-color:#{{ color }};"> </div>
|
||||
onclick="setCss('{{color}}');" style="width:16px;height:16px;background-color:#{{ color }};"> </div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
@@ -1026,7 +1010,7 @@
|
||||
function sessionactive(){
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/session/update/",
|
||||
url: "{{ path('update_session') }}",
|
||||
dataType: "json",
|
||||
data: {
|
||||
module : 1,
|
||||
@@ -1048,14 +1032,14 @@
|
||||
|
||||
return;
|
||||
}
|
||||
})
|
||||
});
|
||||
};
|
||||
|
||||
function setCss(color) {
|
||||
$("#skinCss").attr("href","/include/minify/?f=skins/prod/"+color+"/prodcolor.css");
|
||||
$.post("prodFeedBack.php", {
|
||||
action: "CSS",
|
||||
color: color,
|
||||
$.post("{{ path('save_pref') }}", {
|
||||
prop: "css",
|
||||
value: color,
|
||||
t: Math.random()
|
||||
}, function(data){
|
||||
return;
|
||||
|
Reference in New Issue
Block a user