scratch-paint/src/components/paint-editor/paint-editor.css

171 lines
3.1 KiB
CSS
Raw Normal View History

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;
padding: calc(3 * $grid-unit);
2017-08-30 10:50:24 -04:00
}
.row {
display: flex;
flex-direction: row;
align-items: center;
}
.editor-container-top {
border-bottom: 1px dashed $ui-pane-border;
padding-bottom: calc(2 * $grid-unit);
}
2017-09-06 18:01:49 -04:00
.top-align-row {
display: flex;
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 {
margin-top: calc(2 * $grid-unit);
2017-08-30 10:50:24 -04:00
}
.mod-dashed-border {
border-right: 1px dashed $ui-pane-border;
padding-right: calc(2 * $grid-unit);
2017-08-30 10:50:24 -04:00
}
2017-11-07 14:08:26 -05:00
.mod-unselect {
user-select: none;
}
.mod-labeled-icon-height {
height: 2.85rem; /* for the second row so the dashed borders are equal in size */
}
2017-08-30 10:50:24 -04:00
$border-radius: 0.25rem;
.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;
padding: .35rem;
}
.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;
}
.button-group-button:first-of-type {
border-left: 1px solid $ui-pane-border;
2017-08-30 10:50:24 -04:00
border-top-left-radius: $border-radius;
border-bottom-left-radius: $border-radius;
}
.button-group-button.mod-left-border {
border-left: 1px solid $ui-pane-border;
}
.button-group-button.mod-no-right-border {
border-right: none;
}
.button-group-button-icon {
width: 1.25rem;
height: 1.25rem;
vertical-align: middle;
}
2017-11-07 14:08:26 -05:00
.mod-context-menu {
display: flex;
flex-direction: column;
}
.mod-top-divider {
border-top: 1px solid $ui-pane-border;
}
.mod-menu-item {
display: flex;
margin: 0 -$grid-unit;
min-width: 6.25rem;
padding: calc(3 * $grid-unit);
white-space: nowrap;
cursor: pointer;
transition: 0.1s ease;
align-items: center;
font-family: "Helvetica Neue", Helvetica, sans-serif;
2017-11-07 14:08:26 -05:00
}
.mod-disabled {
cursor: auto;
}
.mod-menu-item:hover {
background: $motion-transparent;
}
.mod-disabled:hover {
background-color: transparent;
}
.menu-item-icon {
margin-right: calc(2 * $grid-unit);
2017-11-07 14:08:26 -05:00
}
.mod-mode-tools {
margin-left: calc(2 * $grid-unit);
2017-08-30 10:50:24 -04:00
}
2017-09-06 18:01:49 -04:00
.canvas-container {
width: 480px;
height: 360px;
box-sizing: content-box;
2017-09-06 18:01:49 -04:00
border: 1px solid #e8edf1;
border-radius: .25rem;
2017-09-06 18:01:49 -04:00
position: relative;
overflow: visible;
}
.with-eye-dropper {
cursor: none;
}
2017-09-06 18:01:49 -04:00
.mode-selector {
display: flex;
margin-right: calc(2 * $grid-unit);
2017-11-07 14:08:26 -05:00
max-width: 6rem;
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
}
.zoom-controls {
display: flex;
flex-direction: row-reverse;
}
2017-11-07 14:08:26 -05:00
2017-12-08 16:52:37 -05:00
.color-picker-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
@media only screen and (max-width: $full-size-paint) {
.editor-container {
padding: calc(3 * $grid-unit) $grid-unit;
}
2017-11-07 14:08:26 -05:00
.mode-selector {
margin-right: $grid-unit;
2017-11-07 14:08:26 -05:00
flex-direction: column;
justify-content: flex-start;
}
}