@@ -26,7 +26,7 @@ class eventsmanager_notify_orderdeliver extends eventsmanager_notifyAbstract
|
|||||||
*/
|
*/
|
||||||
public function icon_url()
|
public function icon_url()
|
||||||
{
|
{
|
||||||
return '/skins/prod/000000/images/disktt_history.gif';
|
return '/skins/prod/000000/images/disktt_history.png';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -24,7 +24,7 @@ class eventsmanager_notify_ordernotdelivered extends eventsmanager_notifyAbstrac
|
|||||||
|
|
||||||
public function icon_url()
|
public function icon_url()
|
||||||
{
|
{
|
||||||
return '/skins/prod/000000/images/disktt_history.gif';
|
return '/skins/prod/000000/images/disktt_history.png';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function datas(array $data, $unread)
|
public function datas(array $data, $unread)
|
||||||
|
@@ -2,29 +2,30 @@
|
|||||||
{% set basket_length = basket.getElements()|length %}
|
{% set basket_length = basket.getElements()|length %}
|
||||||
<div class="tools">
|
<div class="tools">
|
||||||
|
|
||||||
|
<label>Actions</label>
|
||||||
|
|
||||||
<button class="ui-corner-all TOOL_disktt_btn basket_window" title="{{ 'action : exporter' | trans }}">
|
<button class="ui-corner-all TOOL_disktt_btn basket_window" title="{{ 'action : exporter' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/disktt_history.gif"/>
|
<img src="/skins/prod/000000/images/disktt_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
<button class="ui-corner-all TOOL_print_btn basket_window" title="{{ 'action : print' | trans }}">
|
<button class="ui-corner-all TOOL_print_btn basket_window" title="{{ 'action : print' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/print_history.gif"/>
|
<img src="/skins/prod/000000/images/print_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('modifyrecord') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('modifyrecord') %}
|
||||||
<button class="ui-corner-all TOOL_ppen_btn basket_window" title="{{ 'action : editer' | trans }}">
|
<button class="ui-corner-all TOOL_ppen_btn basket_window" title="{{ 'action : editer' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/ppen_history.gif"/>
|
<img src="/skins/prod/000000/images/ppen_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('changestatus') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('changestatus') %}
|
||||||
<button class="ui-corner-all TOOL_chgstatus_btn basket_window" title="{{ 'action : status' | trans }}">
|
<button class="ui-corner-all TOOL_chgstatus_btn basket_window" title="{{ 'action : status' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/chgstatus_history.gif"/>
|
<img src="/skins/prod/000000/images/chgstatus_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('deleterecord') and app['acl'].get(app['authentication'].getUser()).has_right('addrecord') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('deleterecord') and app['acl'].get(app['authentication'].getUser()).has_right('addrecord') %}
|
||||||
<button class="ui-corner-all TOOL_chgcoll_btn basket_window" title="{{ 'action : collection' | trans }}">
|
<button class="ui-corner-all TOOL_chgcoll_btn basket_window" title="{{ 'action : collection' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/chgcoll_history.gif"/>
|
<img src="/skins/prod/000000/images/chgcoll_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
@@ -50,7 +51,7 @@
|
|||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('doctools') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('doctools') %}
|
||||||
<button class="ui-corner-all TOOL_imgtools_btn basket_window" title="{{ 'action : outils' | trans }}">
|
<button class="ui-corner-all TOOL_imgtools_btn basket_window" title="{{ 'action : outils' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/imgtools_history.gif"/>
|
<img src="/skins/prod/000000/images/imgtools_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<button class="ui-corner-all TOOL_trash_btn basket_window" title="{{ 'action : supprimer' | trans }}">
|
<button class="ui-corner-all TOOL_trash_btn basket_window" title="{{ 'action : supprimer' | trans }}">
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
{% if basket.getId() == selected_id and selected_type == 'basket' %}active{% endif %}">
|
{% if basket.getId() == selected_id and selected_type == 'basket' %}active{% endif %}">
|
||||||
<a class="workzone-menu-title" href="{{ path('prod_baskets_basket', { 'basket' : basket.getId() }) }}">
|
<a class="workzone-menu-title" href="{{ path('prod_baskets_basket', { 'basket' : basket.getId() }) }}">
|
||||||
<span>
|
<span>
|
||||||
<!--img src='/skins/icons/basket.gif' title=''/-->
|
<img src='/skins/icons/basket.png' title=''/>
|
||||||
{{basket.getName()}}
|
{{basket.getName()}}
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
{% if basket.getId() == selected_id and selected_type == 'basket' %}active{% endif %}">
|
{% if basket.getId() == selected_id and selected_type == 'basket' %}active{% endif %}">
|
||||||
<a class="workzone-menu-title" href="{{ path('prod_baskets_basket', { 'basket' : basket.getId() }) }}" style="">
|
<a class="workzone-menu-title" href="{{ path('prod_baskets_basket', { 'basket' : basket.getId() }) }}" style="">
|
||||||
<span>
|
<span>
|
||||||
<!--img src='/skins/icons/basket.gif' title=''/-->
|
<img src='/skins/icons/basket.png' title=''/>
|
||||||
{{basket.getName()}}
|
{{basket.getName()}}
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
@@ -3,27 +3,27 @@
|
|||||||
<div class="tools">
|
<div class="tools">
|
||||||
|
|
||||||
<button class="ui-corner-all TOOL_disktt_btn story_window" title="{{ 'action : exporter' | trans }}">
|
<button class="ui-corner-all TOOL_disktt_btn story_window" title="{{ 'action : exporter' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/disktt_history.gif"/>
|
<img src="/skins/prod/000000/images/disktt_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
<button class="ui-corner-all TOOL_print_btn story_window" title="{{ 'action : print' | trans }}">
|
<button class="ui-corner-all TOOL_print_btn story_window" title="{{ 'action : print' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/print_history.gif"/>
|
<img src="/skins/prod/000000/images/print_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('modifyrecord') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('modifyrecord') %}
|
||||||
<button class="ui-corner-all TOOL_ppen_btn story_window" title="{{ 'action : editer' | trans }}">
|
<button class="ui-corner-all TOOL_ppen_btn story_window" title="{{ 'action : editer' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/ppen_history.gif"/>
|
<img src="/skins/prod/000000/images/ppen_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('changestatus') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('changestatus') %}
|
||||||
<button class="ui-corner-all TOOL_chgstatus_btn story_window" title="{{ 'action : status' | trans }}">
|
<button class="ui-corner-all TOOL_chgstatus_btn story_window" title="{{ 'action : status' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/chgstatus_history.gif"/>
|
<img src="/skins/prod/000000/images/chgstatus_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('deleterecord') and app['acl'].get(app['authentication'].getUser()).has_right('addrecord') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('deleterecord') and app['acl'].get(app['authentication'].getUser()).has_right('addrecord') %}
|
||||||
<button class="ui-corner-all TOOL_chgcoll_btn story_window" title="{{ 'action : collection' | trans }}">
|
<button class="ui-corner-all TOOL_chgcoll_btn story_window" title="{{ 'action : collection' | trans }}">
|
||||||
<img src="/skins/prod/000000/images/chgcoll_history.gif"/>
|
<img src="/skins/prod/000000/images/chgcoll_history.png"/>
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@@ -547,7 +547,7 @@
|
|||||||
<span class="dropdownButton">
|
<span class="dropdownButton">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button class="default_action TOOL_disktt_btn results_window btn btn-inverse">
|
<button class="default_action TOOL_disktt_btn results_window btn btn-inverse">
|
||||||
<img src="/skins/prod/000000/images/disktt_history.gif" height="16" width="16" /> {{ 'action : exporter' | trans }}
|
<img src="/skins/prod/000000/images/disktt_history.png" height="16" width="16" /> {{ 'action : exporter' | trans }}
|
||||||
</button>
|
</button>
|
||||||
<button class="trigger btn btn-inverse dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
|
<button class="trigger btn btn-inverse dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
@@ -566,7 +566,7 @@
|
|||||||
{% set label %}
|
{% set label %}
|
||||||
{{ 'action : editer' | trans }}
|
{{ 'action : editer' | trans }}
|
||||||
{% endset %}
|
{% endset %}
|
||||||
{% set actions = actions|merge( { 'edit' : {'icon': "/skins/prod/000000/images/ppen_history.gif", 'class':'TOOL_ppen_btn', 'label' : label} }) %}
|
{% set actions = actions|merge( { 'edit' : {'icon': "/skins/prod/000000/images/ppen_history.png", 'class':'TOOL_ppen_btn', 'label' : label} }) %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right('changestatus') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right('changestatus') %}
|
||||||
{% set label %}
|
{% set label %}
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
{% if app['acl'].get(app['authentication'].getUser()).has_right_on_base(record.get_base_id, 'canmodifrecord') %}
|
{% if app['acl'].get(app['authentication'].getUser()).has_right_on_base(record.get_base_id, 'canmodifrecord') %}
|
||||||
<div class="edit_button" style="text-align:right">
|
<div class="edit_button" style="text-align:right">
|
||||||
<a href="#" onclick="editThis('IMGT','{{record.get_serialize_key()}}');">
|
<a href="#" onclick="editThis('IMGT','{{record.get_serialize_key()}}');">
|
||||||
<img style="vertical-align:middle" src="/skins/prod/000000/images/ppen_history.gif" />
|
<img style="vertical-align:middle" src="/skins/prod/000000/images/ppen_history.png" />
|
||||||
{{ 'action : editer' | trans }}
|
{{ 'action : editer' | trans }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
BIN
www/skins/icons/basket.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
www/skins/icons/chgcoll_history.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
www/skins/icons/chgstatus_history.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 720 B After Width: | Height: | Size: 2.3 KiB |
BIN
www/skins/icons/disktt_history.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
www/skins/icons/imgtools_history.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
www/skins/icons/ppen_history.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
www/skins/icons/print_history.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 947 B After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 439 B After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.8 KiB |
BIN
www/skins/prod/000000/images/chgcoll_history.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
www/skins/prod/000000/images/chgstatus_history.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
www/skins/prod/000000/images/delete.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
www/skins/prod/000000/images/disktt_history.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
www/skins/prod/000000/images/imgtools_history.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
www/skins/prod/000000/images/ppen_history.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
www/skins/prod/000000/images/print_history.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
www/skins/prod/000000/images/push16.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
www/skins/prod/000000/images/rss16.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
@@ -187,7 +187,7 @@ span.ww_winTitle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#idFrameC .wrapper {
|
#idFrameC .wrapper {
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -237,7 +237,7 @@ span.ww_winTitle {
|
|||||||
width: auto;
|
width: auto;
|
||||||
height: 81px;
|
height: 81px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -254,13 +254,14 @@ span.ww_winTitle {
|
|||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#idFrameC .ui-tabs .ui-tabs-nav li {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#idFrameC .ui-tabs .ui-tabs-nav li a {
|
#idFrameC .ui-tabs .ui-tabs-nav li a {
|
||||||
padding: 5px;
|
padding: 0;
|
||||||
margin: 5px;
|
margin: 0;
|
||||||
border-radius: 4px;
|
border-radius: 0;
|
||||||
-moz-border-radius: 4px;
|
|
||||||
-webkit-border-radius: 4px;
|
|
||||||
margin:8px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#idFrameC .ui-tabs .ui-tabs-nav li a.escamote {
|
#idFrameC .ui-tabs .ui-tabs-nav li a.escamote {
|
||||||
@@ -273,6 +274,7 @@ span.ww_winTitle {
|
|||||||
|
|
||||||
#idFrameC .ui-tabs .ui-tabs-nav li.ui-state-active a {
|
#idFrameC .ui-tabs .ui-tabs-nav li.ui-state-active a {
|
||||||
background-color: #666666;
|
background-color: #666666;
|
||||||
|
border-bottom: 3px solid #076882;
|
||||||
}
|
}
|
||||||
|
|
||||||
#idFrameC ul.icon-menu {
|
#idFrameC ul.icon-menu {
|
||||||
@@ -283,22 +285,26 @@ span.ww_winTitle {
|
|||||||
display: block;
|
display: block;
|
||||||
background-image: url("/skins/icons/workzone32.png");
|
background-image: url("/skins/icons/workzone32.png");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 8px 5px;
|
background-position: 18px 18px;
|
||||||
width: 54px;
|
width: 91px;
|
||||||
height: 32px;
|
height: 78px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#idFrameC .icon-menu .WZtabs {
|
#idFrameC .icon-menu .WZtabs {
|
||||||
display: block;
|
display: block;
|
||||||
width: 32px;
|
width: 91px;
|
||||||
height: 32px;
|
height: 78px;
|
||||||
|
line-height: 78px;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#basket_menu_trigger {
|
#basket_menu_trigger {
|
||||||
padding: 7px 3px;
|
padding: 34px 9px 0 0;
|
||||||
float: right;
|
float: right;
|
||||||
font-size: 12px;
|
font-size: 9px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#idFrameC.closed .icon-menu li {
|
#idFrameC.closed .icon-menu li {
|
||||||
@@ -315,11 +321,6 @@ span.ww_winTitle {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#idFrameC li.proposals_WZ.active img.proposals_on,
|
|
||||||
#idFrameC li.proposals_WZ img.proposals_off {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ui-tabs .ui-tabs-nav li a {
|
.ui-tabs .ui-tabs-nav li a {
|
||||||
padding: 10px 8px;
|
padding: 10px 8px;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
@@ -343,7 +344,7 @@ span.ww_winTitle {
|
|||||||
display: block;
|
display: block;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-tabs .ui-tabs-panel.tabBox {
|
.ui-tabs .ui-tabs-panel.tabBox {
|
||||||
@@ -424,7 +425,7 @@ span.ww_winTitle {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
line-height: 44px;
|
line-height: 44px;
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
border-top: 1px solid #000;
|
border-top: 1px solid #000;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
@@ -710,20 +711,37 @@ div.diapo {
|
|||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
font-size:10px;
|
font-size:10px;
|
||||||
z-index:100;
|
z-index:100;
|
||||||
height:45px;
|
height:45px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#idFrameC .tools {
|
||||||
|
text-align: left !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idFrameC .tools label {
|
||||||
|
display: inline;
|
||||||
|
margin: 0 15px 0 0;
|
||||||
|
float: left;
|
||||||
|
font-size: 11px;
|
||||||
|
color: #7f7f7f;
|
||||||
|
line-height: 22px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
#idFrameT .tools .classicButton button.btn,
|
#idFrameT .tools .classicButton button.btn,
|
||||||
#idFrameT .tools .dropdownButton {
|
#idFrameT .tools .dropdownButton {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#idFrameT .tools:first-child .btn-group {
|
||||||
|
border-left: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
#idFrameT .tools .btn-group {
|
#idFrameT .tools .btn-group {
|
||||||
float: left;
|
float: left;
|
||||||
border-right: 1px solid #000;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#idFrameT .tools .classicButton button.btn,
|
#idFrameT .tools .classicButton button.btn,
|
||||||
@@ -751,7 +769,7 @@ div.diapo {
|
|||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
*/
|
*/
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 45px;
|
height: 45px;
|
||||||
@@ -1060,8 +1078,9 @@ div.diapo {
|
|||||||
|
|
||||||
#baskets .SSTT img {
|
#baskets .SSTT img {
|
||||||
max-height: 18px;
|
max-height: 18px;
|
||||||
vertical-align: top;
|
vertical-align: middle;
|
||||||
cursor: help;
|
cursor: help;
|
||||||
|
margin-right: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#baskets .SSTT.grouping.active {
|
#baskets .SSTT.grouping.active {
|
||||||
@@ -1832,7 +1851,7 @@ H4 {
|
|||||||
|
|
||||||
.bodyprofile .ui-tabs .ui-tabs-panel {
|
.bodyprofile .ui-tabs .ui-tabs-panel {
|
||||||
background-color: #a3a3a3;
|
background-color: #a3a3a3;
|
||||||
color: #333333;
|
color: #3b3b3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bodyprofile .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
.bodyprofile .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
||||||
@@ -2766,7 +2785,7 @@ DIV.thesaurus U.w {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#mainMenu, .publi_group {
|
#mainMenu, .publi_group {
|
||||||
background-color: #333333;
|
background-color: #3b3b3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.context-menu-item a {
|
.context-menu-item a {
|
||||||
@@ -4023,7 +4042,7 @@ dans l'onglet thesaurus : arbres, menus contextuels
|
|||||||
#uploadBox .well {
|
#uploadBox .well {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.5%;
|
padding: 0.5%;
|
||||||
color: #333333;
|
color: #3b3b3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
#uploadBox #fileupload {
|
#uploadBox #fileupload {
|
||||||
@@ -4274,7 +4293,7 @@ dans l'onglet thesaurus : arbres, menus contextuels
|
|||||||
#lazaretBox .lazaret-file a,
|
#lazaretBox .lazaret-file a,
|
||||||
#lazaretBox .lazaret-proposals a {
|
#lazaretBox .lazaret-proposals a {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #333333;
|
color: #3b3b3b;
|
||||||
}
|
}
|
||||||
|
|
||||||
#lazaretBox .lazaret-file a:hover,
|
#lazaretBox .lazaret-file a:hover,
|
||||||
|