2017-02-15 13:45:25 +00:00
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.toolbar {
|
|
|
|
&.masked {
|
2017-03-09 08:41:47 +00:00
|
|
|
button.disabled .icon:not(.no-mask) {
|
2021-03-05 21:52:06 +00:00
|
|
|
//background-position-x: 0px !important;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
2017-04-20 10:32:55 +00:00
|
|
|
.group:not(.no-mask) {
|
2016-03-11 00:48:53 +00:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
}
|
2017-04-04 15:43:57 +00:00
|
|
|
|
|
|
|
.font-attr {
|
2017-07-04 14:24:15 +00:00
|
|
|
> .btn-slot:not(:last-child):not(.split) {
|
2020-12-22 11:45:08 +00:00
|
|
|
margin-right: 4px;
|
2017-07-04 14:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .btn-slot:not(:last-child).split {
|
|
|
|
margin-right: 2px;
|
2017-04-04 15:43:57 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2017-08-23 14:49:56 +00:00
|
|
|
.toolbar-group-mask {
|
|
|
|
position: absolute;
|
2017-08-31 08:15:03 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2017-08-23 14:49:56 +00:00
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
2021-02-16 07:22:48 +00:00
|
|
|
background-color: @background-toolbar-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @background-toolbar;
|
2017-08-23 14:49:56 +00:00
|
|
|
z-index: @zindex-tooltip + 1;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.item-markerlist {
|
2019-10-21 14:05:50 +00:00
|
|
|
.background-ximage-v2('toolbar/bullets-and-numbering.png', 38px);
|
2016-03-11 00:48:53 +00:00
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
}
|
|
|
|
|
2019-09-25 13:25:57 +00:00
|
|
|
.dropdown-menu.toc-menu {
|
|
|
|
@contents-menu-item-height: 72px;
|
2019-12-18 15:54:30 +00:00
|
|
|
--bckgHOffset: ~"0px";
|
2019-09-25 13:25:57 +00:00
|
|
|
|
2018-03-14 10:19:41 +00:00
|
|
|
> li > a.item-contents {
|
|
|
|
div {
|
2021-01-18 09:19:38 +00:00
|
|
|
background-color: #fff;
|
2021-04-13 09:14:15 +00:00
|
|
|
width: 248px;
|
2018-03-14 10:19:41 +00:00
|
|
|
|
2021-02-16 07:22:48 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie);
|
2021-02-10 12:40:30 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-one-px-value @border-regular-control);
|
2018-03-14 10:19:41 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.selected {
|
2021-02-16 07:22:48 +00:00
|
|
|
.box-shadow(0 0 0 2px @border-control-focus-ie);
|
2021-02-10 12:40:30 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-two-px-value @border-control-focus);
|
2017-12-23 08:33:49 +00:00
|
|
|
}
|
2021-04-13 11:18:59 +00:00
|
|
|
|
|
|
|
canvas {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2018-03-14 10:19:41 +00:00
|
|
|
}
|
2017-12-23 08:33:49 +00:00
|
|
|
|
2018-03-14 10:19:41 +00:00
|
|
|
&:hover, &:focus {
|
|
|
|
background-color: transparent;
|
2017-12-23 08:33:49 +00:00
|
|
|
|
2018-03-14 10:19:41 +00:00
|
|
|
div {
|
2021-02-16 07:22:48 +00:00
|
|
|
.box-shadow(0 0 0 2px @border-control-focus-ie);
|
2021-02-10 12:40:30 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-two-px-value @border-control-focus);
|
2017-12-23 08:33:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
// page number position
|
|
|
|
.menu-pageposition {
|
|
|
|
.dataview {
|
2021-02-17 10:46:21 +00:00
|
|
|
width: 144px;
|
|
|
|
height: 100px;
|
2020-08-18 11:50:10 +00:00
|
|
|
margin: 0 10px;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
> .item {
|
|
|
|
cursor: default;
|
2021-02-28 21:29:00 +00:00
|
|
|
opacity: @component-disabled-opacity;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
|
|
|
&:hover {
|
2021-02-16 07:22:48 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie);
|
2021-02-10 12:40:30 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-one-px-value @border-regular-control);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-pagenumber {
|
2021-02-17 10:46:21 +00:00
|
|
|
.ie & {
|
|
|
|
.background-ximage('@{app-image-path}/iconshuge.png', '@{app-image-path}/iconshuge@2x.png', 40px);
|
|
|
|
}
|
|
|
|
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// menu zoom
|
|
|
|
.menu-zoom {
|
2018-05-04 11:56:33 +00:00
|
|
|
line-height: @line-height-base;
|
2016-03-11 00:48:53 +00:00
|
|
|
.title {
|
2018-05-10 11:23:02 +00:00
|
|
|
padding: 5px 5px 5px 20px;
|
2016-03-11 00:48:53 +00:00
|
|
|
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;
|
2017-08-08 11:29:43 +00:00
|
|
|
min-width: 40px;
|
|
|
|
text-align: center;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-05 12:22:02 +00:00
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.username-tip {
|
|
|
|
background-color: #ee3525;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 3px 10px;
|
|
|
|
color: #ffffff;
|
|
|
|
font: 11px arial;
|
|
|
|
white-space: nowrap;
|
2017-04-11 14:04:34 +00:00
|
|
|
letter-spacing: 1px;
|
2018-04-04 13:40:23 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 13:20:44 +00:00
|
|
|
#id-toolbar-menu-auto-fontcolor > a.selected,
|
2021-01-21 19:48:27 +00:00
|
|
|
#id-toolbar-menu-auto-fontcolor > a:hover,
|
|
|
|
#watermark-auto-color > a.selected,
|
|
|
|
#watermark-auto-color > a:hover {
|
2016-03-11 00:48:53 +00:00
|
|
|
span {
|
2021-02-16 07:22:48 +00:00
|
|
|
outline: @scaled-one-px-value-ie solid @icon-normal-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
outline: @scaled-one-px-value solid @icon-normal;
|
2021-02-16 07:22:48 +00:00
|
|
|
border: @scaled-one-px-value-ie solid @background-normal-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border: @scaled-one-px-value solid @background-normal;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.save-style-container {
|
|
|
|
cursor: default;
|
|
|
|
position: relative;
|
|
|
|
padding: 14px 11px;
|
2021-02-16 07:22:48 +00:00
|
|
|
border-left: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-left: @scaled-one-px-value solid @border-regular-control;
|
2021-02-16 07:22:48 +00:00
|
|
|
border-top: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-top: @scaled-one-px-value solid @border-regular-control;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.save-style-link {
|
2021-02-16 07:22:48 +00:00
|
|
|
border-bottom: @scaled-one-px-value-ie dotted @text-secondary-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-bottom: @scaled-one-px-value dotted @text-secondary;
|
2016-03-11 00:48:53 +00:00
|
|
|
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;
|
2021-01-18 13:41:49 +00:00
|
|
|
width: 84px;
|
2017-02-15 13:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#slot-field-fontsize {
|
|
|
|
float: left;
|
|
|
|
width: 45px;
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
2021-01-18 13:41:49 +00:00
|
|
|
#slot-btn-incfont, #slot-btn-decfont, #slot-btn-changecase {
|
2017-02-15 13:45:25 +00:00
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#slot-field-styles {
|
|
|
|
width: 100%;
|
|
|
|
min-width: 160px;
|
2017-05-12 08:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#special-paste-container {
|
|
|
|
position: absolute;
|
|
|
|
z-index: @zindex-dropdown - 20;
|
2021-02-26 10:46:28 +00:00
|
|
|
|
2021-02-16 07:22:48 +00:00
|
|
|
background-color: @background-toolbar-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @background-toolbar;
|
2021-02-16 07:22:48 +00:00
|
|
|
border: @scaled-one-px-value-ie solid @border-regular-control-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border: @scaled-one-px-value solid @border-regular-control;
|
2021-02-03 07:32:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu.list-settings-level {
|
|
|
|
.menu-list-preview {
|
2021-02-26 10:46:28 +00:00
|
|
|
.box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie);
|
|
|
|
.box-shadow(0 0 0 @scaled-one-px-value @border-regular-control);
|
2021-04-20 13:37:46 +00:00
|
|
|
|
|
|
|
background-color: @canvas-content-background;
|
2021-02-03 07:32:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
.menu-list-preview {
|
2021-02-26 10:46:28 +00:00
|
|
|
.box-shadow(0 0 0 2px @border-control-focus-ie);
|
|
|
|
.box-shadow(0 0 0 @scaled-two-px-value @border-control-focus);
|
2021-02-03 07:32:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|