+.ideditor .help-pane .toc li:first-child a {
+ border-radius: 4px 4px 0 0;
+}
+
+.ideditor .help-pane .toc li:nth-last-child(3) a {
+ border-bottom: 1px solid #ccc;
+ border-radius: 0 0 4px 4px
+}
+
+.ideditor .help-pane .toc li.shortcuts a,
+.ideditor .help-pane .toc li.walkthrough a {
+ overflow: hidden;
+ margin-top: 10px;
+ border-bottom: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+.ideditor .help-pane .toc li.walkthrough a {
+ text-align: center;
+}
+
+.ideditor .help-pane .nav {
+ position: relative;
+ padding-bottom: 30px;
+}
+
+.ideditor .help-pane .nav a {
+ float: left;
+ width: 50%;
+ text-align: center;
+}
+
+.ideditor .help-pane .nav a:first-child {
+ border-radius: 4px 0 0 4px;
+}
+
+.ideditor .help-pane .nav a:last-child:not(:only-child) {
+ border-radius: 0 4px 4px 0;
+ border-left: 0;
+}
+
+.ideditor .help-pane .nav a:only-child {
+ width: 100%;
+ border-radius: 4px;
+}
+
+
+/* Inspector (hover styles)
+------------------------------------------------------- */
+.ideditor .inspector-hover .section-entity-issues .issue-container .issue .issue-label,
+.ideditor .inspector-hover .form-field-input-wrap .label,
+.ideditor .inspector-hover .form-field-input-multicombo .chiplist,
+.ideditor .inspector-hover .form-field-button,
+.ideditor .inspector-hover .structure-extras-wrap,
+.ideditor .inspector-hover .comments-container .comment,
+.ideditor .inspector-hover button,
+.ideditor .inspector-hover input,
+.ideditor .inspector-hover textarea,
+.ideditor .inspector-hover label {
+ background: #ececec;
+}
+.ideditor .inspector-hover .preset-list-button,
+.ideditor .inspector-hover .tag-row input {
+ background: #f6f6f6;
+}
+
+.ideditor .inspector-hover a,
+.ideditor .inspector-hover .form-field-input-multicombo .chip,
+.ideditor .inspector-hover .form-field-input-check span,
+.ideditor .inspector-hover .section-entity-issues .issue .icon {
+ color: #666;
+}
+
+.ideditor .inspector-hover .form-field-input-multicombo .chip {
+ background: #eee;
+ border: 1px solid #ccc;
+}
+
+/* no scrollbars */
+.ideditor .inspector-hover div {
+ overflow-x: visible;
+ overflow-y: visible;
+}
+
+/* hide and remove from layout */
+.ideditor .inspector-hidden,
+.ideditor .inspector-hover .preset-list-button-wrap .tag-reference-button,
+.ideditor .inspector-hover label input[type="checkbox"],
+.ideditor .inspector-hover label input[type="radio"],
+.ideditor .inspector-hover .form-field-input-multicombo .input-wrap,
+.ideditor .inspector-hover .form-field-input-radio label,
+.ideditor .inspector-hover .form-field-input-radio label span,
+.ideditor .inspector-hover .form-field-input-radio label.remove .icon,
+.ideditor .inspector-hover .add-row,
+.ideditor .inspector-hover .section-entity-issues .issue-container .issue-fix-list,
+.ideditor .inspector-hover .section-entity-issues .issue-container .issue-info-button {
+ display: none;
+}
+
+/* hide but preserve in layout */
+.ideditor .inspector-hover .combobox-caret,
+.ideditor .inspector-hover .header button,
+.ideditor .inspector-hover .quick-links,
+.ideditor .inspector-hover .form-field-input-multicombo .chip .remove,
+.ideditor .inspector-hover .hide-toggle:before,
+.ideditor .inspector-hover .more-fields,
+.ideditor .inspector-hover .field-label button,
+.ideditor .inspector-hover .tag-row button,
+.ideditor .inspector-hover .footer * {
+ opacity: 0;
+}
+
+/* Unstyle the active entity issue on hover */
+.ideditor .inspector-hover .section-entity-issues .issue-container.active {
+ margin-top: 1px;
+ margin-bottom: 1px;
+}
+.ideditor .inspector-hover .section-entity-issues .issue-container * {
+ border-color: #ccc !important;
+}
+.ideditor .inspector-hover .section-entity-issues .issue-container.active .issue-label {
+ border-bottom: 0;
+}
+.ideditor .inspector-hover .section-entity-issues .issue-container.active .issue-label button.issue-text {
+ font-weight: normal;
+}
+
+
+/* Styles for raw tag inspector on hover */
+.ideditor .inspector-hover .tag-row .key-wrap,
+.ideditor .inspector-hover .tag-row .value-wrap {
+ height: 31px;
+}
+
+.ideditor .inspector-hover .tag-row:first-child input.value {
+ border-top-right-radius: 4px;
+}
+.ideditor[dir='rtl'] .inspector-hover .tag-row:first-child input.value {
+ border-top-right-radius: 0;
+ border-top-left-radius: 4px;
+}
+
+.ideditor .inspector-hover .tag-row:last-child input.value {
+ border-bottom-right-radius: 4px;