您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

20 行
496 B

/* this class is added to all graphElement instances*/
.graphElement {
text-alignment: upper-center;
text-color: #FFF;
/* currently border-XXX is only used for layout
where border-width is used to paint text and border.
They must keep in sync until we support variable border
thickness per edge */
border-left: 2;
border-top: 2;
border-right: 2;
border-bottom: 2;
border-width: 2;
border-radius: 5;
background-color: #333;
}
.graphElement.selected {
border-color: #FF0;
}