2017-04-13 22:32:02 +00:00
|
|
|
/**
|
|
|
|
* 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) {
|
2014-10-06 10:29:48 +00:00
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2017-02-21 19:45:46 +00:00
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-09-11 21:54:32 +00:00
|
|
|
font-size: 12px;
|
2014-02-18 19:11:27 +00:00
|
|
|
font-weight: 400;
|
2015-11-05 17:27:26 +00:00
|
|
|
overflow: hidden;
|
2017-02-21 19:45:46 +00:00
|
|
|
color: $defaultColor;
|
|
|
|
background: $defaultBackground;
|
|
|
|
&.filmstrip-only {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-02-21 19:45:46 +00:00
|
|
|
body, input, textarea, keygen, select, button {
|
2016-09-02 09:53:22 +00:00
|
|
|
font-family: $baseFontFamily !important;
|
2016-06-23 19:48:38 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 11:22:23 +00:00
|
|
|
#nowebrtc {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-fa-video-camera, .fa-microphone-slash {
|
|
|
|
color: #636363;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, input, select, textarea {
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: baseline;
|
2016-10-12 00:08:24 +00:00
|
|
|
color: $inputColor;
|
|
|
|
font-size: 1em;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2016-09-11 21:54:32 +00:00
|
|
|
button, select, input[type="button"],
|
|
|
|
input[type="reset"], input[type="submit"] {
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 4px;
|
2013-12-16 11:22:23 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-11-09 16:46:58 +00:00
|
|
|
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 */
|
|
|
|
}
|
|
|
|
|
2016-09-11 21:54:32 +00:00
|
|
|
button {
|
|
|
|
color: #FFF;
|
2016-10-12 00:08:24 +00:00
|
|
|
background-color: $buttonBackground;
|
2016-09-11 21:54:32 +00:00
|
|
|
border-radius: $borderRadius;
|
2016-11-09 16:46:58 +00:00
|
|
|
|
|
|
|
&.no-icon {
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
2016-09-11 21:54:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
2013-12-16 11:22:23 +00:00
|
|
|
form {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-09-25 10:48:37 +00:00
|
|
|
.watermark {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 15;
|
|
|
|
width: 186px;
|
|
|
|
height: 74px;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $zindex2;
|
2014-09-25 10:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.leftwatermark {
|
2016-09-11 22:06:08 +00:00
|
|
|
left: $defaultToolbarSize;
|
|
|
|
margin-left: 10px;
|
2016-09-13 21:42:39 +00:00
|
|
|
background-image: url($defaultWatermarkLink);
|
2014-09-25 10:48:37 +00:00
|
|
|
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;
|
2017-03-30 17:13:00 +00:00
|
|
|
z-index: $poweredByZ;
|
2014-09-25 10:48:37 +00:00
|
|
|
}
|
2014-10-30 16:07:11 +00:00
|
|
|
|
|
|
|
.connected {
|
2016-06-23 19:48:38 +00:00
|
|
|
color: #21B9FC;
|
2014-10-30 16:07:11 +00:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2016-06-23 19:48:38 +00:00
|
|
|
.lastN, .disconnected {
|
2014-10-30 16:07:11 +00:00
|
|
|
color: #a3a3a3;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
/**
|
|
|
|
* Tooltips
|
|
|
|
**/
|
2016-09-16 16:05:23 +00:00
|
|
|
.tipsy {
|
2016-09-21 21:34:06 +00:00
|
|
|
z-index: $tooltipsZ;
|
2016-09-16 16:05:23 +00:00
|
|
|
&-inner {
|
|
|
|
background-color: $tooltipBg;
|
2017-02-15 08:54:57 +00:00
|
|
|
max-width: 350px;
|
2016-09-16 16:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-arrow {
|
|
|
|
border-color: $tooltipBg;
|
|
|
|
}
|
2016-09-21 21:34:06 +00:00
|
|
|
}
|
2016-10-12 00:08:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dialogs fade
|
|
|
|
*/
|
|
|
|
.aui-blanket {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
#inviteLinkRef {
|
|
|
|
-webkit-user-select: text;
|
|
|
|
user-select: text;
|
2016-12-01 18:55:42 +00:00
|
|
|
}
|