right click menu for project management app
This commit is contained in:
parent
31e39bac0d
commit
d9bb7bbbf7
5 changed files with 2543 additions and 0 deletions
1254
www/extras/wobject/ProjectManager/jsdomenu.js
Normal file
1254
www/extras/wobject/ProjectManager/jsdomenu.js
Normal file
File diff suppressed because it is too large
Load diff
32
www/extras/wobject/ProjectManager/locale_EN.js
Normal file
32
www/extras/wobject/ProjectManager/locale_EN.js
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*****************************************************************
|
||||||
|
Page : locale_EN.js
|
||||||
|
Description : text for english version
|
||||||
|
Date : 20/04/05
|
||||||
|
Authors:Alessandro Viganò (avigano@Movinfo.it) / Filippo Zanardo (fzanardo@MOViNFO.it)
|
||||||
|
Copyright (C) 2005-2006 MOViNFO
|
||||||
|
|
||||||
|
MovTable is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
MovTable is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
******************************************************************/
|
||||||
|
|
||||||
|
var getTextStrings= new Array()
|
||||||
|
getTextStrings["Nascondi Colonna"]="Hide Column"
|
||||||
|
getTextStrings["Mostra Colonne"]="Show Columns"
|
||||||
|
getTextStrings["Tutte"]="All"
|
||||||
|
getTextStrings["Filtro in base a selezione"]="Filter by selection"
|
||||||
|
getTextStrings["Filtro ad esclusione selezione"]="Filter out selection"
|
||||||
|
getTextStrings["Rimuovi filtro"]="Remove Filter"
|
||||||
|
getTextStrings["Ordinamento crescente"]="Ascending Order"
|
||||||
|
getTextStrings["Ordinamento decrescente"]="Descending order"
|
||||||
|
getTextStrings["Copia"]="Copy"
|
||||||
1056
www/extras/wobject/ProjectManager/movtableInc.js
Normal file
1056
www/extras/wobject/ProjectManager/movtableInc.js
Normal file
File diff suppressed because it is too large
Load diff
186
www/extras/wobject/ProjectManager/office_xp.css
Normal file
186
www/extras/wobject/ProjectManager/office_xp.css
Normal file
|
|
@ -0,0 +1,186 @@
|
||||||
|
/*
|
||||||
|
Menu related selectors
|
||||||
|
*/
|
||||||
|
.jsdomenudiv {
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
background-image: url(office_xp_menu_left.png);
|
||||||
|
background-repeat: repeat-y;
|
||||||
|
border: 1px solid #8A867A;
|
||||||
|
cursor: default;
|
||||||
|
padding-bottom: 1px;
|
||||||
|
padding-top: 1px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
visibility: hidden;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenuitem {
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
color: #000000;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 3px;
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-top: 3px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenuitemdisabled {
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
color: #B5B5B5;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 3px;
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-top: 3px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenuitemover {
|
||||||
|
background-color: #C1D2EE;
|
||||||
|
border: 1px solid #316AC5;
|
||||||
|
color: #000000;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-left: 1px;
|
||||||
|
margin-right: 1px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-left: 28px;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-top: 2px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenuarrow {
|
||||||
|
background-image: url(office_xp_arrow.png);
|
||||||
|
background-repeat: no-repeat; /* Do not alter this line! */
|
||||||
|
height: 7px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
right: 8px;
|
||||||
|
width: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenuarrowover {
|
||||||
|
background-image: url(office_xp_arrow_o.png);
|
||||||
|
background-repeat: no-repeat; /* Do not alter this line! */
|
||||||
|
height: 7px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
right: 8px;
|
||||||
|
width: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenusep {
|
||||||
|
padding-left: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenusep hr {
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Menu bar related selectors
|
||||||
|
*/
|
||||||
|
.jsdomenubardiv {
|
||||||
|
background-color: #ECE9D8;
|
||||||
|
background-image: url(office_xp_divider.png);
|
||||||
|
background-position: left;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
border: 1px outset;
|
||||||
|
cursor: default;
|
||||||
|
padding-bottom: 3px;
|
||||||
|
padding-left: 1px;
|
||||||
|
padding-right: 1px;
|
||||||
|
padding-top: 3px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenubardragdiv {
|
||||||
|
cursor: move;
|
||||||
|
display: inline;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
|
padding-top: 2px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
visibility: hidden;
|
||||||
|
width: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenubaritem {
|
||||||
|
background-color: #EFEDDE;
|
||||||
|
border: none;
|
||||||
|
color: #000000;
|
||||||
|
display: inline;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-left: 24px;
|
||||||
|
padding-right: 10px;
|
||||||
|
padding-top: 2px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenubaritemover {
|
||||||
|
background-color: #C1D2EE;
|
||||||
|
border: 1px solid #316AC5;
|
||||||
|
color: #000000;
|
||||||
|
display: inline;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-left: 23px;
|
||||||
|
padding-right: 9px;
|
||||||
|
padding-top: 2px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
}
|
||||||
|
|
||||||
|
.jsdomenubaritemclick {
|
||||||
|
background-color: #EFEDDE;
|
||||||
|
border: 1px solid #8A867A;
|
||||||
|
color: #000000;
|
||||||
|
display: inline;
|
||||||
|
font-family: Tahoma, Helvetica, sans, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-left: 23px;
|
||||||
|
padding-right: 9px;
|
||||||
|
padding-top: 2px;
|
||||||
|
position: relative; /* Do not alter this line! */
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Example of selectors for icons. Change the height and width to match the actual
|
||||||
|
height and width of the icon image.
|
||||||
|
*/
|
||||||
|
.icon1 {
|
||||||
|
background-image: url(icon1.png);
|
||||||
|
background-repeat: no-repeat; /* Do not alter this line! */
|
||||||
|
height: 16px;
|
||||||
|
left: 4px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon2 {
|
||||||
|
background-image: url(icon2.png);
|
||||||
|
background-repeat: no-repeat; /* Do not alter this line! */
|
||||||
|
height: 16px;
|
||||||
|
left: 4px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
width: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon3 {
|
||||||
|
background-image: url(icon3.png);
|
||||||
|
background-repeat: no-repeat; /* Do not alter this line! */
|
||||||
|
height: 16px;
|
||||||
|
left: 4px;
|
||||||
|
position: absolute; /* Do not alter this line! */
|
||||||
|
width: 16px;
|
||||||
|
}
|
||||||
15
www/extras/wobject/ProjectManager/styleModal.css
Normal file
15
www/extras/wobject/ProjectManager/styleModal.css
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
body {
|
||||||
|
background-color: #efefef;
|
||||||
|
}
|
||||||
|
|
||||||
|
body, html, input {
|
||||||
|
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||||
|
font-size:11px;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
font-style:italic;
|
||||||
|
font-size: 0.9em;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue