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

54 行
916 B

TitleBarView {
flex-direction: row;
justify-content: space-between;
align-items: stretch;
background-color: rgba(33, 33, 33, 0.5);
padding-bottom: 1;
/*margin-top: -1;*/
}
TitleBarView #left,
TitleBarView #right {
flex: 1;
height: 16;
background-color: #3d3d3d;
align-items: stretch;
flex-direction: row;
}
TitleBarView #left {
justify-content: flex-start;
}
TitleBarView #right {
justify-content: flex-end;
}
.titleBarItem {
flex-direction: row;
}
.titleBarItem.active {
background-color: rgba(33, 33, 33, 0.5);
}
#left .titleBarItem {
margin-left: 5;
}
#right .titleBarItem {
margin-right: 5;
}
.titleBarItemBorder {
background-color: rgba(33, 33, 33, 0.5);
width: 1;
}
.titleBarItemLabel {
text-color: rgba(255, 255, 255, 0.6);
font-size: 9;
text-alignment: middle-left;
padding-left: 5;
padding-right: 5;
}