mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:47:17 +08:00
9abb2f5ff4
* $accent-color -> $accent Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * $notice-primary-color -> $alert Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $notice-primary-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-50pct Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * $warning-color -> $alert Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-darker Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $orange-warning-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $warning-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $info-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
51 lines
945 B
SCSS
51 lines
945 B
SCSS
.mx_Stickers_content {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mx_Stickers_content_container {
|
|
overflow: hidden;
|
|
height: 300px;
|
|
}
|
|
|
|
#mx_persistedElement_stickerPicker {
|
|
.mx_AppTileFullWidth {
|
|
height: unset;
|
|
box-sizing: border-box;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.mx_AppTileMenuBar {
|
|
padding: 0;
|
|
}
|
|
|
|
iframe {
|
|
// Sticker picker depends on the fixed height previously used for all tiles
|
|
height: 283px; // height of the popout minus the AppTile menu bar
|
|
}
|
|
}
|
|
|
|
.mx_Stickers_contentPlaceholder {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.mx_Stickers_contentPlaceholder p {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.mx_Stickers_addLink {
|
|
display: inline;
|
|
cursor: pointer;
|
|
color: $accent;
|
|
}
|
|
|
|
.mx_Stickers_hideStickers {
|
|
z-index: 2001;
|
|
}
|