* Fix: On renaming a widget via entity explorer the canvas gets resized * Fix: Close prop pane on resize start of unselected widget. * Fix: Match all - corejs polyfill * Fix: Proppane not updated properly when same type widgets are selected. * Feature: Draggable Proppane. * Bug fixes for draggable popup. * Fix: Property pane editor when selecting another widget. * resolve rebase bad merges. * cytest fix * cytest fix * cytest fix * cytest fix * cytest fix * cytest fix * cytest fixes * cytest fix * fixing draggable components inside porp pane. * Adding cypress test. * refactored Draggable list POC version * reverting unwanted changes. * prop pane bug fix * unwanted dependencies. * double click to open prop pane. * Fixing bugs in draggable prop pane. * one click prop pane open. * ignore drag/resize click captures * make prop pane draggable only via drag handler. * Fixed property pane title. * converting layer to hook and adding it to top most layer. * removing irrelevant comments. * close panel when widget changes. * fixing cytests. * bug fix * fixing cytest * Addressing code review comments. * bug fix
106 lines
1.7 KiB
CSS
Executable File
106 lines
1.7 KiB
CSS
Executable File
@import "~normalize.css";
|
|
@import "~@blueprintjs/core/lib/css/blueprint.css";
|
|
@import "~@blueprintjs/icons/lib/css/blueprint-icons.css";
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body.dragging *{
|
|
cursor: grabbing !important;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|
|
|
|
* {
|
|
outline: none !important;
|
|
}
|
|
|
|
div.bp3-select-popover .bp3-popover-content {
|
|
padding: 0;
|
|
}
|
|
|
|
span.bp3-popover-target {
|
|
display: block;
|
|
}
|
|
|
|
div.bp3-popover-arrow {
|
|
display:none;
|
|
}
|
|
|
|
.bp3-button.bp3-loading{
|
|
cursor: default !important;
|
|
}
|
|
|
|
.display-none {
|
|
display: none;
|
|
}
|
|
|
|
.Toastify__toast {
|
|
padding: 0 !important;
|
|
border-radius: 4px !important;
|
|
}
|
|
.Toastify__toast-body {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.Toastify__progress-bar--default {
|
|
background: rgb(3, 179, 101) !important;
|
|
}
|
|
|
|
#header-root {
|
|
position: relative;
|
|
z-index: 11;
|
|
}
|
|
|
|
.bp3-portal {
|
|
z-index: 10;
|
|
}
|
|
|
|
.bp3-popover .bp3-input {
|
|
outline: 0;
|
|
box-shadow: none;
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.bp3-popover .bp3-input:focus {
|
|
border-color: #80bdff;
|
|
outline: 0;
|
|
box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
|
|
}
|
|
|
|
.bp3-popover.bp3-minimal {
|
|
margin-top: 8px !important;
|
|
}
|
|
|
|
.layout-control.bp3-popover.bp3-minimal{
|
|
margin-top: 8px !important;
|
|
}
|
|
|
|
|
|
.bp3-datepicker {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
/* rich text editor styles */
|
|
.tox-tinymce {
|
|
border-color: #E7E7E7 !important;
|
|
}
|
|
|
|
.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type), .tox .tox-statusbar {
|
|
border-color: #E7E7E7 !important;
|
|
}
|
|
|
|
.tox .tox-toolbar__primary {
|
|
background: white !important;
|
|
border-bottom: 1px solid #E7E7E7 !important;
|
|
}
|
|
|