2017-03-21 14:16:27 +00:00
|
|
|
@height-tabs: 40px;
|
2017-02-15 13:45:25 +00:00
|
|
|
@height-controls: 67px;
|
|
|
|
|
2017-03-01 13:38:20 +00:00
|
|
|
@tabs-bg-color: #fff;
|
2017-02-28 10:09:05 +00:00
|
|
|
#toolbar {
|
2017-03-21 14:16:27 +00:00
|
|
|
//z-index: 101;
|
2017-02-28 10:09:05 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.toolbar {
|
2017-03-21 14:16:27 +00:00
|
|
|
//overflow: hidden;
|
2017-02-28 10:09:05 +00:00
|
|
|
|
|
|
|
&:not(.folded) {
|
|
|
|
height: @height-tabs + @height-controls;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.folded {
|
|
|
|
height: @height-tabs;
|
|
|
|
transition: height .2s;
|
|
|
|
|
|
|
|
&.expanded {
|
|
|
|
height: @height-tabs + @height-controls;
|
|
|
|
}
|
|
|
|
}
|
2017-02-15 13:45:25 +00:00
|
|
|
|
|
|
|
.box-tabs {
|
|
|
|
height: @height-tabs;
|
2017-03-01 13:38:20 +00:00
|
|
|
.box-shadow(0 1px 0 @gray-dark);
|
2017-02-15 13:45:25 +00:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
|
|
|
|
2017-03-01 13:38:20 +00:00
|
|
|
.extra {
|
2017-03-16 10:20:07 +00:00
|
|
|
background-color: @tabs-bg-color;
|
2017-02-15 13:45:25 +00:00
|
|
|
}
|
2017-03-01 13:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
flex-grow: 1;
|
|
|
|
background-color: @tabs-bg-color;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
2017-02-15 13:45:25 +00:00
|
|
|
|
2017-03-01 13:38:20 +00:00
|
|
|
> ul {
|
2017-02-15 13:45:25 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2017-02-20 14:51:33 +00:00
|
|
|
list-style: none;
|
|
|
|
font-size: 0;
|
2017-02-15 13:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2017-02-20 14:51:33 +00:00
|
|
|
height: 100%;
|
|
|
|
//background-color: #a6c995;
|
2017-02-15 13:45:25 +00:00
|
|
|
|
|
|
|
> a {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: @height-tabs;
|
2017-02-20 14:51:33 +00:00
|
|
|
height: 100%;
|
2017-02-15 13:45:25 +00:00
|
|
|
padding: 0 10px;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: default;
|
2017-03-16 10:24:23 +00:00
|
|
|
font-size: 12px;
|
2017-02-15 13:45:25 +00:00
|
|
|
text-align: center;
|
2017-03-16 10:24:23 +00:00
|
|
|
color: @gray-deep;
|
2017-02-15 13:45:25 +00:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: block;
|
2017-03-23 12:54:03 +00:00
|
|
|
content: attr(data-title);
|
2017-02-15 13:45:25 +00:00
|
|
|
font-weight: bold;
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
> a {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.marker {
|
2017-02-20 14:51:33 +00:00
|
|
|
position: relative;
|
2017-03-01 13:38:20 +00:00
|
|
|
border-top: 3px solid @gray-darker;
|
2017-02-20 14:51:33 +00:00
|
|
|
top: -4px;
|
2017-02-15 13:45:25 +00:00
|
|
|
-webkit-transition: width .2s, left .2s ease-out;
|
|
|
|
transition: width .2s, left .2s ease-out;
|
|
|
|
}
|
|
|
|
|
2017-03-01 13:38:20 +00:00
|
|
|
&:not(.short) {
|
2017-02-20 14:51:33 +00:00
|
|
|
.scroll {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll {
|
2017-02-15 13:45:25 +00:00
|
|
|
line-height: @height-tabs;
|
|
|
|
min-width: 20px;
|
|
|
|
text-align: center;
|
2017-02-20 14:51:33 +00:00
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
&.left{
|
|
|
|
box-shadow: 5px 0 20px 5px rgba(208, 221, 182, .8)
|
|
|
|
}
|
|
|
|
&.right{
|
|
|
|
box-shadow: -5px 0 20px 5px rgba(208, 221, 182, .8)
|
|
|
|
}
|
2017-02-15 13:45:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 13:38:20 +00:00
|
|
|
|
2017-02-15 13:45:25 +00:00
|
|
|
.box-controls {
|
|
|
|
height: @height-controls;
|
|
|
|
padding: 10px 0;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
//background-color: #F2CBBF;
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
display: table;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
//width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-panels {
|
|
|
|
.panel:not(.active) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//padding: 10px 0;
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
background-color: @gray-light;
|
|
|
|
.box-inner-shadow(0 -1px 0 @gray-dark);
|
|
|
|
|
2017-02-15 13:45:25 +00:00
|
|
|
.toolbar-group, .group {
|
2016-03-11 00:48:53 +00:00
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top;
|
|
|
|
white-space: nowrap;
|
|
|
|
padding-left: 12px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-15 13:45:25 +00:00
|
|
|
.group {
|
|
|
|
//background-color: #a9f261;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-row, .elset {
|
2016-03-11 00:48:53 +00:00
|
|
|
height: 20px;
|
|
|
|
font-size: 0;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-15 13:45:25 +00:00
|
|
|
.elset {
|
|
|
|
//background-color: #f2f254;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.separator {
|
|
|
|
margin-left: 12px;
|
|
|
|
|
|
|
|
&.long {
|
|
|
|
height: 46px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.short {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-15 13:45:25 +00:00
|
|
|
.btn-slot {
|
2016-03-11 00:48:53 +00:00
|
|
|
// background-color: red;
|
|
|
|
display: inline-block;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.split {
|
|
|
|
width: 28px;
|
|
|
|
}
|
|
|
|
|
2017-03-06 09:26:18 +00:00
|
|
|
&.text {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
&.border {
|
|
|
|
border: 1px solid @gray;
|
|
|
|
.border-radius(1px);
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
2017-03-29 16:24:20 +00:00
|
|
|
|
|
|
|
&.x-huge {
|
|
|
|
height: 45px;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.masked {
|
2017-03-09 08:41:47 +00:00
|
|
|
button.disabled .icon:not(.no-mask) {
|
2016-03-11 00:48:53 +00:00
|
|
|
background-position-x: 0px !important;
|
|
|
|
}
|
|
|
|
.toolbar-group:not(.no-mask) {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-mask {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 48px;
|
|
|
|
right: 45px;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0;
|
|
|
|
background-color: @gray-light;
|
|
|
|
z-index: @zindex-tooltip + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-markers,
|
|
|
|
.menu-numbers {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-markerlist {
|
|
|
|
.background-ximage('@{app-image-path}/toolbar/bullets.png', '@{app-image-path}/toolbar/bullets@2x.png', 38px);
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-numberlist,
|
|
|
|
.item-multilevellist {
|
|
|
|
.background-ximage('@{app-image-path}/toolbar/multilevels-numbering.png', '@{app-image-path}/toolbar/multilevels-numbering@2x.png', 74px);
|
|
|
|
width: 74px;
|
|
|
|
height: 74px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.color-schemas-menu {
|
|
|
|
span {
|
|
|
|
&.colors {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.color {
|
|
|
|
display: inline-block;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-right: 2px;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.text {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// page number position
|
|
|
|
.menu-pageposition {
|
|
|
|
.dataview {
|
|
|
|
width: 125px;
|
|
|
|
height: 85px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
> .item {
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.box-shadow(0 0 0 1px @gray);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-pagenumber {
|
|
|
|
.background-ximage('@{app-image-path}/toolbar/colontitules.png', '@{app-image-path}/toolbar/colontitules@2x.png', 33px);
|
|
|
|
width: 33px;
|
|
|
|
height: 33px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// menu zoom
|
|
|
|
.menu-zoom {
|
|
|
|
.title {
|
|
|
|
padding: 5px 0 5px 20px;
|
|
|
|
float: left;
|
2016-12-19 11:44:02 +00:00
|
|
|
//max-width: 95px;
|
2016-03-11 00:48:53 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoom {
|
|
|
|
padding: 5px 3px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// charts
|
|
|
|
.menu-insertchart {
|
|
|
|
.group-description {
|
2016-12-16 08:37:57 +00:00
|
|
|
padding-left: 4px;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.group-items-container {
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-chartlist {
|
|
|
|
.background-ximage('@{app-image-path}/toolbar/charttypes.png', '@{app-image-path}/toolbar/charttypes@2x.png', 250px);
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-normal {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-stack {
|
|
|
|
background-position: -50px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-pstack {
|
|
|
|
background-position: -100px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-3d {
|
|
|
|
background-position: -150px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-normal {
|
|
|
|
background-position: 0 -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-stack{
|
|
|
|
background-position: -50px -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-pstack{
|
|
|
|
background-position: -100px -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-3d-normal {
|
|
|
|
background-position: -150px -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-3d-stack{
|
|
|
|
background-position: -200px -50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-3d-pstack{
|
|
|
|
background-position: -150px -100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column-3d-normal-per{
|
|
|
|
background-position: -200px -100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-normal {
|
|
|
|
background-position: 0 -100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-stack{
|
|
|
|
background-position: -50px -100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-pstack{
|
|
|
|
background-position: -100px -100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-3d-normal {
|
|
|
|
background-position: -150px -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-3d-stack{
|
|
|
|
background-position: -200px -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-3d-pstack{
|
|
|
|
background-position: -150px -200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-normal {
|
|
|
|
background-position: 0 -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-stack{
|
|
|
|
background-position: -50px -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-pstack{
|
|
|
|
background-position: -100px -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pie-normal {
|
|
|
|
background-position: 0 -200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pie-3d-normal {
|
|
|
|
background-position: -200px -200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.point-normal{
|
|
|
|
background-position: -50px -200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stock-normal{
|
|
|
|
background-position: -100px -200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pie-doughnut{
|
|
|
|
background-position: -200px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@toolbar-icon-size: 20px;
|
|
|
|
.button-normal-icon(btn-align-center, 0, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-align-just, 1, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-align-left, 2, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-align-right, 3, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-bold, 5, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-pagebreak, 6, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-clearstyle, 7, @toolbar-icon-size);
|
|
|
|
//.toolbar-btn-icon(btn-editheader, 8, @toolbar-icon-size); // dublicate !!! index-39
|
|
|
|
.button-normal-icon(btn-copy, 9, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-copystyle, 10, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-decoffset, 11, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-decfont, 12, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-paracolor, 13, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-fontcolor, 14, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-incoffset, 15, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-incfont, 16, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-insertimage, 17, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-inserttable, 18, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-italic, 19, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-linespace, 20, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-setmarkers, 21, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-multilevels, 22, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-numbering, 23, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-pageorient, 24, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-pagesize, 25, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-paste, 26, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-print, 27, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-redo, 28, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-save, 29, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-highlight, 31, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-strikeout, 32, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-subscript, 33, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-superscript, 34, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-underline, 35, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-undo, 36, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-hidenchars, 37, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-inserthyperlink, 38, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-editheader, 39, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-mailrecepients, 40, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-synch, 42, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-save-coauth, 41, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-insertshape, 43, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-colorschemas, 44, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-insertchart, 45, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-text, 46, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-hidebars, 47, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-settings, 48, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-dropcap, 50, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-insertequation, 53, @toolbar-icon-size);
|
|
|
|
//.toolbar-btn-icon(btn-bold, 5, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-zoomin, 57, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-zoomout, 58, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-columns, 82, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(btn-pagemargins, 83, @toolbar-icon-size);
|
2016-12-23 12:29:16 +00:00
|
|
|
.button-normal-icon(btn-notes, 85, @toolbar-icon-size);
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
.button-normal-icon(mmerge-next, 71, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(mmerge-last, 72, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(mmerge-prev, 73, @toolbar-icon-size);
|
|
|
|
.button-normal-icon(mmerge-first, 74, @toolbar-icon-size);
|
|
|
|
|
|
|
|
.button-otherstates-icon2(btn-toolbar, @toolbar-icon-size);
|
|
|
|
|
|
|
|
@menu-icon-size: 22px;
|
|
|
|
.menu-icon-normal(mnu-wrap-inline, 0, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-wrap-square, 1, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-wrap-tight, 2, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-wrap-through, 3, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-wrap-topAndBottom, 4, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-wrap-inFront, 5, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-wrap-behind, 6, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-arrange-front, 7, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-arrange-back, 8, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-arrange-forward, 9, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-arrange-backward, 10, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-arrange-group, 11, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-arrange-ungroup, 12, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-img-align-left, 13, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-img-align-center, 14, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-img-align-right, 15, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-img-align-top, 16, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-img-align-middle, 17, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-img-align-bottom, 18, @menu-icon-size);
|
|
|
|
//.menu-btn-icon(mnu-, 19, @menu-icon-size);
|
|
|
|
//.menu-btn-icon(mnu-, 20, @menu-icon-size);
|
|
|
|
|
|
|
|
.menu-icon-normal(mnu-align-center, 21, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-align-just, 22, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-align-left, 23, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-align-right, 24, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-dropcap-none, 25, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-dropcap-intext, 26, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-dropcap-inmargin, 27, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-columns-one, 28, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-columns-two, 29, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-columns-three, 30, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-columns-left, 31, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-columns-right, 32, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-direct-horiz, 33, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-direct-rup, 34, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-direct-rdown, 35, @menu-icon-size);
|
2016-07-04 13:04:05 +00:00
|
|
|
|
|
|
|
.menu-icon-normal(mnu-orient-portrait, 36, @menu-icon-size);
|
|
|
|
.menu-icon-normal(mnu-orient-landscape, 37, @menu-icon-size);
|
2016-03-11 00:48:53 +00:00
|
|
|
.menu-otherstates-icon(ppm-toolbar, @menu-icon-size);
|
|
|
|
|
|
|
|
|
|
|
|
.username-tip {
|
|
|
|
background-color: #ee3525;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 3px 10px;
|
|
|
|
color: #ffffff;
|
|
|
|
font: 11px arial;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#id-toolbar-menu-auto-fontcolor > a.selected {
|
|
|
|
span {
|
|
|
|
outline: 1px solid #000;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-equation {
|
|
|
|
border: 1px solid @gray;
|
|
|
|
.background-ximage('@{app-image-path}/toolbar/math.png', '@{app-image-path}/toolbar/math@2x.png', 1500px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.save-style-container {
|
|
|
|
cursor: default;
|
|
|
|
position: relative;
|
|
|
|
padding: 14px 11px;
|
|
|
|
border-left: 1px solid @gray;
|
|
|
|
border-top: 1px solid @gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.save-style-link {
|
|
|
|
border-bottom: 1px dotted #aaa;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-left: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plus {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
background-position: @plus-offset-x @plus-offset-y;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu > .disabled {
|
|
|
|
.plus, .save-style-link {
|
|
|
|
cursor: default;
|
|
|
|
color: @dropdown-link-disabled-color;
|
|
|
|
background-position: @plus-offset-x @plus-offset-y - 16;
|
|
|
|
}
|
|
|
|
}
|
2017-02-15 13:45:25 +00:00
|
|
|
|
|
|
|
#slot-field-fontname {
|
|
|
|
float: left;
|
|
|
|
width: 165px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#slot-field-fontsize {
|
|
|
|
float: left;
|
|
|
|
width: 45px;
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#slot-btn-incfont, #slot-btn-decfont {
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#slot-field-styles {
|
|
|
|
width: 100%;
|
|
|
|
min-width: 160px;
|
|
|
|
}
|