Change default font style.

This commit is contained in:
Paulo Gustavo Veiga 2012-07-02 00:37:48 -03:00
parent ef89c0457b
commit 1df9afda1b
6 changed files with 18 additions and 15 deletions

View File

@ -260,7 +260,7 @@ mindplot.widget.Menu = new Class({
this._addButton('deleteTopic', true, true, function () { this._addButton('deleteTopic', true, true, function () {
designer.deleteCurrentNode(); designer.deleteCurrentNode();
}); });
this._registerTooltip('deleteTopic', $msg('TOPIC_DELETE'), "Backspace"); this._registerTooltip('deleteTopic', $msg('TOPIC_DELETE'), "Delete");
this._addButton('topicLink', true, false, function () { this._addButton('topicLink', true, false, function () {

View File

@ -1,15 +1,16 @@
.palette-panel { .palette-panel {
/*background: white;*/
/*border-color: #CCC #666 #666 #CCC;*/
/*border-style: solid;*/
/*border-width: 1px;*/
cursor: default; cursor: default;
font: normal 13px Arial, sans-serif; font: normal 13px "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0; margin: 0;
outline: none; outline: none;
padding: 4px 0; padding: 4px 0;
z-index: 20000; z-index: 20000;
-webkit-touch-callout: none;
-webkit-user-select: none; -webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
} }
.palette { .palette {

View File

@ -48,7 +48,8 @@ abbr, acronym {
* *
*/ */
body { body {
font: 13px arial, helvetica, clean, sans-serif; font-size: 13px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: small; font-size: small;
font: x-small; font: x-small;
} }
@ -88,7 +89,7 @@ body * {
} }
body { body {
font: normal 80% "trebuchet ms", verdana, arial, helvetica, sans-serif; font: normal 80% "Helvetica Neue",Helvetica,Arial,sans-serif;
background-color: #fff; background-color: #fff;
} }

View File

@ -95,5 +95,5 @@ div#embFooter {
left: 0; left: 0;
border-top: 1px solid black; border-top: 1px solid black;
background: #E5E5E5; background: #E5E5E5;
font-family: Arial; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
} }

View File

@ -11,7 +11,7 @@
} }
#headerToolbar { #headerToolbar {
height: 25px; height: 30px;
width: 100%; width: 100%;
background-color: #171a17; background-color: #171a17;
border-top: 1px solid #999999; border-top: 1px solid #999999;
@ -31,7 +31,7 @@
} }
#headerLogo { #headerLogo {
margin-top: 13px; margin-top: 18px;
height: 80px; height: 80px;
width: 160px; width: 160px;
background: url("../images/logo-medium.png") no-repeat; background: url("../images/logo-medium.png") no-repeat;

View File

@ -84,7 +84,8 @@
"sZeroRecords":"<spring:message code="NO_MATCHING_FOUND"/>", "sZeroRecords":"<spring:message code="NO_MATCHING_FOUND"/>",
"sLoadingRecords":"<spring:message code="LOADING"/>", "sLoadingRecords":"<spring:message code="LOADING"/>",
"sInfo":"<spring:message code="TABLE_ROWS"/>", "sInfo":"<spring:message code="TABLE_ROWS"/>",
"sEmptyTable":"<spring:message code="NO_SEARCH_RESULT"/>" "sEmptyTable":"<spring:message code="NO_SEARCH_RESULT"/>",
"sProcessing":"<spring:message code="LOADING"/>"
}, },
bStateSave:true bStateSave:true
}); });