'
+ extra
- + ''
+ + ''
+ word
+ " | "
+ ' '
@@ -1068,7 +1067,21 @@ function check_required(id_r, id_f)
}
else
{
- var check_required = $.trim(p4.edit.T_records[r].fields[f].getSerializedValues());
+
+ var check_required = '';
+
+ // le champ existe dans la fiche
+ if(p4.edit.T_fields[f].multi)
+ {
+ // champ multi : on compare la concat des valeurs
+ check_required = $.trim(p4.edit.T_records[r].fields[f].getSerializedValues())
+ }
+ else if(p4.edit.T_records[r].fields[f].getValue())
+ {
+ check_required = $.trim(p4.edit.T_records[r].fields[f].getValue().getValue());
+ }
+
+
if(check_required == '')
{
elem.show();
diff --git a/www/prod/page0.js b/www/prod/page0.js
index 57b01602af..d397efa4bd 100644
--- a/www/prod/page0.js
+++ b/www/prod/page0.js
@@ -307,7 +307,7 @@ function resize(){
if(p4.preview.open)
resizePreview();
$('#idFrameC').resizable('option', 'maxWidth',(bodySize.x-670));
- $('#idFrameC').resizable('option', 'minWidth',200);
+ $('#idFrameC').resizable('option', 'minWidth',265);
$('#idFrameE').resizable('option', 'maxWidth',($('#EDITWINDOW').innerWidth()-200));
$('#idFrameE').resizable('option', 'minWidth',200);
@@ -320,7 +320,6 @@ function resize(){
function clearAnswers(){
$('#formAnswerPage').val('');
- $('#searchForm input[name="sel"]').val('');
$('#searchForm input[name="nba"]').val('');
$('#answers, #dyn_tool').empty();
}
@@ -346,6 +345,7 @@ function newSearch()
{
console.log('Fresh new search, cache empty');
}
+ p4.Results.Selection.empty()
clearAnswers();
var val = $('#searchForm input[name="qry"]').val();
@@ -358,7 +358,8 @@ function newSearch()
{
$('li:last',histo).remove();
}
- $('.activeproposals').hide();
+
+ $('#idFrameC li.proposals_WZ').removeClass('active');
$('#searchForm').submit();
return false;
@@ -475,16 +476,19 @@ function initAnswerForm(){
success: function(datas){
-
$('#answers').empty().append(datas.results).removeClass('loading');
$('#tool_results').empty().append(datas.infos);
$('#tool_navigate').empty().append(datas.navigation);
+ $.each(p4.Results.Selection.get(), function(i, el){
+ $('#IMGT_' + el).addClass('selected');
+ });
+
$('#proposals').empty().append(datas.phrasea_props);
if($.trim(datas.phrasea_props) !== '')
{
- $('.activeproposals').show()
+ $('#idFrameC li.proposals_WZ').addClass('active');
}
p4.tot = datas.total_answers;
p4.tot_options = datas.form;
@@ -711,7 +715,7 @@ function activeZoning()
}
$('#EDIT_query').blur();
});
-
+ $('#rightFrame').trigger('mousedown');
}
function RGBtoHex(R,G,B) {
@@ -1062,8 +1066,8 @@ $(document).ready(function(){
saveWindows();
return;
}
- if(nwidth<185)
- nwidth = 185;
+ if(nwidth<265)
+ nwidth = 265;
if(el.find('span:first').hasClass('valid') && nwidth<410)
nwidth = 410;
@@ -1081,6 +1085,10 @@ $(document).ready(function(){
}
});
+ $('#idFrameC .escamote').bind('click', function(){
+ p4.WorkZone.close();
+ });
+
$('#look_box .tabs').tabs();
resize();
@@ -1149,7 +1157,6 @@ $(document).ready(function(){
initAnswerForm();
initLook();
- afterSearch();
setTimeout("sessionactive();", 30000);
@@ -1394,6 +1401,9 @@ $(document).ready(function(){
{
if(ui.tab.hash=="#thesaurus_tab")
thesau_show();
+ },
+ select: function(event, ui){
+ p4.WorkZone.open();
}
});
@@ -2250,9 +2260,9 @@ function activeIcons()
}
}
}
- if(value !== '' || sstt_id !== '')
+ if(value !== '' || sstt_id !== '' || story !== '')
{
- feedbackThis(sstt_id, value);
+ feedbackThis(sstt_id, value, story);
}
else
{
@@ -2580,10 +2590,10 @@ function evt_print(value)
printThis("lst="+value);
}
-function evt_add_in_chutier(a,b,event,el)
+function evt_add_in_chutier(sbas_id, record_id,event, singleSelection)
{
- if($('#baskets .SSTT.active').length == 1)
- dropOnBask(event,$('#PREV_BASKADD_'+a+'_'+b),$('#baskets .SSTT.active'));
+ var singleSelection = singleSelection || false;
+ p4.WorkZone.addElementToBasket(sbas_id, record_id, event, singleSelection);
}
@@ -2647,7 +2657,8 @@ function doDelete(lst)
$.each(data,function(i,n){
var imgt = $('#IMGT_'+n),
- chim = $('.CHIM_'+n);
+ chim = $('.CHIM_'+n),
+ stories = $('.STORY_'+n);
$('.doc_infos', imgt).remove();
imgt.unbind("click").removeAttr("ondblclick").removeClass("selected").draggable("destroy").removeClass("IMGT").find("img").unbind();
imgt.find(".thumb img").attr("src","/skins/icons/deleted.png").css({
@@ -2658,7 +2669,14 @@ function doDelete(lst)
imgt.find(".status,.title,.bottom").empty();
p4.Results.Selection.remove(n);
- p4.WorkZone.Selection.remove(n);
+ if(stories.length > 0)
+ {
+ p4.WorkZone.refresh();
+ }
+ else
+ {
+ p4.WorkZone.Selection.remove(n);
+ }
});
viewNbSelect();
}
diff --git a/www/report/report.js b/www/report/report.js
index 4a0d2bb741..9f03cfa7d2 100644
--- a/www/report/report.js
+++ b/www/report/report.js
@@ -134,7 +134,7 @@ function dashboardDatePicker()
numberOfMonths: 3,
maxDate: "-0d",
onSelect: function(selectedDate) {
- id = $(".selected_em").attr('id').substr(3);
+ var id = $(".selected_em").attr('id').substr(3);
changeDash(id);
$('.btn-slide').trigger('click');
}
@@ -147,8 +147,8 @@ function hideMenu()
$('.hided').hide();
$(".showed").show();
$(".form").slideToggle("slow", function(){
- bodySize.y = $('#mainContainer').height();
- $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top));
+ bodySize.y = $(document).height();
+ $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top - 30));
});
}
@@ -158,8 +158,8 @@ function showMenu()
$('.showed').hide();
$(".hided").show();
$(".form").slideToggle("slow", function(){
- bodySize.y = $('#mainContainer').height();
- $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top));
+ bodySize.y = $(document).height();
+ $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top - 30));
});
}
diff --git a/www/skins/icons/proposition_off32.png b/www/skins/icons/proposition_off32.png
new file mode 100644
index 0000000000..155bd34695
Binary files /dev/null and b/www/skins/icons/proposition_off32.png differ
diff --git a/www/skins/icons/proposition_on32.png b/www/skins/icons/proposition_on32.png
new file mode 100644
index 0000000000..4f4e328a1c
Binary files /dev/null and b/www/skins/icons/proposition_on32.png differ
diff --git a/www/skins/icons/thesaurus_32.png b/www/skins/icons/thesaurus_32.png
new file mode 100644
index 0000000000..f20dc6378c
Binary files /dev/null and b/www/skins/icons/thesaurus_32.png differ
diff --git a/www/skins/icons/titre16.png b/www/skins/icons/titre16.png
new file mode 100644
index 0000000000..a7c53b127f
Binary files /dev/null and b/www/skins/icons/titre16.png differ
diff --git a/www/skins/icons/user_details_off.png b/www/skins/icons/user_details_off.png
new file mode 100644
index 0000000000..ecceac1fe5
Binary files /dev/null and b/www/skins/icons/user_details_off.png differ
diff --git a/www/skins/icons/user_details_on.png b/www/skins/icons/user_details_on.png
new file mode 100644
index 0000000000..8d92d1c0aa
Binary files /dev/null and b/www/skins/icons/user_details_on.png differ
diff --git a/www/skins/icons/workzone32.png b/www/skins/icons/workzone32.png
new file mode 100644
index 0000000000..3f353d1018
Binary files /dev/null and b/www/skins/icons/workzone32.png differ
diff --git a/www/skins/icons/workzoneEscamote.png b/www/skins/icons/workzoneEscamote.png
new file mode 100644
index 0000000000..0f467f31c3
Binary files /dev/null and b/www/skins/icons/workzoneEscamote.png differ
diff --git a/www/skins/lightbox/jquery.lightbox.ie6.js b/www/skins/lightbox/jquery.lightbox.ie6.js
index 5a4540efb6..917dd11318 100644
--- a/www/skins/lightbox/jquery.lightbox.ie6.js
+++ b/www/skins/lightbox/jquery.lightbox.ie6.js
@@ -187,7 +187,11 @@ function set_release(el)
{
alert(data.datas);
}
-
+ if(!data.error)
+ {
+ p4.releasable = false;
+ }
+
return;
}
});
diff --git a/www/skins/lightbox/jquery.lightbox.js b/www/skins/lightbox/jquery.lightbox.js
index 114fa50fa3..c3ed51e9f9 100644
--- a/www/skins/lightbox/jquery.lightbox.js
+++ b/www/skins/lightbox/jquery.lightbox.js
@@ -221,6 +221,10 @@ function set_release(el)
{
alert(data.datas);
}
+ if(!data.error)
+ {
+ p4.releasable = false;
+ }
return;
}
diff --git a/www/skins/prod/000000/prodcolor.css b/www/skins/prod/000000/prodcolor.css
index 18e7e7bd8a..51eed417d7 100644
--- a/www/skins/prod/000000/prodcolor.css
+++ b/www/skins/prod/000000/prodcolor.css
@@ -196,6 +196,39 @@ span.ww_winTitle{
border:none;
overflow:hidden;
}
+
+#idFrameC .ui-tabs .ui-tabs-nav li{
+ height:52px;
+ float:left;
+}
+
+#idFrameC .ui-tabs .ui-tabs-nav li a{
+ padding:5px;
+ margin:5px;
+}
+
+#idFrameC.closed .icon-menu li{
+ clear:left;
+}
+
+#idFrameC .ui-tabs .ui-tabs-nav li.ui-state-active a{
+ background-color:#666666;
+}
+#idFrameC.closed .ui-tabs-panel,
+#idFrameC.closed .ui-resizable-handle{
+ display:none;
+}
+
+#idFrameC li.proposals_WZ.active img.proposals_off,
+#idFrameC li.proposals_WZ img.proposals_on{
+ 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.ui-tabs-selected
{
background-color:#404040;
@@ -452,9 +485,9 @@ span.ww_winTitle{
div.diapo
{
position:relative;
- float:none;
+/* float:none;*/
float:left;
- display:inline-block;
+/* display:inline-block;*/
display:block;
border:1px solid #404040;
-moz-border-radius:4px;
@@ -508,8 +541,22 @@ div.diapo
}
#idFrameT .tools .verticalbuttonset {
- position:relative;
+ position:relative;
}
+
+
+#idFrameT .tools .verticalbuttonset button img{
+ height:15px;
+}
+
+#idFrameT .tools .verticalbuttonset button{
+ height:28px;
+}
+
+#idFrameT .tools .verticalbuttonset span{
+ display:inline-block;
+}
+
#idFrameT .tools .verticalbuttonset .ui-button-text img,#idFrameT .buttonset img{
vertical-align:top;
}
@@ -532,10 +579,16 @@ div.diapo
#idFrameT .tools .verticalbuttonset .submenu{
position: absolute;
- top:1.5em;
+ top:28px;
left:0;
z-index:30;
}
+
+/* hack all except ie 6, 7 , 8 */
+:root *> #idFrameT .tools .verticalbuttonset .submenu{
+ top:1.5em;
+}
+
#idFrameT .tools .verticalbuttonset .ui-state-default{
border: 1px solid #515151;
}
@@ -1592,8 +1645,7 @@ BOITES MODALES
#sbasfiltercont
{
color:#FFFFFF;
- padding:10px;
- margin:10px;
+ margin: 0 0 0 10px;
}
#adv_search .sbasglob div hr
{
@@ -2161,7 +2213,7 @@ EDITING
BORDER: #666666 1px solid;
BACKGROUND-COLOR: #666666;
}*/
-#idFrameE #ZTextMultiValued_values
+#ZTextMultiValued_values
{
background-color:#444444;
border:1px solid #999999;
@@ -2170,13 +2222,14 @@ EDITING
left:4px;
right:4px;
bottom:4px;
- overflow:auto;
+ overflow-x:auto;
+ overflow-y:scroll;
}
#idFrameE #ZTextMultiValued_values div
{
cursor:pointer;
height:20px;
- padding:2px;
+ padding:2px 14px 2px 2px;
}
#idFrameE #ZTextMultiValued_values div table
{
@@ -2806,6 +2859,7 @@ dans l'onglet thesaurus : arbres, menus contextuels
margin:0 0 30px;
padding:10px;
border:2px solid #212121;
+ float:left;
}
#answers .feed .entry.hover{
border:2px solid #404040;
@@ -2836,11 +2890,6 @@ dans l'onglet thesaurus : arbres, menus contextuels
background-position: center bottom;
}
-#answers .feed .contents .diapo
-{
- float:none;
- display:inline-block;
-}
#answers .feed .contents
{
@@ -3182,3 +3231,7 @@ dans l'onglet thesaurus : arbres, menus contextuels
border:1px dotted #CCCCCC;
z-index:10000;
}
+
+#BasketBrowser .diapo .title{
+ height:16px;
+}
diff --git a/www/skins/prod/959595/prodcolor.css b/www/skins/prod/959595/prodcolor.css
index e0f2d8bf36..05ade9667f 100644
--- a/www/skins/prod/959595/prodcolor.css
+++ b/www/skins/prod/959595/prodcolor.css
@@ -196,6 +196,39 @@ span.ww_winTitle{
border:none;
overflow:hidden;
}
+
+#idFrameC .ui-tabs .ui-tabs-nav li{
+ height:52px;
+ float:left;
+}
+
+#idFrameC .ui-tabs .ui-tabs-nav li a{
+ padding:5px;
+ margin:5px;
+}
+
+#idFrameC.closed .icon-menu li{
+ clear:left;
+}
+
+#idFrameC .ui-tabs .ui-tabs-nav li.ui-state-active a{
+ background-color:#666666;
+}
+#idFrameC.closed .ui-tabs-panel,
+#idFrameC.closed .ui-resizable-handle{
+ display:none;
+}
+
+#idFrameC li.proposals_WZ.active img.proposals_off,
+#idFrameC li.proposals_WZ img.proposals_on{
+ 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.ui-tabs-selected
{
background-color:#B1B1B1;
@@ -512,6 +545,19 @@ div.diapo
#idFrameT .tools .verticalbuttonset {
position:relative;
}
+
+#idFrameT .tools .verticalbuttonset button img{
+ height:15px;
+}
+
+#idFrameT .tools .verticalbuttonset button{
+ height:28px;
+}
+
+#idFrameT .tools .verticalbuttonset span{
+ display:inline-block;
+}
+
#idFrameT .tools .verticalbuttonset .ui-button-text img,#idFrameT .buttonset img{
vertical-align:top;
}
@@ -531,13 +577,18 @@ div.diapo
background-color: #212121;
}
-
#idFrameT .tools .verticalbuttonset .submenu{
position: absolute;
- top:1.5em;
+ top:28px;
left:0;
z-index:30;
}
+
+/* hack all except ie 6, 7 , 8 */
+:root *> #idFrameT .tools .verticalbuttonset .submenu{
+ top:1.5em;
+}
+
#idFrameT .tools .verticalbuttonset .ui-state-default{
border: 1px solid #515151;
}
@@ -1596,8 +1647,7 @@ BOITES MODALES
#sbasfiltercont
{
color:#FFFFFF;
- padding:10px;
- margin:10px;
+ margin: 0 0 0 10px;
}
#adv_search .sbasglob div hr
{
@@ -2165,7 +2215,7 @@ EDITING
BORDER: #666666 1px solid;
BACKGROUND-COLOR: #666666;
}*/
-#idFrameE #ZTextMultiValued_values
+#ZTextMultiValued_values
{
background-color:#FFFFFF;
border:1px solid #999999;
@@ -2174,13 +2224,14 @@ EDITING
left:4px;
right:4px;
bottom:4px;
- overflow:auto;
+ overflow-x:auto;
+ overflow-y:scroll;
}
#idFrameE #ZTextMultiValued_values div
{
cursor:pointer;
height:20px;
- padding:2px;
+ padding:2px 14px 2px 2px;
}
#idFrameE #ZTextMultiValued_values div table
{
@@ -3192,3 +3243,7 @@ dans l'onglet thesaurus : arbres, menus contextuels
border:1px dotted #CCCCCC;
z-index:10000;
}
+
+#BasketBrowser .diapo .title{
+ height:16px;
+}
\ No newline at end of file
diff --git a/www/skins/prod/Push.css b/www/skins/prod/Push.css
index f7637da16b..6672257f1b 100644
--- a/www/skins/prod/Push.css
+++ b/www/skins/prod/Push.css
@@ -11,6 +11,7 @@
text-align: center;
margin:5px 0;
font-weight:bold;
+ font-size:16px;
}
.PushBox .LeftColumn ul{
@@ -39,11 +40,25 @@
.PushBox .user_content .header{
height:35px;
bottom:auto;
+ right:50px;
+}
+
+.PushBox .user_content .footer{
+ height:35px;
+ top:auto;
+ text-align:right;
+ left:10px;
+ right:50px;
+ bottom:10px;
}
.PushBox .user_content .badges{
- top:35px;
+ top:50px;
overflow:auto;
+ height:auto;
+ bottom:50px;
+ left:20px;
+ right:20px;
}
.PushBox .user_content .badges .badge .deleter{
@@ -58,6 +73,7 @@
display:inline-block;
background-color: #515150;
border:3px solid #515150;
+ padding:3px;
}
.PushBox .user_content .badges .badge.selected{
border:3px solid #EFEFEF;
@@ -74,10 +90,28 @@
vertical-align: top;
}
+.PushBox .user_content .badges .badge td.toggle{
+ vertical-align: bottom;
+}
+
.PushBox .user_content .badges .badge .icon{
width:80px;
background-color:#404040;
}
+
+.PushBox .user_content .badges .badge .infos{
+ padding-top:3px;
+ padding-left:5px;
+}
+
+.PushBox .user_content .badges .badge table{
+ width:95%;
+}
+
+.PushBox .user_content .badges .badge .infos table{
+ height:75px;
+}
+
.PushBox .user_content .badges .badge .infos tr{
height:20px;
}
@@ -91,6 +125,18 @@
margin:7px;
}
+.PushBox .user_content .badges .badge .name{
+ font-weight:bold;
+ white-space:pre-line;
+ display:block;
+ font-size:12px;
+}
+
+.PushBox .user_content .badges .badge .subtite{
+ display:block;
+ font-size:10px;
+}
+
.PushBox .user_content .header .options{
text-align: right;
}
@@ -100,9 +146,30 @@
overflow:auto;
}
-.PushBox .lists .list.selected{
- background-color: #515151;
+
+.PushBox .LeftColumn .content ul.list li:nth-child(odd){
+ background-color: none;
}
+.PushBox .LeftColumn .content ul.list li:nth-child(even){
+ background-color: #515150;
+}
+
+.PushBox .lists ul li:nth-child(odd){
+ background-color: none;
+}
+
+.PushBox .lists ul li:nth-child(even){
+ background-color: #515150;
+}
+
+.PushBox .LeftColumn .content ul.list li.selected{
+ background-color: #AAA;
+}
+
+.PushBox .lists .list.selected{
+ background-color: #AAA;
+}
+
.PushBox .lists .list{
padding:3px 0;
}
@@ -213,10 +280,109 @@
width:250px;
display:inline-block;
margin:5px;
+ background-color: #515150;
+ padding:5px;
}
+
+#ListManager .content.readonly .badge .deleter{
+ float:right;
+}
+
+
+#ListManager .content.readonly .badge table{
+ width:auto;
+ table-layout: fixed;
+}
+
+#ListManager .content.readonly .badge .infos{
+ padding:2px;
+}
+
#ListManager h1 span.title{
font-size:24px;
line-height:24px;
font-weight:bold;
vertical-align:middle;
-}
\ No newline at end of file
+}
+
+#PushBox .general_togglers li {
+ margin-top:5px;
+}
+
+#PushBox .general_togglers button{
+ width:100%;
+}
+
+
+#PushBox .general_togglers button .ui-button-text{
+ font-weight: lighter;
+}
+
+
+#PushBox .content .list_saver{
+ padding-top:20px;
+ padding-bottom:20px;
+ display:block;
+}
+
+#PushBox .content .list_saver table{
+ width:100%;
+ table-layout: auto;
+}
+
+#PushBox .content .list_saver table tr{
+ border:1px solid #ccc;
+}
+
+#PushBox .content .list_saver input{
+ padding:3px;
+ width:115px;
+ margin:0;
+}
+
+#PushBox .content .list_saver button{
+}
+
+#find-user{
+ line-height: 15px;
+}
+
+#ListManager .content .lists span.action{
+ display:block;
+ text-align:center;
+ font-weight: bold;
+ width:100%;
+}
+
+#recommanded-users{
+ margin-top:25px;
+ line-height:15px;
+}
+
+#recommanded-users a:last-child{
+ color: #1983CB;
+ text-decoration: none;
+}
+
+#QuickAddUser table{
+ width:100%;
+ table-layout:auto;
+}
+
+#QuickAddUser table tr td{
+ padding: 5px;
+}
+
+#QuickAddUser table td:last-child{
+ text-align: left;
+}
+
+#QuickAddUser input{
+ border: 1px solid #CCCCCC;
+ border-radius: 4px 4px 4px 4px;
+ box-shadow: 0 1px 1px #EEEEEE;
+ display: inline-block;
+ margin: 0 5px 0 0;
+ padding: 4px;
+ width: 95%;
+}
diff --git a/www/skins/report/report-table.css b/www/skins/report/report-table.css
index 47e5c349e3..d9a7657ed0 100644
--- a/www/skins/report/report-table.css
+++ b/www/skins/report/report-table.css
@@ -60,6 +60,11 @@ iframe{
font-weight:bolder;
}
+.report_form fieldset{
+ margin:0;
+ padding:0;
+}
+
.curfilter{
font-size:12px;
color:#333;
@@ -84,11 +89,17 @@ iframe{
margin-top:50px;
}
+.horizontal-scroller{
+ position:relative;
+ top:0;
+ left:0;
+}
+
#mainTabs{
border:none;
}
.answers{
- background-color:#555555;
+ background-color:#F6F2F1;
}
.report-table tr.odd{
background-color:#CDCDCD;
@@ -165,6 +176,9 @@ iframe{
vertical-align: 4px;
text-align:center;
color: #202020;
+ min-width:50px;
+ width:auto;
+ white-space: nowrap;
}
.report-table thead th {
text-align: center;
@@ -173,6 +187,9 @@ iframe{
border-bottom: 3px solid #f6f2f1;
border-top:3px solid #f6f2f1;
background-color:#FF9000;
+ min-width:50px;
+ width:auto;
+ white-space: nowrap;
}
.report-table tfoot td {
background-color:#FF9000;
@@ -418,7 +435,7 @@ table.tablesorter tr th.SortDown {
}
.onload{
- background-image:url(ajax-loader2.gif);
+ background-image:url(ajax-loader.gif);
background-position:center center;
background-repeat:no-repeat;
}
diff --git a/www/skins/setup/setup.css b/www/skins/setup/setup.css
index ba4a9ec234..7dedae522d 100644
--- a/www/skins/setup/setup.css
+++ b/www/skins/setup/setup.css
@@ -109,6 +109,23 @@ input,select{
height:100%;
vertical-align:middle;
}
+p.error {
+ font-weight: bold;
+ padding-top:5px;
+ padding-bottom:5px;
+ vertical-align: center;
+ border:1px dotted #EA1919;
+ padding-left:20px;
+ background: url("/skins/icons/delete.png") no-repeat left center;
+}
+
+.main_content_wrapper td .warning{
+ vertical-align:middle;
+ padding-left:20px;
+ padding-top:5px;
+ padding-bottom:5px;
+ background: url('/skins/icons/alert.png') no-repeat left center;
+}
.section_title{
height:30px;
diff --git a/www/upload/css/default.css b/www/upload/css/default.css
index 71fbc6b968..02be53375f 100755
--- a/www/upload/css/default.css
+++ b/www/upload/css/default.css
@@ -5,8 +5,8 @@
----------------------------------------------- */
-/* -----------------------------------------------
- GLOBAL RESET
+/* -----------------------------------------------
+ GLOBAL RESET
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
@@ -35,8 +35,8 @@ body {
color: black;
background: white;
}
-ol, ul {
- list-style: none;
+ol, ul {
+ list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
@@ -48,7 +48,7 @@ caption, th, td {
font-weight: normal;
}
blockquote:before, blockquote:after,
-q:before, q:after {
+q:before, q:after {
content: "";
}
blockquote, q {
@@ -56,13 +56,13 @@ blockquote, q {
}
-/* -----------------------------------------------
+/* -----------------------------------------------
BASIC ELEMENTS
----------------------------------------------- */
-
-
+
+
/* -- Text Styles ------------------------------- */
-html,
+html,
body {
margin: 0;
padding: 0;
@@ -70,9 +70,9 @@ body {
font: 12px/1.4em Helvetica, Arial, sans-serif;
}
-a {
- color: #385ea2;
- text-decoration: none;
+a {
+ color: #385ea2;
+ text-decoration: none;
}
a:hover { text-decoration: underline; }
@@ -91,24 +91,24 @@ h1 a{
text-decoration: none;
}
-h2 {
- font-size: 22px;
+h2 {
+ font-size: 22px;
font-weight: 300;
padding-top: 1em;
padding-bottom: .25em;
}
-p {
+p {
margin-top: .25em;
margin-bottom: .5em;
}
ul { padding: 4px 5px; }
-ul li {
- /*padding: 4px 5px;*/
+ul li {
+ /*padding: 4px 5px;*/
margin: 0 3px;
- list-style:square;
+ list-style:square;
}
code {
@@ -132,7 +132,7 @@ code {
height: 125px;
position: relative;
}
- #logo {
+ #logo {
padding: 0;
margin: 0;
background: url(../images/logo.gif) no-repeat 20px 20px;
@@ -150,7 +150,7 @@ code {
height: 106px;
width: 272px;
}
-
+
#version {
color: #fff;
position: absolute;
@@ -166,7 +166,7 @@ code {
/* -- Form Styles ------------------------------- */
-form {
+form {
margin: 0;
padding: 0;
}
@@ -206,8 +206,8 @@ div.flash {
button,
input,
select,
-textarea {
- border-width: 1px;
+textarea {
+ border-width: 1px;
margin-bottom: 10px;
padding: 2px 3px;
}
@@ -217,7 +217,7 @@ textarea {
input[disabled]{ border: 1px solid #ccc } /* FF 2 Fix */
-label {
+label {
color:white;
}
@@ -276,6 +276,8 @@ td {
.progressName {
font-size: 8pt;
+ line-height: 14px;
+ vertical-align: top;
font-weight: 700;
/* color: #555;*/
width: 323px;
@@ -348,11 +350,11 @@ a.progressCancel:hover {
#fsUploadProgress { list-style-type: none; margin: 0; padding: 0; width: 60%; }
#fsUploadProgress li { width : 310px; margin: 0 3px; xpadding: 0.4em; xpadding-left: 1.5em; font-size: 1.4em; xheight: 18px; }
#fsUploadProgress li div { xposition: absolute; xmargin-left: -1.3em; } .ui-state-highlight { height: 50px; line-height: 1.2em;list-style-type:none; }
-
-
-
-
-
+
+
+
+
+
td.active{
color:white;
}
|