controls.scss 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. @use "sass:math";
  2. .msp-control-row {
  3. position: relative;
  4. height: $row-height;
  5. background: $default-background;
  6. margin-top: 1px;
  7. select, button, input[type=text] {
  8. @extend .msp-form-control;
  9. }
  10. button {
  11. @extend .msp-btn;
  12. @extend .msp-btn-block;
  13. }
  14. > span.msp-control-row-label, > button.msp-control-button-label {
  15. line-height: $row-height;
  16. display: block;
  17. width: $control-label-width + $control-spacing;
  18. text-align: right;
  19. padding: 0 $control-spacing;
  20. color: color-lower-contrast($font-color, 15%);
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. white-space: nowrap;
  24. position: relative;
  25. @include non-selectable;
  26. }
  27. > button.msp-control-button-label {
  28. background: $default-background;
  29. cursor: pointer;
  30. }
  31. .msp-control-current {
  32. background: $default-background;
  33. }
  34. > div.msp-control-row-ctrl {
  35. position: absolute;
  36. left: $control-label-width + $control-spacing;
  37. top: 0;
  38. right: 0;
  39. bottom: 0;
  40. }
  41. > div {
  42. background: $msp-form-control-background;
  43. }
  44. > .msp-flex-row {
  45. background: $default-background;
  46. }
  47. }
  48. .msp-control-label-short {
  49. > span {
  50. width: $control-label-short-width + $control-spacing !important;
  51. }
  52. > div:nth-child(2) {
  53. left: $control-label-short-width + $control-spacing !important;
  54. }
  55. }
  56. .msp-control-col-2 {
  57. float: left;
  58. width: 50%;
  59. }
  60. .msp-control-group {
  61. position: relative;
  62. }
  63. .msp-toggle-button {
  64. .msp-icon {
  65. display: inline-block;
  66. margin-right: 6px;
  67. }
  68. > div > button:hover {
  69. border-color: color-increase-contrast($msp-form-control-background, 5%) !important;
  70. border: none;
  71. outline-offset: -1px !important;
  72. outline: 1px solid color-increase-contrast($msp-form-control-background, 20%) !important;
  73. }
  74. }
  75. .msp-slider {
  76. > div:first-child {
  77. position: absolute;
  78. top: 0;
  79. left: 18px;
  80. bottom: 0;
  81. right: 62px;
  82. display: flex;
  83. }
  84. > div:last-child {
  85. position: absolute;
  86. height: $row-height;
  87. line-height: $row-height;
  88. text-align: center;
  89. right: 0;
  90. width: 50px;
  91. top: 0;
  92. bottom: 0;
  93. }
  94. input[type=text] {
  95. padding-right: 6px;
  96. padding-left: 4px;
  97. font-size: 80%;
  98. text-align: right;
  99. }
  100. // input[type=range] {
  101. // width: 100%;
  102. // }
  103. }
  104. .msp-slider2 {
  105. > div:first-child {
  106. position: absolute;
  107. height: $row-height;
  108. line-height: $row-height;
  109. text-align: center;
  110. left: 0;
  111. width: 25px;
  112. top: 0;
  113. bottom: 0;
  114. font-size: 80%;
  115. }
  116. > div:nth-child(2) {
  117. position: absolute;
  118. top: 0;
  119. left: 35px;
  120. bottom: 0;
  121. right: 37px;
  122. display: flex;
  123. }
  124. > div:last-child {
  125. position: absolute;
  126. height: $row-height;
  127. line-height: $row-height;
  128. text-align: center;
  129. right: 0;
  130. width: 25px;
  131. top: 0;
  132. bottom: 0;
  133. font-size: 80%;
  134. }
  135. input[type=text] {
  136. padding-right: 4px;
  137. padding-left: 4px;
  138. font-size: 80%;
  139. text-align: center;
  140. }
  141. // input[type=range] {
  142. // width: 100%;
  143. // }
  144. }
  145. .msp-toggle-color-picker {
  146. button {
  147. border: $control-spacing solid $msp-form-control-background !important;
  148. margin: 0;
  149. text-align: center;
  150. padding-right: $control-spacing;
  151. padding-left: $control-spacing;
  152. &:hover {
  153. border-color: color-increase-contrast($msp-form-control-background, 5%) !important;
  154. border: none;
  155. outline-offset: -1px !important;
  156. outline: 1px solid color-increase-contrast($msp-form-control-background, 20%) !important;
  157. }
  158. }
  159. .msp-color-picker {
  160. position: absolute;
  161. z-index: 100000;
  162. background: $default-background;
  163. border-top: 1px solid $default-background;
  164. padding-bottom: math.div($control-spacing, 2);
  165. width: 100%;
  166. // input[type=text] {
  167. // background: $msp-form-control-background !important;
  168. // }
  169. }
  170. }
  171. .msp-toggle-color-picker-above {
  172. .msp-color-picker {
  173. top: -2 * 32px - 16px - math.div($control-spacing, 2);
  174. height: 2 * 32px + 16px + math.div($control-spacing, 2);
  175. }
  176. }
  177. .msp-toggle-color-picker-below {
  178. .msp-color-picker {
  179. top: $row-height;
  180. height: 2 * 32px + 16px;
  181. }
  182. }
  183. .msp-control-offset {
  184. padding-left: $control-spacing;
  185. }
  186. .msp-accent-offset {
  187. padding-left: 1px;
  188. margin-left: $control-spacing - 2;
  189. border-left: 2px solid $color-accent-orange;
  190. }
  191. // .msp-accent-offset-right {
  192. // margin-left: $control-spacing;
  193. // padding-right: 1px;
  194. // border-right: 2px solid $color-accent-orange;
  195. // }
  196. .msp-control-group-wrapper {
  197. //border-left-width: math.div($control-spacing, 2);
  198. //border-left-style: solid;
  199. //border-left-color: color-increase-contrast($default-background, 10%);
  200. margin-bottom: 0px;
  201. margin-top: 1px;
  202. }
  203. // TODO : get rid of the important
  204. .msp-control-group-header {
  205. background: $default-background;
  206. > button, div {
  207. padding-left: 4px; // math.div($control-spacing, 2) !important;
  208. text-align: left;
  209. height: 24px !important;
  210. line-height: 24px !important;
  211. font-size: 85% !important;
  212. background: $default-background !important;
  213. color: color-lower-contrast($font-color, 15%);
  214. }
  215. .msp-icon {
  216. height: 24px !important;
  217. line-height: 24px !important;
  218. }
  219. > span {
  220. padding-left: math.div($control-spacing, 2);
  221. line-height: math.div(2 * $row-height, 3);
  222. font-size: 70%;
  223. background: $default-background;
  224. color: color-lower-contrast($font-color, 15%);
  225. }
  226. }
  227. .msp-control-current {
  228. background: $default-background;
  229. }
  230. .msp-control-group-footer {
  231. background: color-increase-contrast($default-background, 5%);
  232. height: math.div($control-spacing, 2);
  233. font-size: 1px;
  234. margin-top: 1px;
  235. }
  236. .msp-control-group-expander {
  237. display: block;
  238. position: absolute;
  239. line-height: $row-height;
  240. padding: 0;
  241. left: 0;
  242. top: 0;
  243. width: $control-label-width + $control-spacing;
  244. text-align: left;
  245. background: transparent;
  246. .msp-icon {
  247. line-height: $row-height - 3;
  248. width: $row-height - 1;
  249. text-align: center;
  250. // display: inline-block;
  251. font-size: 100%;
  252. }
  253. }
  254. .msp-plugin-layout_controls {
  255. position: absolute;
  256. left: $control-spacing;
  257. top: $control-spacing;
  258. }
  259. .msp-plugin-layout_controls > button:first-child {
  260. margin-right: 6px;
  261. }
  262. .msp-empty-control {
  263. display: none;
  264. }
  265. .msp-control .msp-btn-block {
  266. margin-bottom: 0px;
  267. margin-top: 0px;
  268. }
  269. .msp-row-text {
  270. height: $row-height;
  271. position: relative;
  272. background: $default-background;
  273. margin-top: 1px;
  274. > div {
  275. line-height: $row-height;
  276. text-align: center;
  277. color: color-lower-contrast($font-color, 15%);
  278. }
  279. }
  280. .msp-help span {
  281. display: none;
  282. }
  283. .msp-help:hover span {
  284. display: inline-block;
  285. background: linear-gradient($default-background, change-color($default-background, $alpha: 0.8));
  286. }
  287. .msp-help-text {
  288. position: relative;
  289. background: $default-background;
  290. margin-top: 1px;
  291. > div {
  292. padding: (math.div($control-spacing, 2)) $control-spacing;
  293. text-align: left;
  294. color: color-lower-contrast($font-color, 15%);
  295. }
  296. }
  297. .msp-help-description {
  298. font-style: italic;
  299. }
  300. .msp-help-legend {
  301. padding-top: $control-spacing;
  302. }
  303. .msp-scale-legend {
  304. > div {
  305. width: 100%;
  306. height: $control-spacing * 3;
  307. > span {
  308. padding: math.div($control-spacing, 2);
  309. color: white;
  310. font-weight: bold;
  311. background-color: rgba(0, 0, 0, 0.2);
  312. }
  313. }
  314. }
  315. .msp-table-legend {
  316. > div {
  317. // min-width: 60px;
  318. margin-right: math.div($control-spacing, 2);
  319. display: inline-flex;
  320. .msp-table-legend-color {
  321. width: $control-spacing * 3;
  322. height: $control-spacing * 2;
  323. }
  324. .msp-table-legend-text {
  325. margin: 0 (math.div($control-spacing, 2));
  326. }
  327. }
  328. }
  329. .msp-image-preview {
  330. position: relative;
  331. background: $default-background;
  332. margin-top: 1px;
  333. padding: $control-spacing;
  334. canvas {
  335. @include user-select(none);
  336. }
  337. > span {
  338. margin-top: 6px;
  339. display: block;
  340. text-align: center;
  341. font-size: 80%;
  342. line-height: 15px;
  343. }
  344. }
  345. .msp-copy-image-wrapper {
  346. position: relative;
  347. div {
  348. font-weight: bold;
  349. padding: 3px;
  350. margin: 1px 0;
  351. width: 100%;
  352. background: $msp-form-control-background;
  353. text-align: center;
  354. }
  355. img {
  356. margin-top: 1px;
  357. }
  358. }
  359. .msp-text-area-wrapper {
  360. position: relative;
  361. height: 3 * $row-height !important;
  362. textarea {
  363. border: none;
  364. width: 100%;
  365. height: 100%;
  366. background: $msp-form-control-background;
  367. padding: math.div($control-spacing, 2) $control-spacing;
  368. resize: none;
  369. font-size: 12px;
  370. line-height: 16px;
  371. }
  372. }