123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- /**
- * 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;
- }
-
- html {
- height: 100%;
- width: 100%;
- overflow: hidden;
- }
-
- body {
- margin: 0px;
- width: 100%;
- height: 100%;
- font-size: 12px;
- font-weight: 400;
- overflow: hidden;
- color: $defaultColor;
- background: $defaultBackground;
- }
-
- /**
- * 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;
- }
-
- /**
- * AtlasKit sets a default margin on the rendered modals, so
- * when the shift-right class is set when the chat opens, we
- * pad the modal container in order for the modals to be centered
- * while also taking the chat size into consideration.
- */
- @media (min-width: 581px) {
- .shift-right .atlaskit-portal > div:not(.Tooltip) {
- padding-left: $sidebarWidth;
- }
- }
-
- .jitsi-icon svg {
- fill: white;
- }
-
- .jitsi-icon.gray svg {
- fill: #5E6D7A;
- cursor: pointer;
- }
-
- p {
- margin: 0;
- }
-
- body, input, textarea, keygen, select, button {
- font-family: $baseFontFamily !important;
- }
-
- #nowebrtc {
- display:none;
- }
-
- button, input, select, textarea {
- margin: 0;
- vertical-align: baseline;
- font-size: 1em;
- }
-
- button, select, input[type="button"],
- input[type="reset"], input[type="submit"] {
- cursor: pointer;
- }
-
- 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 */
- }
-
- 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: $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;
- }
-
- .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;
- }
-
- /**
- * Dialogs fade
- */
- .aui-blanket {
- background: #000;
- transition: opacity 0.2s, visibility 0.2s;
- transition-delay: 0.1s;
- visibility: visible;
- }
-
- #inviteLinkRef {
- -webkit-user-select: text;
- user-select: text;
- }
-
- /**
- * Re-style default OS scrollbar.
- */
- ::-webkit-scrollbar {
- background: transparent;
- width: 7px;
- height: $scrollHeight;
- }
-
- ::-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;
- }
|