p5.js-web-editor/client/styles/abstracts/_placeholders.scss

131 lines
3.2 KiB
SCSS
Raw Normal View History

2016-06-21 00:05:04 +02:00
%toolbar-button {
@include themify() {
display: inline-block;
height: #{44 / $base-font-size}rem;
width: #{44 / $base-font-size}rem;
text-align: center;
border-radius: 100%;
line-height: #{46 / $base-font-size}rem;
cursor: pointer;
border: none;
outline: none;
background-color: getThemifyVariable('toolbar-button-background-color');
color: getThemifyVariable('toolbar-button-color');
2016-05-12 23:22:54 +02:00
& g {
fill: getThemifyVariable('toolbar-button-color');
}
&:hover {
background-color: getThemifyVariable('button-background-hover-color');
color: getThemifyVariable('button-hover-color');
& g {
fill: getThemifyVariable('button-hover-color');
}
2016-05-12 23:22:54 +02:00
}
&--selected {
background-color: getThemifyVariable('button-background-hover-color');
& g {
fill: getThemifyVariable('button-hover-color');
}
}
2016-05-12 23:22:54 +02:00
}
2016-06-08 22:35:59 +02:00
}
2016-06-21 05:04:41 +02:00
%icon {
@include themify() {
color: getThemifyVariable('icon-color');
2016-06-21 05:04:41 +02:00
& g {
fill: getThemifyVariable('icon-color');
}
&:hover {
color: getThemifyVariable('icon-hover-color');
& g {
opacity: 1;
fill: getThemifyVariable('icon-hover-color');
}
2016-06-21 05:04:41 +02:00
}
}
2016-09-13 23:05:42 +02:00
background-color: transparent;
border: none;
cursor: pointer;
padding: 0;
2016-06-21 05:04:41 +02:00
}
2016-06-14 03:07:00 +02:00
%button {
2016-09-13 23:05:42 +02:00
@include themify() {
background-color: getThemifyVariable('button-background-color');
color: getThemifyVariable('button-color');
cursor: pointer;
border: 1px solid getThemifyVariable('button-border-color');
border-radius: 2px;
padding: #{10 / $base-font-size}rem #{30 / $base-font-size}rem;
&:hover {
border-color: getThemifyVariable('button-background-hover-color');
background-color: getThemifyVariable('button-background-hover-color');
color: getThemifyVariable('button-hover-color');
}
&:active {
border-color: getThemifyVariable('button-background-active-color');
background-color: getThemifyVariable('button-background-active-color');
color: getThemifyVariable('button-active-color');
}
2016-06-14 03:07:00 +02:00
}
}
%preferences-button {
2016-06-21 05:04:41 +02:00
@extend %toolbar-button;
@include themify() {
color: getThemifyVariable('primary-text-color');
background-color: getThemifyVariable('modal-button-background-color');
padding: 0;
margin-bottom: #{28 / $base-font-size}rem;
line-height: #{50 / $base-font-size}rem;
& g {
fill: getThemifyVariable('primary-text-color');
}
&:hover {
background-color: getThemifyVariable('button-background-hover-color');
color: getThemifyVariable('button-hover-color');
& g {
fill: getThemifyVariable('button-hover-color');
}
}
}
}
2016-06-17 20:11:52 +02:00
2016-07-11 04:52:48 +02:00
%preference-option {
2016-09-14 17:55:53 +02:00
@include themify() {
background-color: transparent;
color: getThemifyVariable('inactive-text-color');
&:hover {
color: getThemifyVariable('primary-text-color');
}
}
2016-08-09 23:29:17 +02:00
font-size: #{12 / $base-font-size}rem;
2016-07-11 04:52:48 +02:00
cursor: pointer;
text-align: left;
margin-bottom: #{5 / $base-font-size}rem;
2016-09-14 17:55:53 +02:00
border: 0;
padding: 0;
list-style-type: none;
2016-07-11 04:52:48 +02:00
}
2016-07-15 22:47:12 +02:00
%modal {
2016-09-14 18:46:54 +02:00
@include themify() {
background-color: getThemifyVariable('modal-background-color');
border: 1px solid getThemifyVariable('modal-border-color');
box-shadow: 0 12px 12px getThemifyVariable('shadow-color');
}
border-radius: 2px;
2016-08-11 23:41:35 +02:00
z-index: 20;
}
2016-08-11 20:09:59 +02:00
%hidden-element {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}