155 lines
2.8 KiB
Plaintext
155 lines
2.8 KiB
Plaintext
// 编辑器样式集合
|
|
|
|
.editor {
|
|
position: fixed;
|
|
width: 70%;
|
|
top: @top-height;
|
|
padding-top: @command-groups-height;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
background: #FEFEFE;
|
|
border-right: 1px solid #DDD;
|
|
display: none;
|
|
|
|
.command-groups {
|
|
background: rgba(112, 119, 128, 1);
|
|
margin-top: -40px;
|
|
}
|
|
|
|
.close-editor {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
padding-right: 5px;
|
|
z-index: 100;
|
|
font-size: 20px;
|
|
line-height: 38px;
|
|
color: #FFF;
|
|
display: none;
|
|
&:hover {
|
|
cursor: pointer
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
.close-editor {
|
|
display: block;
|
|
}
|
|
}
|
|
@media screen and (min-width:1300px) and (max-width:1600px){
|
|
.command-groups {
|
|
>li,
|
|
>li[data-theme="ico"] {
|
|
padding: 0 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width:1300px){
|
|
.command-groups {
|
|
>li,
|
|
>li[data-theme="ico"] {
|
|
padding: 0 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.editor.editing {
|
|
display: block;
|
|
}
|
|
|
|
.glyf-editor {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
display: none;
|
|
|
|
.marker-x,
|
|
.marker-y {
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
z-index: 60;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.marker-x {
|
|
width: 20px;
|
|
border-top: 1px dashed #000;
|
|
}
|
|
|
|
.marker-y {
|
|
height: 20px;
|
|
border-left: 1px dashed #000;
|
|
}
|
|
}
|
|
|
|
.editor-contextmenu {
|
|
|
|
color: #333;
|
|
width: 150px;
|
|
border: 1px solid #999;
|
|
background: #FEFEFE;
|
|
line-height: 24px;
|
|
padding: 0 4px;
|
|
box-shadow: 1px 1px 1px #CCC;
|
|
position: absolute;
|
|
|
|
li {
|
|
padding-left: 4px;
|
|
cursor: pointer;
|
|
border-bottom: 1px solid #CCC;
|
|
>ul {
|
|
display: none;
|
|
color: #333;
|
|
width: 150px;
|
|
border: 1px solid #999;
|
|
background: #FEFEFE;
|
|
line-height: 24px;
|
|
padding: 0 4px;
|
|
box-shadow: 1px 1px 1px #CCC;
|
|
position: absolute;
|
|
margin-left: 130px;
|
|
}
|
|
}
|
|
|
|
>li[data-sub] {
|
|
color: #4A90E2;
|
|
&:after {
|
|
content:'>';
|
|
margin-right: 10px;
|
|
float: right;
|
|
font-family: 'Simsun';
|
|
}
|
|
}
|
|
|
|
li[data-tag="selected"] {
|
|
.icon();
|
|
.i-ico('\e01f', 'after');
|
|
display: block;
|
|
&:after {
|
|
float: right;
|
|
margin-right: 4px;
|
|
color: #4A90E2;
|
|
}
|
|
}
|
|
|
|
li:hover {
|
|
background: #EEE;
|
|
>ul {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|