Use padding for extended colorpicker background "border"
This commit is contained in:
parent
dd530dcdc8
commit
e732eca097
@ -24,22 +24,33 @@
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@use "ts/sass/button_mixins" as button;
|
@use "ts/sass/button_mixins" as button;
|
||||||
|
|
||||||
|
@import "ts/node_modules/bootstrap/scss/functions";
|
||||||
|
@import "ts/node_modules/bootstrap/scss/variables";
|
||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background: content-box linear-gradient(217deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0) 70.71%),
|
|
||||||
content-box linear-gradient(127deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 70.71%),
|
|
||||||
content-box linear-gradient(336deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%),
|
|
||||||
content-box white;
|
|
||||||
|
|
||||||
width: calc(var(--toolbar-size) - 0px);
|
width: calc(var(--toolbar-size) - 0px);
|
||||||
height: calc(var(--toolbar-size) - 0px);
|
height: calc(var(--toolbar-size) - 0px);
|
||||||
|
|
||||||
border-width: 5px;
|
padding: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-light {
|
.btn-light {
|
||||||
@include button.light-hover-active;
|
@include button.light-hover-active;
|
||||||
|
|
||||||
|
background: content-box linear-gradient(217deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0) 70.71%),
|
||||||
|
content-box linear-gradient(127deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 70.71%),
|
||||||
|
content-box linear-gradient(336deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%),
|
||||||
|
border-box $light;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-secondary {
|
||||||
|
background: content-box linear-gradient(217deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0) 70.71%),
|
||||||
|
content-box linear-gradient(127deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 70.71%),
|
||||||
|
content-box linear-gradient(336deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%),
|
||||||
|
border-box $secondary;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
|
Loading…
Reference in New Issue
Block a user