Removed unused styles and update to have colorpicker using them color than theme
This commit is contained in:
parent
20b70502b2
commit
1ed50b48eb
@ -1380,16 +1380,6 @@ form.inplaceeditor-form a { /* The cancel link */
|
|||||||
/* CSS for color picker */
|
/* CSS for color picker */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
FIELDSET {
|
|
||||||
padding : 0px;
|
|
||||||
margin : 0px;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
LEGEND {
|
|
||||||
font-family : Tahoma;
|
|
||||||
font-size : 10pt;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
A.color, A.color:active, A.color:visited {
|
A.color, A.color:active, A.color:visited {
|
||||||
position : relative;
|
position : relative;
|
||||||
display : block;
|
display : block;
|
||||||
@ -1414,7 +1404,7 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
cursor : default;
|
cursor : default;
|
||||||
border : 1px solid threedface;
|
border : 1px solid #b3c5cc;
|
||||||
}
|
}
|
||||||
.tblColor {
|
.tblColor {
|
||||||
display : none;
|
display : none;
|
||||||
@ -1423,14 +1413,14 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.tblContainer {
|
.tblContainer {
|
||||||
background-color : threedface;
|
background-color : #FFFFFF;
|
||||||
}
|
}
|
||||||
.tblGlobal {
|
.tblGlobal {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
top : 0px;
|
top : 0px;
|
||||||
left : 0px;
|
left : 0px;
|
||||||
display : none;
|
display : none;
|
||||||
background-color : threedface;
|
background-color : #FFFFFF;
|
||||||
border : 2px outset;
|
border : 2px outset;
|
||||||
}
|
}
|
||||||
.tdContainer {
|
.tdContainer {
|
||||||
@ -1446,21 +1436,21 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
width : 50%;
|
width : 50%;
|
||||||
height : 24px;
|
height : 24px;
|
||||||
line-height : 12px;
|
line-height : 12px;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
color : black;
|
color : black;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
.btnColor {
|
.btnColor {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.btnPalette {
|
.btnPalette {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
body {
|
body {
|
||||||
background: #e0ebeb;
|
background: #e0ebeb;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
font-family: sans-serif; font-size: 0.95em;
|
font: 12px helvetica, verdana, arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***** Styles par defaut *****/
|
/***** Styles par defaut *****/
|
||||||
@ -343,7 +343,7 @@ a.tabTitle {
|
|||||||
border-top: 1px solid #D8D8D8;
|
border-top: 1px solid #D8D8D8;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.tab {
|
a.tab:link {
|
||||||
background: white;
|
background: white;
|
||||||
border: 1px solid #8CACBB;
|
border: 1px solid #8CACBB;
|
||||||
color: #436976;
|
color: #436976;
|
||||||
@ -353,7 +353,17 @@ a.tab {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
a.tab:active {
|
a.tab:visited {
|
||||||
|
background: white;
|
||||||
|
border: 1px solid #8CACBB;
|
||||||
|
color: #436976;
|
||||||
|
font-weight: normal;
|
||||||
|
padding: 0px 6px;
|
||||||
|
margin: 0em 0.2em;
|
||||||
|
text-decoration: none;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
a.tab#active {
|
||||||
background: #dee7ec;
|
background: #dee7ec;
|
||||||
border-bottom: #dee7ec 1px solid;
|
border-bottom: #dee7ec 1px solid;
|
||||||
}
|
}
|
||||||
@ -1014,16 +1024,6 @@ div.menuFleche
|
|||||||
/* CSS for color picker */
|
/* CSS for color picker */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
FIELDSET {
|
|
||||||
padding : 0px;
|
|
||||||
margin : 0px;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
LEGEND {
|
|
||||||
font-family : Tahoma;
|
|
||||||
font-size : 10pt;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
A.color, A.color:active, A.color:visited {
|
A.color, A.color:active, A.color:visited {
|
||||||
position : relative;
|
position : relative;
|
||||||
display : block;
|
display : block;
|
||||||
@ -1048,7 +1048,7 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
cursor : default;
|
cursor : default;
|
||||||
border : 1px solid threedface;
|
border : 1px solid #b3c5cc;
|
||||||
}
|
}
|
||||||
.tblColor {
|
.tblColor {
|
||||||
display : none;
|
display : none;
|
||||||
@ -1057,14 +1057,14 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.tblContainer {
|
.tblContainer {
|
||||||
background-color : threedface;
|
background-color : #EFEFDE;
|
||||||
}
|
}
|
||||||
.tblGlobal {
|
.tblGlobal {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
top : 0px;
|
top : 0px;
|
||||||
left : 0px;
|
left : 0px;
|
||||||
display : none;
|
display : none;
|
||||||
background-color : threedface;
|
background-color : #EFEFDE;
|
||||||
border : 2px outset;
|
border : 2px outset;
|
||||||
}
|
}
|
||||||
.tdContainer {
|
.tdContainer {
|
||||||
@ -1080,21 +1080,21 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
width : 50%;
|
width : 50%;
|
||||||
height : 24px;
|
height : 24px;
|
||||||
line-height : 12px;
|
line-height : 12px;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
color : black;
|
color : black;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
.btnColor {
|
.btnColor {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.btnPalette {
|
.btnPalette {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
|||||||
@ -1521,16 +1521,6 @@ div.menuFleche
|
|||||||
/* CSS for color picker */
|
/* CSS for color picker */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
FIELDSET {
|
|
||||||
padding : 0px;
|
|
||||||
margin : 0px;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
LEGEND {
|
|
||||||
font-family : Tahoma;
|
|
||||||
font-size : 10pt;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
A.color, A.color:active, A.color:visited {
|
A.color, A.color:active, A.color:visited {
|
||||||
position : relative;
|
position : relative;
|
||||||
display : block;
|
display : block;
|
||||||
@ -1555,7 +1545,7 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
cursor : default;
|
cursor : default;
|
||||||
border : 1px solid threedface;
|
border : 1px solid #b3c5cc;
|
||||||
}
|
}
|
||||||
.tblColor {
|
.tblColor {
|
||||||
display : none;
|
display : none;
|
||||||
@ -1564,14 +1554,14 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.tblContainer {
|
.tblContainer {
|
||||||
background-color : threedface;
|
background-color : #b3c5cc;
|
||||||
}
|
}
|
||||||
.tblGlobal {
|
.tblGlobal {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
top : 0px;
|
top : 0px;
|
||||||
left : 0px;
|
left : 0px;
|
||||||
display : none;
|
display : none;
|
||||||
background-color : threedface;
|
background-color : #b3c5cc;
|
||||||
border : 2px outset;
|
border : 2px outset;
|
||||||
}
|
}
|
||||||
.tdContainer {
|
.tdContainer {
|
||||||
@ -1587,21 +1577,21 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
width : 50%;
|
width : 50%;
|
||||||
height : 24px;
|
height : 24px;
|
||||||
line-height : 12px;
|
line-height : 12px;
|
||||||
font-family : Tahoma;
|
font : helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
color : black;
|
color : black;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
.btnColor {
|
.btnColor {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font : helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.btnPalette {
|
.btnPalette {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font : helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
|||||||
@ -1224,16 +1224,6 @@ div.menuFleche
|
|||||||
/* CSS for color picker */
|
/* CSS for color picker */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
FIELDSET {
|
|
||||||
padding : 0px;
|
|
||||||
margin : 0px;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
LEGEND {
|
|
||||||
font-family : Tahoma;
|
|
||||||
font-size : 10pt;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
A.color, A.color:active, A.color:visited {
|
A.color, A.color:active, A.color:visited {
|
||||||
position : relative;
|
position : relative;
|
||||||
display : block;
|
display : block;
|
||||||
@ -1258,7 +1248,7 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
cursor : default;
|
cursor : default;
|
||||||
border : 1px solid threedface;
|
border : 1px solid #b3c5cc;
|
||||||
}
|
}
|
||||||
.tblColor {
|
.tblColor {
|
||||||
display : none;
|
display : none;
|
||||||
@ -1267,14 +1257,14 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.tblContainer {
|
.tblContainer {
|
||||||
background-color : threedface;
|
background-color : #DDDDDD;
|
||||||
}
|
}
|
||||||
.tblGlobal {
|
.tblGlobal {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
top : 0px;
|
top : 0px;
|
||||||
left : 0px;
|
left : 0px;
|
||||||
display : none;
|
display : none;
|
||||||
background-color : threedface;
|
background-color : #DDDDDD;
|
||||||
border : 2px outset;
|
border : 2px outset;
|
||||||
}
|
}
|
||||||
.tdContainer {
|
.tdContainer {
|
||||||
@ -1290,21 +1280,21 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
width : 50%;
|
width : 50%;
|
||||||
height : 24px;
|
height : 24px;
|
||||||
line-height : 12px;
|
line-height : 12px;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
color : black;
|
color : black;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
.btnColor {
|
.btnColor {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.btnPalette {
|
.btnPalette {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
|||||||
@ -390,7 +390,7 @@ a.tab:visited {
|
|||||||
background: white;
|
background: white;
|
||||||
border: 1px solid #999999;
|
border: 1px solid #999999;
|
||||||
color: #436976;
|
color: #436976;
|
||||||
padding: 0em 0.2em;
|
padding: 0em 1em;
|
||||||
margin: 0em 0.2em;
|
margin: 0em 0.2em;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -400,7 +400,6 @@ a.tab#active {
|
|||||||
border-bottom: #dcdcd3 1px solid;
|
border-bottom: #dcdcd3 1px solid;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.tab:hover {
|
a.tab:hover {
|
||||||
background: #78746d;
|
background: #78746d;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@ -983,16 +982,6 @@ cursor: pointer;
|
|||||||
/* CSS for color picker */
|
/* CSS for color picker */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
FIELDSET {
|
|
||||||
padding : 0px;
|
|
||||||
margin : 0px;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
LEGEND {
|
|
||||||
font-family : Tahoma;
|
|
||||||
font-size : 10pt;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
A.color, A.color:active, A.color:visited {
|
A.color, A.color:active, A.color:visited {
|
||||||
position : relative;
|
position : relative;
|
||||||
display : block;
|
display : block;
|
||||||
@ -1017,7 +1006,7 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
cursor : default;
|
cursor : default;
|
||||||
border : 1px solid threedface;
|
border : 1px solid #b3c5cc;
|
||||||
}
|
}
|
||||||
.tblColor {
|
.tblColor {
|
||||||
display : none;
|
display : none;
|
||||||
@ -1026,14 +1015,14 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.tblContainer {
|
.tblContainer {
|
||||||
background-color : threedface;
|
background-color : #DED8D2;
|
||||||
}
|
}
|
||||||
.tblGlobal {
|
.tblGlobal {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
top : 0px;
|
top : 0px;
|
||||||
left : 0px;
|
left : 0px;
|
||||||
display : none;
|
display : none;
|
||||||
background-color : threedface;
|
background-color : #DED8D2;
|
||||||
border : 2px outset;
|
border : 2px outset;
|
||||||
}
|
}
|
||||||
.tdContainer {
|
.tdContainer {
|
||||||
@ -1049,21 +1038,21 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
width : 50%;
|
width : 50%;
|
||||||
height : 24px;
|
height : 24px;
|
||||||
line-height : 12px;
|
line-height : 12px;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
color : black;
|
color : black;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
.btnColor {
|
.btnColor {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.btnPalette {
|
.btnPalette {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
|||||||
@ -986,7 +986,7 @@ table.dp {
|
|||||||
}
|
}
|
||||||
.dp td, .tpHour td, .tpMinute td{padding:2px; font-size:10px;}
|
.dp td, .tpHour td, .tpMinute td{padding:2px; font-size:10px;}
|
||||||
/* Barre titre */
|
/* Barre titre */
|
||||||
.dpHead,.tpHead,.tpHour td:Hover .tpHead{
|
.#ccc5b3,.tpHead,.tpHour td:Hover .tpHead{
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
background-color:#ccc5b3;
|
background-color:#ccc5b3;
|
||||||
color:black;
|
color:black;
|
||||||
@ -1274,16 +1274,6 @@ div.menuFleche
|
|||||||
/* CSS for color picker */
|
/* CSS for color picker */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
FIELDSET {
|
|
||||||
padding : 0px;
|
|
||||||
margin : 0px;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
LEGEND {
|
|
||||||
font-family : Tahoma;
|
|
||||||
font-size : 10pt;
|
|
||||||
color : black;
|
|
||||||
}
|
|
||||||
A.color, A.color:active, A.color:visited {
|
A.color, A.color:active, A.color:visited {
|
||||||
position : relative;
|
position : relative;
|
||||||
display : block;
|
display : block;
|
||||||
@ -1308,7 +1298,7 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
margin : 0px;
|
margin : 0px;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
cursor : default;
|
cursor : default;
|
||||||
border : 1px solid threedface;
|
border : 1px solid #ccc5b3;
|
||||||
}
|
}
|
||||||
.tblColor {
|
.tblColor {
|
||||||
display : none;
|
display : none;
|
||||||
@ -1317,14 +1307,14 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
padding : 1px;
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.tblContainer {
|
.tblContainer {
|
||||||
background-color : threedface;
|
background-color : #DCDCB3;
|
||||||
}
|
}
|
||||||
.tblGlobal {
|
.tblGlobal {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
top : 0px;
|
top : 0px;
|
||||||
left : 0px;
|
left : 0px;
|
||||||
display : none;
|
display : none;
|
||||||
background-color : threedface;
|
background-color : #DCDCB3;
|
||||||
border : 2px outset;
|
border : 2px outset;
|
||||||
}
|
}
|
||||||
.tdContainer {
|
.tdContainer {
|
||||||
@ -1340,21 +1330,21 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
|||||||
width : 50%;
|
width : 50%;
|
||||||
height : 24px;
|
height : 24px;
|
||||||
line-height : 12px;
|
line-height : 12px;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
color : black;
|
color : black;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
}
|
}
|
||||||
.btnColor {
|
.btnColor {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
}
|
}
|
||||||
.btnPalette {
|
.btnPalette {
|
||||||
width : 100%;
|
width : 100%;
|
||||||
font-family : Tahoma;
|
font: helvetica, verdana, arial, sans-serif;
|
||||||
font-size : 8pt;
|
font-size : 8pt;
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user