jiti-meet/css/_base.scss

196 lines
3.4 KiB
SCSS
Raw Permalink Normal View History

/**
* 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.
*/
* {
-webkit-user-select: none;
user-select: none;
// Firefox only
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, .5) transparent;
}
input,
textarea {
-webkit-user-select: text;
user-select: text;
}
html {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
margin: 0px;
width: 100%;
height: 100%;
2016-09-11 21:54:32 +00:00
font-size: 12px;
font-weight: 400;
2015-11-05 17:27:26 +00:00
overflow: hidden;
color: $defaultColor;
background: $defaultBackground;
2013-12-16 11:22:23 +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;
}
.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;
}
.jitsi-icon.gray svg {
fill: #5E6D7A;
cursor: pointer;
}
p {
margin: 0;
}
body, input, textarea, keygen, select, button {
2016-09-02 09:53:22 +00:00
font-family: $baseFontFamily !important;
}
2013-12-16 11:22:23 +00:00
#nowebrtc {
display:none;
}
button, input, select, textarea {
margin: 0;
vertical-align: baseline;
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;
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;
}
.watermark {
display: block;
position: absolute;
top: 15;
2017-08-30 19:01:41 +00:00
width: $watermarkWidth;
height: $watermarkHeight;
background-size: contain;
background-repeat: no-repeat;
z-index: $zindex2;
}
.leftwatermark {
left: 32px;
top: 32px;
background-position: center left;
background-repeat: no-repeat;
background-size: contain;
}
.leftwatermarknomargin {
background-position: center left;
background-repeat: no-repeat;
background-size: contain;
}
.rightwatermark {
right: 32px;
top: 32px;
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;
}
#inviteLinkRef {
-webkit-user-select: text;
user-select: text;
}
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;
}
/* Necessary for the new icons to work properly. */
.jitsi-icon svg path {
fill: inherit !important;
}