666 lines
15 KiB
Plaintext
666 lines
15 KiB
Plaintext
//
|
|
// Dependencies
|
|
// --------------------------------------------------
|
|
|
|
@import "global.less";
|
|
@import "popover.less";
|
|
@import "tooltip.less";
|
|
@import "checkbox.less";
|
|
@import "select.less";
|
|
|
|
//
|
|
// Inspector
|
|
// --------------------------------------------------
|
|
|
|
@color-inspector-bg: #f2f2f2;
|
|
@color-inspector-active-bg: #ffffff;
|
|
@color-inspector-text: #333333;
|
|
@color-inspector-grid: #c8cccd;
|
|
@color-inspector-changed: #c03f31;
|
|
|
|
//
|
|
// Inspector
|
|
// --------------------------------------------------
|
|
|
|
.inspector-fields {
|
|
min-width: 220px;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
.border-bottom-radius(2px);
|
|
|
|
td, th {
|
|
padding: 5px 12px;
|
|
color: @color-inspector-text;
|
|
font-size: 12px;
|
|
width: 50%;
|
|
border-bottom: 1px solid @color-inspector-grid;
|
|
text-align: left;
|
|
}
|
|
|
|
tr:last-child {
|
|
td, th { border-bottom: none; }
|
|
|
|
td {
|
|
&, input[type=text] {
|
|
.border-radius(0 0 2px 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
tr.group {
|
|
.user-select(none);
|
|
|
|
th {
|
|
background: #e0e4e5;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
tr.invalid th {
|
|
color: #c03f31!important;
|
|
}
|
|
|
|
tr.control-group {
|
|
.user-select(none);
|
|
|
|
th, td {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
tr {
|
|
&.collapsed {display: none;}
|
|
&.expanded {display: table-row;}
|
|
}
|
|
|
|
&.has-groups {
|
|
th {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
tr.grouped th {
|
|
padding-left: 35px;
|
|
}
|
|
}
|
|
|
|
td {
|
|
font-weight: 300;
|
|
border-left: 1px solid @color-inspector-bg;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
&.text {
|
|
background: #F9F7F7;
|
|
|
|
input[type=text] {
|
|
background: transparent;
|
|
|
|
&::-webkit-input-placeholder {
|
|
font-weight: normal!important;
|
|
color: #b5babd;
|
|
}
|
|
&:-moz-placeholder {
|
|
font-weight: normal!important;
|
|
color: #b5babd;
|
|
}
|
|
&::-moz-placeholder {
|
|
font-weight: normal!important;
|
|
color: #b5babd;
|
|
}
|
|
&:-ms-input-placeholder {
|
|
font-weight: normal!important;
|
|
color: #b5babd;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
background: @color-inspector-active-bg;
|
|
border-left: 1px solid @color-inspector-grid;
|
|
}
|
|
}
|
|
|
|
&.autocomplete {
|
|
padding: 0;
|
|
|
|
.autocomplete-container {
|
|
input[type=text] {
|
|
padding: 5px 12px;
|
|
}
|
|
|
|
ul.dropdown-menu {
|
|
background: white;
|
|
font-size: 12px;
|
|
|
|
li a {
|
|
padding: 5px 12px;
|
|
}
|
|
}
|
|
|
|
.loading-indicator {
|
|
span {
|
|
margin-top: -12px;
|
|
right: 10px;
|
|
left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.trigger-cell {
|
|
padding: 0!important;
|
|
|
|
a.trigger {
|
|
display: block;
|
|
padding: 5px 12px 7px 12px;
|
|
overflow: hidden;
|
|
min-height: 29px;
|
|
text-overflow: ellipsis;
|
|
color: @color-inspector-text;
|
|
text-decoration: none;
|
|
|
|
&.placeholder {
|
|
color: #b5babd;
|
|
}
|
|
|
|
.loading-indicator {
|
|
background-color: @color-inspector-bg;
|
|
|
|
span {
|
|
margin-top: -12px;
|
|
right: 10px;
|
|
left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.dropdown {
|
|
padding: 0!important;
|
|
}
|
|
|
|
select {
|
|
width: 90%;
|
|
}
|
|
|
|
div.external-param-editor-container {
|
|
position: relative;
|
|
padding-right: 25px;
|
|
|
|
div.external-editor {
|
|
bottom: 0;
|
|
margin: -5px -12px;
|
|
right: 30px;
|
|
left: auto;
|
|
top: 0;
|
|
position: absolute;
|
|
|
|
.transition(left 0.2s);
|
|
.transform( ~'translateZ(0)');
|
|
will-change: transform;
|
|
|
|
div.controls {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
|
|
a {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
display: inline-block;
|
|
height: 100%;
|
|
width: 30px;
|
|
color: #2b3e50;
|
|
outline: none;
|
|
|
|
i {
|
|
display: inline-block;
|
|
position: relative;
|
|
left: 10px;
|
|
top: 4px;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
input {
|
|
position: absolute;
|
|
display: block;
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
padding-left: 30px;
|
|
padding-right: 12px;
|
|
background: transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.editor-visible {
|
|
div.external-editor {
|
|
div.controls {
|
|
input {
|
|
background: @color-inspector-bg;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
div.external-param-editor-container {
|
|
div.external-editor {
|
|
div.controls {
|
|
input {
|
|
background: white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.dropdown, &.trigger-cell {
|
|
div.external-param-editor-container div.external-editor {
|
|
height: 100%;
|
|
margin: 0;
|
|
bottom: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
th {
|
|
font-weight: 500;
|
|
|
|
> div {
|
|
position: relative;
|
|
|
|
> div {
|
|
white-space: nowrap;
|
|
padding-right: 10px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
|
|
span.info {
|
|
display: inline-block;
|
|
position: absolute;
|
|
right: -1px;
|
|
top: 3px;
|
|
font-size: 14px;
|
|
width: 10px;
|
|
height: 12px;
|
|
line-height: 80%;
|
|
.opacity(0.4);
|
|
&:before {
|
|
margin-left: 3px;
|
|
}
|
|
&:hover {
|
|
.opacity(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
a.expandControl {
|
|
display: block;
|
|
position: absolute;
|
|
width: 12px;
|
|
height: 12px;
|
|
left: -15px;
|
|
top: 2px;
|
|
text-indent: -100000em;
|
|
|
|
span {
|
|
position: absolute;
|
|
display: inline-block;
|
|
left: 0;
|
|
top: 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
|
|
&:after {
|
|
.icon(@angle-right);
|
|
position: absolute;
|
|
left: 4px;
|
|
top: -2px;
|
|
width: 12px;
|
|
height: 12px;
|
|
font-size: 13px;
|
|
color: #333333;
|
|
text-indent: 0;
|
|
}
|
|
}
|
|
|
|
&.expanded span:after {
|
|
.icon(@angle-down);
|
|
left: 2px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
input[type=text] {
|
|
display: block;
|
|
width: 100%;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
div.custom-checkbox {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
.user-select(none);
|
|
|
|
label:before {
|
|
top: -12px;
|
|
}
|
|
}
|
|
|
|
.select2-container {
|
|
width: 100% !important;
|
|
|
|
.select2-selection {
|
|
background: transparent;
|
|
height: 29px;
|
|
line-height: 29px;
|
|
padding: 0 3px 0 12px;
|
|
.border-radius(0) !important;
|
|
border: none !important;
|
|
font-size: 12px;
|
|
|
|
&.select2-default {
|
|
font-weight: normal !important;
|
|
}
|
|
}
|
|
|
|
.loading-indicator {
|
|
> span {
|
|
top: 15px;
|
|
}
|
|
}
|
|
|
|
&.select2-container--open {
|
|
.border-radius(0) !important;
|
|
border: none !important;
|
|
|
|
.select2-selection {
|
|
background: white;
|
|
}
|
|
}
|
|
|
|
.select2-selection__rendered {
|
|
padding: 0 22px 0 0;
|
|
}
|
|
}
|
|
|
|
tr.changed {
|
|
td {
|
|
font-weight: 600;
|
|
input[type=text] {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.select2-container .select2-selection {
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
div.control-popover {
|
|
&.control-inspector {
|
|
> div {
|
|
background: @color-inspector-bg;
|
|
border: none;
|
|
.box-shadow(none);
|
|
|
|
&:before, &:after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.hero {
|
|
.inspector-fields {
|
|
th, td {
|
|
padding: 9px 12px;
|
|
font-weight: 600!important;
|
|
font-size: 13px;
|
|
}
|
|
|
|
td {
|
|
font-weight: 400!important;
|
|
}
|
|
|
|
div.custom-select.select2-container .select2-selection {
|
|
height: 36px;
|
|
line-height: 36px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.inspector-temporary-placement {
|
|
visibility: hidden;
|
|
left: 0!important;
|
|
top: 0!important;
|
|
}
|
|
}
|
|
|
|
.inspector-columns-editor {
|
|
min-height: 400px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #bdc3c7;
|
|
|
|
.items-column {
|
|
width: 250px;
|
|
}
|
|
|
|
.inspector-wrapper {
|
|
background: #f2f2f2; // Use @color-inspector-bg instead
|
|
border-left: 2px solid #bdc3c7;
|
|
}
|
|
|
|
.toolbar {
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
html.gecko.mac {
|
|
.scroll-wrapper.inspector-wrapper > div {
|
|
margin-right: 17px;
|
|
}
|
|
}
|
|
|
|
.inspector-table-list {
|
|
border-top: 1px solid #e2e2e2;
|
|
.user-select(none);
|
|
}
|
|
|
|
div.inspector-dictionary-container {
|
|
border: 1px solid #e0e0e0;
|
|
|
|
.values {
|
|
height: 300px;
|
|
}
|
|
|
|
table.headers {
|
|
width: 100%;
|
|
border: none;
|
|
|
|
td {
|
|
width: 50%;
|
|
padding: 7px 5px;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
background: white;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
&:first-child {
|
|
border-right: 1px solid #e0e0e0;
|
|
}
|
|
}
|
|
}
|
|
|
|
table.inspector-dictionary-table{
|
|
width: 100%;
|
|
border: none;
|
|
|
|
tbody tr {
|
|
td {
|
|
width: 50%;
|
|
padding: 0!important;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
div {
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
&.active div {
|
|
border-color: #5fb6f5;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
outline: none;
|
|
border: none;
|
|
padding: 7px 5px;
|
|
|
|
&:focus {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
border-right: 1px solid #e0e0e0;
|
|
}
|
|
}
|
|
|
|
&:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.inspector-header {
|
|
background: #d35400;
|
|
padding: 14px 16px;
|
|
position: relative;
|
|
color: #ffffff;
|
|
|
|
h3 {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
padding-right: 15px;
|
|
line-height: 130%;
|
|
}
|
|
|
|
p {
|
|
font-size: 13px;
|
|
font-weight: 100;
|
|
margin: 10px 0 0 0;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
span {
|
|
position: absolute;
|
|
top: 12px;
|
|
float: none;
|
|
color: #ffffff;
|
|
cursor: pointer;
|
|
|
|
.opacity(0.4);
|
|
&:hover {
|
|
.opacity(1);
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
|
|
.detach {
|
|
right: 26px;
|
|
}
|
|
|
|
.close {
|
|
right: 11px;
|
|
font-size: 21px;
|
|
}
|
|
}
|
|
|
|
.inspector-container {
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
.control-scrollpad {
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
.inspector-field-comment {
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.select2-dropdown {
|
|
&.ocInspectorDropdown {
|
|
font-size: 12px;
|
|
.border-radius(0) !important;
|
|
border: none !important;
|
|
|
|
> .select2-results {
|
|
> .select2-results__options {
|
|
font-size: 12px;
|
|
}
|
|
> li > div {
|
|
padding: 5px 12px 5px;
|
|
}
|
|
|
|
li.select2-no-results {
|
|
padding: 5px 12px 5px;
|
|
}
|
|
|
|
li > i, li > img {
|
|
margin-left: 6px;
|
|
}
|
|
}
|
|
|
|
.select2-search {
|
|
min-height: 26px;
|
|
position: relative;
|
|
border-bottom: 1px solid #b2b9be;
|
|
|
|
&:after {
|
|
position: absolute;
|
|
.icon(@search);
|
|
right: 10px;
|
|
top: 10px;
|
|
color: #95a5a6;
|
|
}
|
|
|
|
input.select2-search__field {
|
|
min-height: 26px;
|
|
background: transparent !important;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
} |