178 lines
3.0 KiB
SCSS
178 lines
3.0 KiB
SCSS
/**
|
|
* Safari will limit input in input elements to one character when user-select
|
|
* none is applied. Other browsers already support selecting within inputs while
|
|
* user-select is none. As such, disallow user-select except on inputs.
|
|
*/
|
|
*:not(input) {
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
overflow: hidden;
|
|
color: $defaultColor;
|
|
background: $defaultBackground;
|
|
&.filmstrip-only {
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
body, input, textarea, keygen, select, button {
|
|
font-family: $baseFontFamily !important;
|
|
}
|
|
|
|
#nowebrtc {
|
|
display:none;
|
|
}
|
|
|
|
.no-fa-video-camera, .fa-microphone-slash {
|
|
color: #636363;
|
|
}
|
|
|
|
button, input, select, textarea {
|
|
margin: 0;
|
|
vertical-align: baseline;
|
|
color: $inputColor;
|
|
font-size: 1em;
|
|
}
|
|
|
|
button, select, input[type="button"],
|
|
input[type="reset"], input[type="submit"] {
|
|
height: 32px;
|
|
line-height: 32px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
textarea {
|
|
overflow: hidden;
|
|
word-wrap: break-word;
|
|
resize: none;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
input[type='text'], input[type='password'], textarea {
|
|
outline: none; /* removes the default outline */
|
|
resize: none; /* prevents the user-resizing, adjust to taste */
|
|
}
|
|
|
|
button {
|
|
color: #FFF;
|
|
background-color: $buttonBackground;
|
|
border-radius: $borderRadius;
|
|
|
|
&.no-icon {
|
|
padding: 0 1em;
|
|
}
|
|
}
|
|
|
|
button,
|
|
form {
|
|
display: block;
|
|
}
|
|
|
|
.watermark {
|
|
display: block;
|
|
position: absolute;
|
|
top: 15;
|
|
width: 186px;
|
|
height: 74px;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
z-index: $zindex2;
|
|
}
|
|
|
|
.leftwatermark {
|
|
left: $defaultToolbarSize;
|
|
margin-left: 10px;
|
|
background-image: url($defaultWatermarkLink);
|
|
background-position: center left;
|
|
}
|
|
|
|
.rightwatermark {
|
|
right: 15;
|
|
background-position: center right;
|
|
}
|
|
|
|
.poweredby {
|
|
position: absolute;
|
|
left: 25;
|
|
bottom: 7;
|
|
font-size: 11pt;
|
|
color: rgba(255,255,255,.50);
|
|
text-decoration: none;
|
|
z-index: $poweredByZ;
|
|
}
|
|
|
|
.connected {
|
|
color: #21B9FC;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.lastN, .disconnected {
|
|
color: #a3a3a3;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/**
|
|
* Tooltips
|
|
**/
|
|
.tipsy {
|
|
z-index: $tooltipsZ;
|
|
&-inner {
|
|
background-color: $tooltipBg;
|
|
max-width: 350px;
|
|
}
|
|
|
|
&-arrow {
|
|
border-color: $tooltipBg;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Dialogs fade
|
|
*/
|
|
.aui-blanket {
|
|
visibility: visible;
|
|
}
|
|
|
|
#inviteLinkRef {
|
|
-webkit-user-select: text;
|
|
user-select: text;
|
|
}
|
|
|
|
/**
|
|
* Re-style default OS scrollbar.
|
|
*/
|
|
::-webkit-scrollbar {
|
|
background: transparent;
|
|
width: 7px;
|
|
}
|
|
|
|
::-webkit-scrollbar-button {
|
|
display: none;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-track-piece {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(0, 0, 0, .5);
|
|
border-radius: 4px;
|
|
}
|