2017-10-19 16:40:00 -04:00
|
|
|
@import "../../css/colors.css";
|
|
|
|
@import "../../css/units.css";
|
2017-08-30 10:50:24 -04:00
|
|
|
|
|
|
|
.editor-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-10-25 13:37:41 -04:00
|
|
|
padding: calc(4 * $grid-unit);
|
2017-08-30 10:50:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2017-10-23 10:35:30 -04:00
|
|
|
.editor-container-top {
|
|
|
|
border-bottom: 1px dashed $ui-pane-border;
|
2017-10-25 13:37:41 -04:00
|
|
|
padding-bottom: calc(2 * $grid-unit);
|
2017-10-23 10:35:30 -04:00
|
|
|
}
|
|
|
|
|
2017-09-06 18:01:49 -04:00
|
|
|
.top-align-row {
|
2017-10-23 10:35:30 -04:00
|
|
|
display: flex;
|
2017-10-25 13:37:41 -04:00
|
|
|
padding-top: calc(5 * $grid-unit);
|
2017-09-06 18:01:49 -04:00
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2017-08-30 10:50:24 -04:00
|
|
|
.row + .row {
|
2017-10-25 13:37:41 -04:00
|
|
|
margin-top: calc(2 * $grid-unit);
|
2017-08-30 10:50:24 -04:00
|
|
|
}
|
|
|
|
|
2017-10-23 10:35:30 -04:00
|
|
|
.mod-dashed-border {
|
|
|
|
border-right: 1px dashed $ui-pane-border;
|
2017-10-25 13:37:41 -04:00
|
|
|
padding-right: calc(3 * $grid-unit);
|
2017-08-30 10:50:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$border-radius: 0.25rem;
|
|
|
|
|
2017-10-23 10:35:30 -04:00
|
|
|
.button-group-button {
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid $ui-pane-border;
|
2017-08-30 10:50:24 -04:00
|
|
|
border-radius: 0;
|
|
|
|
border-left: none;
|
2017-10-25 13:37:41 -04:00
|
|
|
padding: calc(2 * $grid-unit);
|
2017-10-23 10:35:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-group-button:last-of-type {
|
2017-08-30 10:50:24 -04:00
|
|
|
border-top-right-radius: $border-radius;
|
|
|
|
border-bottom-right-radius: $border-radius;
|
|
|
|
}
|
|
|
|
|
2017-10-23 10:35:30 -04:00
|
|
|
.button-group-button:first-of-type {
|
2017-08-30 10:50:24 -04:00
|
|
|
border-left: 1px solid #ddd;
|
|
|
|
border-top-left-radius: $border-radius;
|
|
|
|
border-bottom-left-radius: $border-radius;
|
|
|
|
}
|
|
|
|
|
2017-10-23 10:35:30 -04:00
|
|
|
.button-group-button-icon {
|
2017-10-25 13:37:41 -04:00
|
|
|
width: 1.25rem;
|
|
|
|
height: 1.25rem;
|
2017-10-23 10:35:30 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mod-mode-tools {
|
2017-10-25 13:37:41 -04:00
|
|
|
margin-left: calc(3 * $grid-unit);
|
2017-08-30 10:50:24 -04:00
|
|
|
}
|
2017-09-06 18:01:49 -04:00
|
|
|
|
|
|
|
.canvas-container {
|
|
|
|
width: 503px;
|
|
|
|
height: 403px;
|
|
|
|
border: 1px solid #e8edf1;
|
2017-10-23 10:35:30 -04:00
|
|
|
border-radius: .25rem;
|
2017-09-06 18:01:49 -04:00
|
|
|
position: relative;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mode-selector {
|
|
|
|
display: flex;
|
2017-10-25 13:37:41 -04:00
|
|
|
margin-right: calc(2 * $grid-unit);
|
2017-10-23 10:35:30 -04:00
|
|
|
max-width: 5.5rem;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-start;
|
|
|
|
align-content: flex-start;
|
|
|
|
justify-content: space-between;
|
2017-09-06 18:10:19 -04:00
|
|
|
}
|