2016-03-11 00:48:53 +00:00
|
|
|
#comments-box {
|
|
|
|
display: table;
|
|
|
|
position: relative;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
2021-07-06 19:58:36 +00:00
|
|
|
#comments-header {
|
|
|
|
position: absolute;
|
|
|
|
height: 45px;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 12px;
|
|
|
|
overflow: hidden;
|
|
|
|
border-bottom: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
|
|
|
border-bottom: @scaled-one-px-value solid @border-toolbar;
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.messages-ct {
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 45px;
|
|
|
|
height: 300px;
|
2021-07-06 19:58:36 +00:00
|
|
|
padding-top: 45px;
|
2021-02-16 07:21:22 +00:00
|
|
|
border-bottom: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-bottom: @scaled-one-px-value solid @border-toolbar;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2018-12-17 08:37:43 +00:00
|
|
|
&.stretch {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.ps-scrollbar-y-rail {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
right: 4px !important;
|
|
|
|
}
|
2022-04-05 16:04:05 +00:00
|
|
|
|
|
|
|
.dataview-ct.inner {
|
|
|
|
.empty-text {
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
color: @text-tertiary-ie;
|
|
|
|
color: @text-tertiary;
|
|
|
|
tr {
|
|
|
|
vertical-align: top;
|
|
|
|
td {
|
|
|
|
padding-top: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.add-link-ct {
|
|
|
|
height: 45px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
label {
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-normal;
|
2016-03-11 00:48:53 +00:00
|
|
|
font: 12px arial;
|
|
|
|
line-height: normal;
|
2021-02-16 07:21:22 +00:00
|
|
|
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-bottom: @scaled-one-px-value dotted @text-normal;
|
2021-05-04 15:46:22 +00:00
|
|
|
border-radius: 0;
|
2016-03-11 00:48:53 +00:00
|
|
|
padding-top: 12px;
|
|
|
|
outline: none;
|
|
|
|
height: 29px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-comment-ct {
|
|
|
|
height: 110px;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
.inner-ct{
|
|
|
|
padding: 7px 20px 37px;
|
|
|
|
height: 100%;
|
|
|
|
margin-bottom: -32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
font-size: 12px;
|
|
|
|
width: 100%;
|
|
|
|
resize: none;
|
|
|
|
margin-bottom: 5px;
|
2021-02-16 07:21:22 +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;
|
2016-03-11 00:48:53 +00:00
|
|
|
height: 100%;
|
2019-12-06 08:52:59 +00:00
|
|
|
&:focus {
|
2021-02-16 07:21:22 +00:00
|
|
|
border-color: @border-control-focus-ie;
|
2021-02-02 11:59:45 +00:00
|
|
|
border-color: @border-control-focus;
|
2019-12-06 08:52:59 +00:00
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
&.add {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
&.cancel {
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataview-ct {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font: 12px arial;
|
|
|
|
line-height: normal;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @border-preview-select-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @border-preview-select;
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2018-05-08 08:07:01 +00:00
|
|
|
textarea {
|
2016-03-11 00:48:53 +00:00
|
|
|
width: 100%;
|
2021-07-22 14:13:59 +00:00
|
|
|
height: 55px;
|
2016-03-11 00:48:53 +00:00
|
|
|
resize: none;
|
|
|
|
margin-bottom: 5px;
|
2021-02-16 07:21:22 +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;
|
2016-03-11 00:48:53 +00:00
|
|
|
word-break: break-all;
|
|
|
|
line-height: 15px;
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-normal;
|
2019-12-06 08:52:59 +00:00
|
|
|
&:focus {
|
2021-02-16 07:21:22 +00:00
|
|
|
border-color: @border-control-focus-ie;
|
2021-02-02 11:59:45 +00:00
|
|
|
border-color: @border-control-focus;
|
2019-12-06 08:52:59 +00:00
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-fix {
|
|
|
|
margin-left: -3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.textarea-fix {
|
|
|
|
margin-left: -3px;
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.separator-cmt {
|
2021-02-16 07:21:22 +00:00
|
|
|
border-bottom: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-bottom: @scaled-one-px-value solid @border-toolbar;
|
2016-03-11 00:48:53 +00:00
|
|
|
margin: 20px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-comment-item {
|
|
|
|
position: relative;
|
|
|
|
padding: 0px 20px 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-name {
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-normal;
|
2018-06-04 11:45:22 +00:00
|
|
|
font-size: 12px;
|
2016-03-11 00:48:53 +00:00
|
|
|
font-weight: bold;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-03-23 14:15:42 +00:00
|
|
|
padding: 10px 65px 0 0px;
|
2016-03-11 00:48:53 +00:00
|
|
|
height: 26px;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2018-06-04 11:45:22 +00:00
|
|
|
.color {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2021-02-16 07:21:22 +00:00
|
|
|
border: @scaled-one-px-value-ie solid @border-toolbar-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border: @scaled-one-px-value solid @border-toolbar;
|
2018-06-04 11:45:22 +00:00
|
|
|
margin: 0 5px 3px 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.user-name-colored {
|
|
|
|
padding: 10px 0px 0 0px;
|
|
|
|
cursor: default;
|
|
|
|
max-width: 175px;
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
height: 20px;
|
|
|
|
max-width: 175px;
|
|
|
|
background-color: #ee3525;
|
|
|
|
padding: 3px 10px;
|
|
|
|
color: #ffffff;
|
|
|
|
font: 11px arial;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-date {
|
|
|
|
font-size: 11px;
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 0;
|
|
|
|
height: 12px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-quote {
|
|
|
|
font-style: italic;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 0px 5px 5px 5px;
|
2021-02-16 07:21:22 +00:00
|
|
|
border-left: @scaled-one-px-value-ie solid #939393;
|
2021-01-21 21:18:15 +00:00
|
|
|
border-left: @scaled-one-px-value solid #939393;
|
2016-03-11 00:48:53 +00:00
|
|
|
word-break: break-all;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-message {
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-normal;
|
2016-03-11 00:48:53 +00:00
|
|
|
padding: 9px 0px 0 0px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.limit-height {
|
|
|
|
max-height: 80px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2018-05-08 08:14:43 +00:00
|
|
|
|
|
|
|
&.user-select {
|
|
|
|
cursor: text;
|
|
|
|
}
|
2019-09-19 09:45:40 +00:00
|
|
|
&.user-select::selection {
|
|
|
|
background: #3494fb;
|
|
|
|
color: white;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-reply {
|
2021-02-16 07:21:22 +00:00
|
|
|
color: @text-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
color: @text-normal;
|
2016-03-11 00:48:53 +00:00
|
|
|
margin-top: 10px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
width: auto;
|
2021-02-16 07:21:22 +00:00
|
|
|
border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border-bottom: @scaled-one-px-value dotted @text-normal;
|
2016-03-11 00:48:53 +00:00
|
|
|
height: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.msg-reply {
|
|
|
|
max-height:150px;
|
2018-01-17 10:26:18 +00:00
|
|
|
word-break: break-word !important;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.edit-ct {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
margin: 11px 21px 10px 10px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btns-reply-ct {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 30px;
|
|
|
|
margin-top: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-item-ct {
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div[class^=btn-] {
|
|
|
|
float: left;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-09-02 12:44:11 +00:00
|
|
|
.btn-edit,.btn-delete, .btn-resolve, .icon-resolve, .btn-resolve-check, .btn-accept, .btn-reject, .btn-goto {
|
2016-03-11 00:48:53 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2021-09-02 12:44:11 +00:00
|
|
|
.icon-resolve {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.btn-edit {
|
2021-04-08 16:00:27 +00:00
|
|
|
background-position: -2px -232px;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-delete {
|
2021-04-08 16:00:27 +00:00
|
|
|
background-position: -22px -232px;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 03:19:27 +00:00
|
|
|
|
|
|
|
.tool {
|
|
|
|
float: right;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0px;
|
|
|
|
margin-right: 2px;
|
|
|
|
|
|
|
|
&.btn-reject {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before, &:after {
|
|
|
|
content: ' ';
|
|
|
|
position: absolute;
|
2021-07-15 13:56:51 +00:00
|
|
|
left: 8px;
|
|
|
|
top: 2px;
|
|
|
|
height: 12px;
|
|
|
|
width: 2px;
|
2021-07-07 03:19:27 +00:00
|
|
|
background-color: @icon-normal-ie;
|
|
|
|
background-color: @icon-normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
|
2021-07-07 03:19:27 +00:00
|
|
|
&:after {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.help {
|
|
|
|
width: 20px;
|
|
|
|
margin-right:0;
|
|
|
|
line-height: 14px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: @text-normal-ie;
|
|
|
|
color: @text-normal;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
opacity: @component-disabled-opacity;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
2021-09-02 12:44:11 +00:00
|
|
|
.btn-resolve, .btn-accept, .icon-resolve {
|
2021-01-06 15:49:55 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
2021-02-16 07:21:22 +00:00
|
|
|
border: solid @text-normal-ie;
|
2021-01-06 15:49:55 +00:00
|
|
|
border: solid @text-normal;
|
|
|
|
border-width: 0 2px 2px 0;
|
|
|
|
transform: rotate(40deg);
|
|
|
|
width: 7px;
|
|
|
|
height: 12px;
|
|
|
|
left: 6px;
|
2021-04-08 16:00:27 +00:00
|
|
|
top: 0px;
|
2021-01-06 15:49:55 +00:00
|
|
|
}
|
|
|
|
|
2021-09-02 12:44:11 +00:00
|
|
|
&.comment-resolved, &.i-comment-resolved {
|
2021-01-06 15:49:55 +00:00
|
|
|
&:after {
|
2021-02-16 07:21:22 +00:00
|
|
|
border-color: @icon-success-ie;
|
2021-01-20 19:32:46 +00:00
|
|
|
border-color: @icon-success;
|
2021-01-06 15:49:55 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-resolve-check {
|
|
|
|
background-position: -42px -234px;
|
|
|
|
}
|
|
|
|
|
2019-04-12 14:55:08 +00:00
|
|
|
.btn-goto {
|
|
|
|
background-position: -22px -272px;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:48:53 +00:00
|
|
|
.inner-edit-ct {
|
|
|
|
padding: 7px 0px 0px 0px;
|
|
|
|
|
|
|
|
.btn-inner-close {
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-ct {
|
|
|
|
padding: 10px 0px 0px 0px;
|
|
|
|
|
|
|
|
.btn-close {
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.reply-inner-ct {
|
|
|
|
padding: 0px 20px 0px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-arrow {
|
|
|
|
background-color: transparent;
|
|
|
|
background-position: -60px -232px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-top: 10px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lock-area {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #F4F4F4;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
opacity: .5;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lock-author {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
max-width: 150px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
background-color: #EE3525;
|
2017-04-12 09:49:16 +00:00
|
|
|
margin: 10px 18px;
|
2016-03-11 00:48:53 +00:00
|
|
|
padding: 2px 10px;
|
|
|
|
color: #fff;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
min-width: 100px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 11px;
|
2021-03-30 13:30:01 +00:00
|
|
|
font-family: @font-family-base;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.resolved {
|
|
|
|
width: 18px;
|
|
|
|
height: 16px;
|
|
|
|
float: left;
|
|
|
|
margin: 5px 5px 0 0;
|
|
|
|
background-color: transparent;
|
|
|
|
background-position: -40px -232px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.comments-caret {
|
|
|
|
width: 7px;
|
|
|
|
height: 7px;
|
|
|
|
border: 0;
|
|
|
|
background-position: @arrow-small-offset-x @arrow-small-offset-y;
|
|
|
|
margin: 10px 8px 0 -2px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
// POPOVER
|
|
|
|
|
|
|
|
.comments-popover {
|
|
|
|
width:100%;
|
2018-06-07 14:09:54 +00:00
|
|
|
position: relative;
|
|
|
|
overflow-y: hidden;
|
2021-08-17 11:36:38 +00:00
|
|
|
//margin-bottom: 5px;
|
2018-06-07 14:09:54 +00:00
|
|
|
|
|
|
|
.dataview-ct.inner {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.comments-arrow {
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 5px;
|
|
|
|
left: 2px;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @background-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @background-normal;
|
2016-03-11 00:48:53 +00:00
|
|
|
-moz-transform: rotate(45deg);
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
-o-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
2021-02-16 07:21:22 +00:00
|
|
|
border: solid @scaled-one-px-value-ie @border-toolbar-ie;
|
2021-02-10 12:40:30 +00:00
|
|
|
border: solid @scaled-one-px-value @border-toolbar;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
2021-08-17 11:36:38 +00:00
|
|
|
|
|
|
|
&.left {
|
|
|
|
left: -10px;
|
|
|
|
top: 20px;
|
|
|
|
width: 10px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
left: 100%;
|
|
|
|
top: 20px;
|
|
|
|
width: 10px;
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
left: -8px;
|
|
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
|
|
body.safari &,
|
|
|
|
body.chrome & {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
left: 20px;
|
|
|
|
top: -10px;
|
|
|
|
height: 10px;
|
|
|
|
width: 30px;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
top: 2px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
left: 20px;
|
|
|
|
top: auto;
|
|
|
|
bottom: -10px;
|
|
|
|
height: 10px;
|
|
|
|
width: 30px;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
top: -7px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|