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.
|
|
|
|
*/
|
2018-04-04 17:08:11 +00:00
|
|
|
* {
|
2014-10-06 10:29:48 +00:00
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
2021-12-20 09:32:31 +00:00
|
|
|
|
|
|
|
// Firefox only
|
|
|
|
scrollbar-width: thin;
|
|
|
|
scrollbar-color: rgba(0, 0, 0, .5) transparent;
|
2014-10-06 10:29:48 +00:00
|
|
|
}
|
|
|
|
|
2018-04-04 17:08:11 +00:00
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
-webkit-user-select: text;
|
|
|
|
user-select: text;
|
|
|
|
}
|
|
|
|
|
2018-06-21 16:38:48 +00:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-01-12 13:24:55 +00:00
|
|
|
overflow: hidden;
|
2018-06-21 16:38:48 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2013-12-16 11:22:23 +00:00
|
|
|
}
|
|
|
|
|
2020-10-05 11:23:13 +00:00
|
|
|
/**
|
|
|
|
* This will hide the focus indicator if an element receives focus via the mouse,
|
|
|
|
* but it will still show up on keyboard focus, thus preserving accessibility.
|
|
|
|
*/
|
|
|
|
.js-focus-visible :focus:not(.focus-visible) {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2021-08-18 12:10:16 +00:00
|
|
|
.jitsi-icon {
|
|
|
|
&-default svg {
|
|
|
|
fill: white;
|
|
|
|
}
|
2019-08-30 16:39:06 +00:00
|
|
|
}
|
|
|
|
|
2021-03-23 11:30:55 +00:00
|
|
|
.disabled .jitsi-icon svg {
|
|
|
|
fill: #929292;
|
|
|
|
}
|
|
|
|
|
2020-01-23 09:32:52 +00:00
|
|
|
.jitsi-icon.gray svg {
|
|
|
|
fill: #5E6D7A;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
button, input, select, textarea {
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: baseline;
|
2016-10-12 00:08:24 +00:00
|
|
|
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"] {
|
2013-12-16 11:22:23 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2016-11-09 16:46:58 +00:00
|
|
|
textarea {
|
|
|
|
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;
|
2017-08-30 19:01:41 +00:00
|
|
|
width: $watermarkWidth;
|
|
|
|
height: $watermarkHeight;
|
2014-09-25 10:48:37 +00:00
|
|
|
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 {
|
2018-07-24 19:26:17 +00:00
|
|
|
left: 32px;
|
|
|
|
top: 32px;
|
2014-09-25 10:48:37 +00:00
|
|
|
background-position: center left;
|
2020-05-22 06:36:24 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
2014-09-25 10:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rightwatermark {
|
2018-07-24 19:26:17 +00:00
|
|
|
right: 32px;
|
|
|
|
top: 32px;
|
2014-09-25 10:48:37 +00:00
|
|
|
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
|
|
|
#inviteLinkRef {
|
|
|
|
-webkit-user-select: text;
|
|
|
|
user-select: text;
|
2016-12-01 18:55:42 +00:00
|
|
|
}
|
2017-05-23 20:06:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Re-style default OS scrollbar.
|
|
|
|
*/
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
background: transparent;
|
|
|
|
width: 7px;
|
2019-12-16 17:57:53 +00:00
|
|
|
height: $scrollHeight;
|
2017-05-23 20:06:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-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;
|
|
|
|
}
|