123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- @use "sass:math";
- .msp-control-row {
- position: relative;
- height: $row-height;
- background: $default-background;
- margin-top: 1px;
- select, button, input[type=text] {
- @extend .msp-form-control;
- }
- button {
- @extend .msp-btn;
- @extend .msp-btn-block;
- }
- > span.msp-control-row-label, > button.msp-control-button-label {
- line-height: $row-height;
- display: block;
- width: $control-label-width + $control-spacing;
- text-align: right;
- padding: 0 $control-spacing;
- color: color-lower-contrast($font-color, 15%);
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- position: relative;
- @include non-selectable;
- }
- > button.msp-control-button-label {
- background: $default-background;
- cursor: pointer;
- }
- .msp-control-current {
- background: $default-background;
- }
- > div.msp-control-row-ctrl {
- position: absolute;
- left: $control-label-width + $control-spacing;
- top: 0;
- right: 0;
- bottom: 0;
- }
- > div {
- background: $msp-form-control-background;
- }
- > .msp-flex-row {
- background: $default-background;
- }
- }
- .msp-control-label-short {
- > span {
- width: $control-label-short-width + $control-spacing !important;
- }
- > div:nth-child(2) {
- left: $control-label-short-width + $control-spacing !important;
- }
- }
- .msp-control-col-2 {
- float: left;
- width: 50%;
- }
- .msp-control-group {
- position: relative;
- }
- .msp-toggle-button {
- .msp-icon {
- display: inline-block;
- margin-right: 6px;
- }
- > div > button:hover {
- border-color: color-increase-contrast($msp-form-control-background, 5%) !important;
- border: none;
- outline-offset: -1px !important;
- outline: 1px solid color-increase-contrast($msp-form-control-background, 20%) !important;
- }
- }
- .msp-slider {
- > div:first-child {
- position: absolute;
- top: 0;
- left: 18px;
- bottom: 0;
- right: 62px;
- display: flex;
- }
- > div:last-child {
- position: absolute;
- height: $row-height;
- line-height: $row-height;
- text-align: center;
- right: 0;
- width: 50px;
- top: 0;
- bottom: 0;
- }
- input[type=text] {
- padding-right: 6px;
- padding-left: 4px;
- font-size: 80%;
- text-align: right;
- }
- // input[type=range] {
- // width: 100%;
- // }
- }
- .msp-slider2 {
- > div:first-child {
- position: absolute;
- height: $row-height;
- line-height: $row-height;
- text-align: center;
- left: 0;
- width: 25px;
- top: 0;
- bottom: 0;
- font-size: 80%;
- }
- > div:nth-child(2) {
- position: absolute;
- top: 0;
- left: 35px;
- bottom: 0;
- right: 37px;
- display: flex;
- }
- > div:last-child {
- position: absolute;
- height: $row-height;
- line-height: $row-height;
- text-align: center;
- right: 0;
- width: 25px;
- top: 0;
- bottom: 0;
- font-size: 80%;
- }
- input[type=text] {
- padding-right: 4px;
- padding-left: 4px;
- font-size: 80%;
- text-align: center;
- }
- // input[type=range] {
- // width: 100%;
- // }
- }
- .msp-toggle-color-picker {
- button {
- border: $control-spacing solid $msp-form-control-background !important;
- margin: 0;
- text-align: center;
- padding-right: $control-spacing;
- padding-left: $control-spacing;
- &:hover {
- border-color: color-increase-contrast($msp-form-control-background, 5%) !important;
- border: none;
- outline-offset: -1px !important;
- outline: 1px solid color-increase-contrast($msp-form-control-background, 20%) !important;
- }
- }
- .msp-color-picker {
- position: absolute;
- z-index: 100000;
- background: $default-background;
- border-top: 1px solid $default-background;
- padding-bottom: math.div($control-spacing, 2);
- width: 100%;
- // input[type=text] {
- // background: $msp-form-control-background !important;
- // }
- }
- }
- .msp-toggle-color-picker-above {
- .msp-color-picker {
- top: -2 * 32px - 16px - math.div($control-spacing, 2);
- height: 2 * 32px + 16px + math.div($control-spacing, 2);
- }
- }
- .msp-toggle-color-picker-below {
- .msp-color-picker {
- top: $row-height;
- height: 2 * 32px + 16px;
- }
- }
- .msp-control-offset {
- padding-left: $control-spacing;
- }
- .msp-accent-offset {
- padding-left: 1px;
- margin-left: $control-spacing - 2;
- border-left: 2px solid $color-accent-orange;
- }
- // .msp-accent-offset-right {
- // margin-left: $control-spacing;
- // padding-right: 1px;
- // border-right: 2px solid $color-accent-orange;
- // }
- .msp-control-group-wrapper {
- //border-left-width: math.div($control-spacing, 2);
- //border-left-style: solid;
- //border-left-color: color-increase-contrast($default-background, 10%);
- margin-bottom: 0px;
- margin-top: 1px;
- }
- // TODO : get rid of the important
- .msp-control-group-header {
- background: $default-background;
- > button, div {
- padding-left: 4px; // math.div($control-spacing, 2) !important;
- text-align: left;
- height: 24px !important;
- line-height: 24px !important;
- font-size: 85% !important;
- background: $default-background !important;
- color: color-lower-contrast($font-color, 15%);
- }
- .msp-icon {
- height: 24px !important;
- line-height: 24px !important;
- }
- > span {
- padding-left: math.div($control-spacing, 2);
- line-height: math.div(2 * $row-height, 3);
- font-size: 70%;
- background: $default-background;
- color: color-lower-contrast($font-color, 15%);
- }
- }
- .msp-control-current {
- background: $default-background;
- }
- .msp-control-group-footer {
- background: color-increase-contrast($default-background, 5%);
- height: math.div($control-spacing, 2);
- font-size: 1px;
- margin-top: 1px;
- }
- .msp-control-group-expander {
- display: block;
- position: absolute;
- line-height: $row-height;
- padding: 0;
- left: 0;
- top: 0;
- width: $control-label-width + $control-spacing;
- text-align: left;
- background: transparent;
- .msp-icon {
- line-height: $row-height - 3;
- width: $row-height - 1;
- text-align: center;
- // display: inline-block;
- font-size: 100%;
- }
- }
- .msp-plugin-layout_controls {
- position: absolute;
- left: $control-spacing;
- top: $control-spacing;
- }
- .msp-plugin-layout_controls > button:first-child {
- margin-right: 6px;
- }
- .msp-empty-control {
- display: none;
- }
- .msp-control .msp-btn-block {
- margin-bottom: 0px;
- margin-top: 0px;
- }
- .msp-row-text {
- height: $row-height;
- position: relative;
- background: $default-background;
- margin-top: 1px;
- > div {
- line-height: $row-height;
- text-align: center;
- color: color-lower-contrast($font-color, 15%);
- }
- }
- .msp-help span {
- display: none;
- }
- .msp-help:hover span {
- display: inline-block;
- background: linear-gradient($default-background, change-color($default-background, $alpha: 0.8));
- }
- .msp-help-text {
- position: relative;
- background: $default-background;
- margin-top: 1px;
- > div {
- padding: (math.div($control-spacing, 2)) $control-spacing;
- text-align: left;
- color: color-lower-contrast($font-color, 15%);
- }
- }
- .msp-help-description {
- font-style: italic;
- }
- .msp-help-legend {
- padding-top: $control-spacing;
- }
- .msp-scale-legend {
- > div {
- width: 100%;
- height: $control-spacing * 3;
- > span {
- padding: math.div($control-spacing, 2);
- color: white;
- font-weight: bold;
- background-color: rgba(0, 0, 0, 0.2);
- }
- }
- }
- .msp-table-legend {
- > div {
- // min-width: 60px;
- margin-right: math.div($control-spacing, 2);
- display: inline-flex;
- .msp-table-legend-color {
- width: $control-spacing * 3;
- height: $control-spacing * 2;
- }
- .msp-table-legend-text {
- margin: 0 (math.div($control-spacing, 2));
- }
- }
- }
- .msp-image-preview {
- position: relative;
- background: $default-background;
- margin-top: 1px;
- padding: $control-spacing;
- canvas {
- @include user-select(none);
- }
- > span {
- margin-top: 6px;
- display: block;
- text-align: center;
- font-size: 80%;
- line-height: 15px;
- }
- }
- .msp-copy-image-wrapper {
- position: relative;
- div {
- font-weight: bold;
- padding: 3px;
- margin: 1px 0;
- width: 100%;
- background: $msp-form-control-background;
- text-align: center;
- }
- img {
- margin-top: 1px;
- }
- }
- .msp-text-area-wrapper {
- position: relative;
- height: 3 * $row-height !important;
- textarea {
- border: none;
- width: 100%;
- height: 100%;
- background: $msp-form-control-background;
- padding: math.div($control-spacing, 2) $control-spacing;
- resize: none;
- font-size: 12px;
- line-height: 16px;
- }
- }
|