41 lines
602 B
CSS
41 lines
602 B
CSS
/* DAX语法高亮样式 */
|
|
#measure-expression {
|
|
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
background-color: #f8f8f8;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
overflow: auto;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
/* 关键字 */
|
|
.dax-keyword {
|
|
color: #0000ff;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* 函数 */
|
|
.dax-function {
|
|
color: #795e26;
|
|
}
|
|
|
|
/* 括号 */
|
|
.dax-parenthesis {
|
|
color: #000000;
|
|
}
|
|
|
|
/* 数字 */
|
|
.dax-number {
|
|
color: #098658;
|
|
}
|
|
|
|
/* 字符串 */
|
|
.dax-string {
|
|
color: #a31515;
|
|
}
|
|
|
|
/* 普通文本 */
|
|
.dax-normal {
|
|
color: #000000;
|
|
} |