2016-06-20 22:05:04 +00:00
|
|
|
%toolbar-button {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
display: inline-block;
|
|
|
|
height: #{44 / $base-font-size}rem;
|
|
|
|
width: #{44 / $base-font-size}rem;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
background-color: getThemifyVariable('toolbar-button-background-color');
|
|
|
|
color: getThemifyVariable('toolbar-button-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-09-13 20:42:06 +00:00
|
|
|
fill: getThemifyVariable('toolbar-button-color');
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background-color: getThemifyVariable('button-background-hover-color');
|
|
|
|
color: getThemifyVariable('button-hover-color');
|
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-09-13 20:42:06 +00:00
|
|
|
fill: getThemifyVariable('button-hover-color');
|
|
|
|
}
|
2016-05-12 21:22:54 +00:00
|
|
|
}
|
2016-09-13 20:42:06 +00:00
|
|
|
&--selected {
|
|
|
|
background-color: getThemifyVariable('button-background-hover-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-09-13 20:42:06 +00:00
|
|
|
fill: getThemifyVariable('button-hover-color');
|
|
|
|
}
|
|
|
|
}
|
2016-05-12 21:22:54 +00:00
|
|
|
}
|
2016-06-08 20:35:59 +00:00
|
|
|
}
|
2016-06-20 16:04:58 +00:00
|
|
|
|
2017-03-06 19:29:42 +00:00
|
|
|
%icon-toast{
|
|
|
|
@include themify() {
|
|
|
|
color: $toast-text-color
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2017-03-06 19:29:42 +00:00
|
|
|
fill: $toast-text-color
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: getThemifyVariable('icon-toast-hover-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2017-03-06 19:29:42 +00:00
|
|
|
opacity: 1;
|
|
|
|
fill: getThemifyVariable('icon-toast-hover-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2016-12-15 23:43:58 +00:00
|
|
|
%none-themify-icon {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2016-12-19 21:49:37 +00:00
|
|
|
%none-themify-icon-with-hover {
|
2020-04-21 21:49:02 +00:00
|
|
|
color: $medium-dark;
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2020-04-21 21:49:02 +00:00
|
|
|
fill: $medium-dark;
|
2016-12-19 21:49:37 +00:00
|
|
|
}
|
|
|
|
&:hover {
|
2020-04-21 21:49:02 +00:00
|
|
|
color: $p5js-pink;
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-12-19 21:49:37 +00:00
|
|
|
opacity: 1;
|
2020-04-21 21:49:02 +00:00
|
|
|
fill: $p5js-pink;
|
2016-12-19 21:49:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2016-06-14 01:07:00 +00:00
|
|
|
%button {
|
2016-09-13 21:05:42 +00:00
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('button-background-color');
|
|
|
|
color: getThemifyVariable('button-color');
|
|
|
|
cursor: pointer;
|
2016-12-15 23:43:58 +00:00
|
|
|
border: 2px solid getThemifyVariable('button-border-color');
|
2016-09-13 21:05:42 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: #{10 / $base-font-size}rem #{30 / $base-font-size}rem;
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2019-12-10 23:34:37 +00:00
|
|
|
fill: getThemifyVariable('button-color');
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-04-10 21:13:16 +00:00
|
|
|
&:not(disabled):hover {
|
2016-09-13 21:05:42 +00:00
|
|
|
border-color: getThemifyVariable('button-background-hover-color');
|
|
|
|
background-color: getThemifyVariable('button-background-hover-color');
|
|
|
|
color: getThemifyVariable('button-hover-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2019-01-16 17:35:34 +00:00
|
|
|
fill: getThemifyVariable('button-hover-color');
|
|
|
|
}
|
2016-09-13 21:05:42 +00:00
|
|
|
}
|
2020-04-10 21:13:16 +00:00
|
|
|
&:not(disabled):active {
|
2016-09-13 21:05:42 +00:00
|
|
|
border-color: getThemifyVariable('button-background-active-color');
|
|
|
|
background-color: getThemifyVariable('button-background-active-color');
|
|
|
|
color: getThemifyVariable('button-active-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2019-01-16 17:35:34 +00:00
|
|
|
fill: getThemifyVariable('button-active-color');
|
|
|
|
}
|
2016-09-13 21:05:42 +00:00
|
|
|
}
|
2016-06-14 01:07:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 16:04:58 +00:00
|
|
|
%preferences-button {
|
2016-06-21 03:04:41 +00:00
|
|
|
@extend %toolbar-button;
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('primary-text-color');
|
2020-04-22 20:52:47 +00:00
|
|
|
background-color: getThemifyVariable('preferences-button-background-color');
|
2016-09-13 20:42:06 +00:00
|
|
|
padding: 0;
|
|
|
|
margin-bottom: #{28 / $base-font-size}rem;
|
|
|
|
line-height: #{50 / $base-font-size}rem;
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-10-12 16:08:12 +00:00
|
|
|
fill: getThemifyVariable('modal-button-color');
|
2016-09-13 20:42:06 +00:00
|
|
|
}
|
2018-11-02 19:55:06 +00:00
|
|
|
&:enabled:hover {
|
2016-09-13 20:42:06 +00:00
|
|
|
background-color: getThemifyVariable('button-background-hover-color');
|
|
|
|
color: getThemifyVariable('button-hover-color');
|
2020-04-29 22:34:37 +00:00
|
|
|
& g, & path {
|
2016-09-13 20:42:06 +00:00
|
|
|
fill: getThemifyVariable('button-hover-color');
|
|
|
|
}
|
2018-11-02 19:55:06 +00:00
|
|
|
}
|
|
|
|
&:disabled:hover {
|
|
|
|
cursor: not-allowed;
|
2020-04-22 20:52:47 +00:00
|
|
|
background-color: getThemifyVariable('preferences-button-background-color');
|
2016-06-20 16:04:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-17 18:11:52 +00:00
|
|
|
|
2016-07-11 02:52:48 +00:00
|
|
|
%preference-option {
|
2016-09-14 15:55:53 +00:00
|
|
|
@include themify() {
|
|
|
|
background-color: transparent;
|
|
|
|
color: getThemifyVariable('inactive-text-color');
|
|
|
|
&:hover {
|
2020-04-21 21:49:02 +00:00
|
|
|
color: getThemifyVariable('heavy-text-color');
|
2016-09-14 15:55:53 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-09 21:29:17 +00:00
|
|
|
font-size: #{12 / $base-font-size}rem;
|
2016-07-11 02:52:48 +00:00
|
|
|
cursor: pointer;
|
|
|
|
text-align: left;
|
2016-10-12 16:08:12 +00:00
|
|
|
padding: 0;
|
2016-07-11 02:52:48 +00:00
|
|
|
margin-bottom: #{5 / $base-font-size}rem;
|
2016-10-12 16:08:12 +00:00
|
|
|
padding-right: #{5 / $base-font-size}rem;
|
2016-09-14 15:55:53 +00:00
|
|
|
border: 0;
|
|
|
|
list-style-type: none;
|
2016-07-11 02:52:48 +00:00
|
|
|
}
|
2016-07-15 20:47:12 +00:00
|
|
|
|
2016-07-21 19:07:53 +00:00
|
|
|
%modal {
|
2016-09-14 16:46:54 +00:00
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('modal-background-color');
|
|
|
|
border: 1px solid getThemifyVariable('modal-border-color');
|
|
|
|
box-shadow: 0 12px 12px getThemifyVariable('shadow-color');
|
|
|
|
}
|
2016-07-21 19:07:53 +00:00
|
|
|
border-radius: 2px;
|
2016-08-11 21:41:35 +00:00
|
|
|
z-index: 20;
|
2016-07-21 19:07:53 +00:00
|
|
|
}
|
2016-08-11 18:09:59 +00:00
|
|
|
|
|
|
|
%hidden-element {
|
|
|
|
position:absolute;
|
|
|
|
left:-10000px;
|
|
|
|
top:auto;
|
|
|
|
width:1px;
|
|
|
|
height:1px;
|
|
|
|
overflow:hidden;
|
|
|
|
}
|
2017-02-22 19:29:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%link {
|
|
|
|
@include themify() {
|
|
|
|
text-decoration: none;
|
2020-04-27 20:48:55 +00:00
|
|
|
color: getThemifyVariable('inactive-text-color');
|
2017-02-22 19:29:35 +00:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
2020-04-22 20:52:47 +00:00
|
|
|
color: getThemifyVariable('heavy-text-color');
|
2017-02-22 19:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-11 15:37:43 +00:00
|
|
|
}
|
2019-06-12 19:58:02 +00:00
|
|
|
|
|
|
|
%dropdown-open {
|
|
|
|
@include themify() {
|
|
|
|
background-color: map-get($theme-map, 'modal-background-color');
|
|
|
|
border: 1px solid map-get($theme-map, 'modal-border-color');
|
|
|
|
box-shadow: 0 0 18px 0 getThemifyVariable('shadow-color');
|
2020-04-22 21:45:48 +00:00
|
|
|
color: getThemifyVariable('primary-text-color');
|
2019-06-12 19:58:02 +00:00
|
|
|
}
|
|
|
|
text-align: left;
|
|
|
|
width: #{180 / $base-font-size}rem;
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
flex-direction: column;
|
2019-06-14 17:30:13 +00:00
|
|
|
top: 95%;
|
2019-06-12 19:58:02 +00:00
|
|
|
height: auto;
|
|
|
|
z-index: 9999;
|
|
|
|
border-radius: #{6 / $base-font-size}rem;
|
2019-06-19 20:21:25 +00:00
|
|
|
& li:first-child {
|
|
|
|
border-radius: #{5 / $base-font-size}rem #{5 / $base-font-size}rem 0 0;
|
|
|
|
}
|
2019-06-12 19:58:02 +00:00
|
|
|
& li:last-child {
|
|
|
|
border-radius: 0 0 #{5 / $base-font-size}rem #{5 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
& li {
|
|
|
|
& button,
|
|
|
|
& a {
|
|
|
|
@include themify() {
|
2020-04-22 21:45:48 +00:00
|
|
|
color: getThemifyVariable('primary-text-color');
|
2019-06-12 19:58:02 +00:00
|
|
|
}
|
2019-06-12 20:12:19 +00:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
padding: #{8 / $base-font-size}rem #{16 / $base-font-size}rem;
|
2019-06-12 19:58:02 +00:00
|
|
|
}
|
|
|
|
height: #{35 / $base-font-size}rem;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
& li:hover {
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('button-background-hover-color');
|
|
|
|
color: getThemifyVariable('button-hover-color')
|
|
|
|
}
|
|
|
|
& button, & a {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('button-hover-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
%dropdown-open-left {
|
|
|
|
@extend %dropdown-open;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
%dropdown-open-right {
|
|
|
|
@extend %dropdown-open;
|
|
|
|
right: 0;
|
|
|
|
}
|