web-apps/apps/documenteditor/main/resources/less/toolbar.less

244 lines
5 KiB
Plaintext
Raw Normal View History

2017-02-15 13:45:25 +00:00
2018-02-27 13:17:15 +00:00
@tabs-bg-color: #446995;
2017-06-02 14:26:43 +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) {
2016-03-11 00:48:53 +00:00
background-position-x: 0px !important;
}
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 {
> .btn-slot:not(:last-child):not(.split) {
2020-12-22 11:45:08 +00:00
margin-right: 4px;
}
> .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;
background-color: @gray-light;
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;
}
.dropdown-menu.toc-menu {
@contents-menu-item-height: 72px;
--bckgHOffset: ~"0px";
> li > a.item-contents {
div {
2019-10-21 14:05:50 +00:00
.background-ximage-v2('toolbar/contents.png', 246px, @commonimage: false);
width: 246px;
height: @contents-menu-item-height;
.box-shadow(0 0 0 1px @gray);
&:hover,
&.selected {
.box-shadow(0 0 0 2px @primary);
}
}
&:hover, &:focus {
background-color: transparent;
div {
.box-shadow(0 0 0 2px @primary);
}
}
}
.loop(@counter) when (@counter > 0) {
.loop((@counter - 1));
li:nth-child(@{counter}) > a.item-contents {
div {
@incr-height: (@counter - 1)*@contents-menu-item-height;
background-position: 0 ~"calc(var(--bckgHOffset) - @{incr-height})";
}
}
}
.loop(2);
}
2016-03-11 00:48:53 +00:00
.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;
}
}
2019-08-20 12:56:29 +00:00
&.checked {
&:before {
display: none !important;
}
&, &:hover, &:focus {
background-color: @primary;
color: @dropdown-link-active-color;
span.color {
2019-08-21 10:04:49 +00:00
border-color: rgba(255,255,255,0.7);
2019-08-20 12:56:29 +00:00
}
}
}
2016-03-11 00:48:53 +00:00
}
// page number position
.menu-pageposition {
.dataview {
width: 125px;
height: 85px;
margin: 0 10px;
2016-03-11 00:48:53 +00:00
&.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 {
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;
overflow: hidden;
text-overflow: ellipsis;
2016-03-11 00:48:53 +00:00
}
2021-01-21 19:48:27 +00:00
#id-toolbar-menu-auto-fontcolor > a.selected,
#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 {
outline: 1px solid @black;
border: 1px solid @body-bg;
2016-03-11 00:48:53 +00:00
}
}
.item-equation {
border: 1px solid @gray;
2019-10-21 14:05:50 +00:00
.background-ximage-v2('toolbar/math.png', 1500px, @commonimage: true);
2016-03-11 00:48:53 +00:00
}
.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;
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;
background-color: @gray-light;
border: 1px solid @gray;
2017-02-15 13:45:25 +00:00
}