jiti-meet/css/_base.scss

176 lines
3.1 KiB
SCSS
Raw 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;
}
input,
textarea {
-webkit-user-select: text;
user-select: text;
}
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;
&.filmstrip-only {
background: transparent;
}
2013-12-16 11:22:23 +00:00
}
/**
* AtlasKitThemeProvider sets a background color on an app-wrapping div, thereby
* preventing transparency in filmstrip-only mode. The selector chosen to
* override this behavior is specific to where the AtlasKitThemeProvider might
* be placed within the app hierarchy.
*/
.filmstrip-only #react > .ckAJgx {
background: transparent;
}
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;
}
.no-fa-video-camera, .fa-microphone-slash {
color: #636363;
}
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: $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;
}
/**
* Dialogs fade
*/
.aui-blanket {
2017-11-28 02:29:00 +00:00
background: #000;
transition: opacity 0.2s, visibility 0.2s;
transition-delay: 0.1s;
visibility: visible;
}
#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;
}
::-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;
}