Sengi-Windows-MacOS-Linux/src/sass/_commons.scss

76 lines
1.7 KiB
SCSS
Raw Normal View History

2019-06-23 22:49:55 +02:00
@import "variables";
.themed-form{
background-color: $column-color;
border: 1px $button-border-color solid;
padding: 2px 0 2px 5px;
// border-width: 1px;
color: #fff;
&:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
outline: 0px;
}
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
2018-10-02 03:44:59 +02:00
.waiting-icon {
width: 40px;
display: block;
2019-06-16 01:26:21 +02:00
margin: 5px auto;
}
.flexcroll {
2019-08-10 20:03:06 +02:00
scrollbar-color: $scrollbar-color-thumb #0f111a;
2019-08-10 20:15:09 +02:00
scrollbar-width: thin;
2019-08-10 20:03:06 +02:00
scrollbar-face-color: $scrollbar-color;
scrollbar-shadow-color: $scrollbar-color;
scrollbar-highlight-color: $scrollbar-color;
scrollbar-3dlight-color: $scrollbar-color;
scrollbar-darkshadow-color: $scrollbar-color;
scrollbar-track-color: $scrollbar-color;
2019-08-10 20:15:09 +02:00
scrollbar-arrow-color: $scrollbar-color;
2019-06-16 01:26:21 +02:00
&::-webkit-scrollbar {
2019-08-10 20:03:06 +02:00
width: $scroll-bar-width;
}
2019-06-16 01:26:21 +02:00
&::-webkit-scrollbar-thumb {
-webkit-border-radius: 0px;
border-radius: 0px;
2019-08-10 20:03:06 +02:00
background: $scrollbar-color-thumb;
}
2019-04-14 05:04:19 +02:00
}
:host ::ng-deep .emoji-small {
width: 16px;
height: 16px;
vertical-align: middle;
2019-04-26 16:02:04 +02:00
margin: 0 2px;
2019-04-14 05:04:19 +02:00
}
:host ::ng-deep .emoji-medium {
width: 20px;
height: 20px;
vertical-align: middle;
2019-06-16 01:26:21 +02:00
}
.noselect {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome and Opera */
2018-10-02 03:44:59 +02:00
}