2021-02-23 07:39:20 +00:00
|
|
|
/**
|
|
|
|
* Mixins that mimic the way Atlaskit fills the screen with modals at low screen widths.
|
|
|
|
*/
|
|
|
|
@mixin full-size-modal-positioner() {
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin full-size-modal-dialog() {
|
|
|
|
height: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2018-06-22 22:12:23 +00:00
|
|
|
/**
|
2019-01-02 17:41:47 +00:00
|
|
|
* Move the @atlaskit/flag container up a little bit so it does not cover the
|
|
|
|
* toolbar with the first notification.
|
2018-06-22 22:12:23 +00:00
|
|
|
*/
|
2021-01-14 16:12:08 +00:00
|
|
|
.atlaskit-portal > #notifications-container {
|
2018-06-22 22:12:23 +00:00
|
|
|
bottom: calc(#{$newToolbarSizeWithPadding}) !important;
|
|
|
|
}
|
2019-01-02 17:41:47 +00:00
|
|
|
|
2021-01-04 13:30:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Keep overflow menu within screen vertical bounds and make it scrollable.
|
|
|
|
*/
|
2022-04-05 12:19:03 +00:00
|
|
|
.toolbox-button-wth-dialog > div:nth-child(2) {
|
2021-03-18 06:52:44 +00:00
|
|
|
background: $menuBG;
|
2021-01-14 16:12:08 +00:00
|
|
|
max-height: calc(100vh - #{$newToolbarSizeWithPadding} - 46px);
|
2021-03-11 09:25:49 +00:00
|
|
|
margin-bottom: 4px;
|
2021-03-18 06:52:44 +00:00
|
|
|
padding: 0;
|
2021-01-04 13:30:23 +00:00
|
|
|
overflow-y: auto;
|
2021-02-23 07:39:20 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 12:19:03 +00:00
|
|
|
/**
|
|
|
|
* Remove background color and box-shadow for the context menu container.
|
|
|
|
*/
|
|
|
|
.toolbox-button-wth-dialog.context-menu > div:nth-child(2) {
|
|
|
|
background: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
overflow-y: initial;
|
|
|
|
}
|
|
|
|
|
2021-03-11 09:25:49 +00:00
|
|
|
.audio-preview > div:nth-child(2),
|
2022-04-13 13:18:54 +00:00
|
|
|
.video-preview > div:nth-child(2) {
|
2021-03-11 09:25:49 +00:00
|
|
|
margin-bottom: 4px;
|
|
|
|
outline: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-23 07:39:20 +00:00
|
|
|
/**
|
|
|
|
* The following selectors keep the chat modal full-size anywhere between 100px
|
|
|
|
* and 580px for desktop or 680px for mobile.
|
|
|
|
*/
|
|
|
|
@media (min-width: 100px) and (max-width: 320px) {
|
|
|
|
.smiley-input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.shift-right .focus-lock > div > div {
|
|
|
|
@include full-size-modal-positioner();
|
|
|
|
}
|
|
|
|
|
|
|
|
.shift-right .focus-lock [role="dialog"] {
|
|
|
|
@include full-size-modal-dialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 480px) and (max-width: 580px) {
|
|
|
|
.shift-right .focus-lock > div > div {
|
|
|
|
@include full-size-modal-positioner();
|
|
|
|
}
|
|
|
|
|
|
|
|
.shift-right .focus-lock [role="dialog"] {
|
|
|
|
@include full-size-modal-dialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 13:56:20 +00:00
|
|
|
@media (max-width: 580px) {
|
|
|
|
// Override Atlaskit inline style for the modal background.
|
|
|
|
// Important is unfortunately needed for that.
|
|
|
|
.shift-right .focus-lock [role="dialog"][style] {
|
|
|
|
background-color: $chatBackgroundColor !important;
|
2021-02-23 07:39:20 +00:00
|
|
|
}
|
2021-03-18 07:08:34 +00:00
|
|
|
|
2021-03-18 13:56:20 +00:00
|
|
|
// Remove Atlaskit padding from the chat dialog.
|
|
|
|
.shift-right .focus-lock [role="dialog"] > div:first-child > div:nth-child(2) {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2021-03-18 07:08:34 +00:00
|
|
|
}
|
|
|
|
|
2021-02-23 11:09:22 +00:00
|
|
|
div.Tooltip {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
2021-11-16 09:04:57 +00:00
|
|
|
|
|
|
|
// make modal full screen on landscape orientation
|
|
|
|
@media (max-height: 420px) {
|
|
|
|
.atlaskit-portal {
|
|
|
|
.css-1oc7v0j {
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&> div {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|