p5.js-web-editor/client/styles/components/_copyable-input.scss

57 lines
1.2 KiB
SCSS
Raw Normal View History

2017-10-30 19:38:41 +01:00
.copyable-input__value-container {
position: relative;
}
.copyable-input__tooltip {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
2017-10-30 22:24:43 +01:00
}
.copyable-input__value {
width: 100%;
font-size: #{16 / $base-font-size}rem;
2018-05-09 02:57:16 +02:00
margin-top: #{5 / $base-font-size}rem;
2017-10-30 22:24:43 +01:00
}
.copyable-input__label {
width: 100%;
font-size: #{12 / $base-font-size}rem;
@include themify() {
color: getThemifyVariable('inactive-text-color');
}
}
.copyable-input {
padding-bottom: #{30 / $base-font-size}rem;
display: flex;
flex-wrap: wrap;
}
.copyable-input__value-container {
width: 100%;
}
2018-05-09 02:57:16 +02:00
.copyable-input {
.tooltipped::after {
@include themify() {
background-color: getThemifyVariable('button-background-hover-color');
color: getThemifyVariable('button-hover-color');
}
font-family: Montserrat, sans-serif;
font-size: #{12 / $base-font-size}rem;
bottom: #{41 / $base-font-size}rem;
2017-10-30 22:24:43 +01:00
}
2018-05-09 02:57:16 +02:00
.tooltipped-n::before,
.tooltipped::before,
{
@include themify() {
color: getThemifyVariable('button-background-hover-color');
border-top-color: getThemifyVariable('button-background-hover-color');
}
top: #{14 / $base-font-size}rem;
2017-10-30 22:24:43 +01:00
}
2017-10-30 19:38:41 +01:00
}