2023-01-11 17:29:38 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* <scrollable-tweets>
|
|
|
|
|
*
|
|
|
|
|
* App-wide styles for horizontally scrolling rows of tweets.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
[parasails-component='scrollable-tweets'] {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
2024-02-14 23:31:51 +00:00
|
|
|
position: relative;
|
2023-01-11 17:29:38 +00:00
|
|
|
|
|
|
|
|
[purpose='tweets']::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 23:31:51 +00:00
|
|
|
[purpose='previous-page-indicator'] {
|
|
|
|
|
display: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
z-index: 30;
|
|
|
|
|
position: absolute;
|
|
|
|
|
transition: transform 1s, opacity 0.25s ease-in;
|
|
|
|
|
transform: scale(0.5);
|
|
|
|
|
bottom: 50%;
|
|
|
|
|
left: 10px;
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
img {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[purpose='next-page-indicator'] {
|
|
|
|
|
display: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
transition: transform 1s, opacity 0.25s ease-in;
|
|
|
|
|
transform: scale(0.5);
|
|
|
|
|
bottom: 50%;
|
|
|
|
|
z-index: 30;
|
|
|
|
|
right: 10px;
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
img {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-11 17:29:38 +00:00
|
|
|
[purpose='tweets'] {
|
|
|
|
|
overflow-x: scroll;
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
padding-left: 120px;
|
|
|
|
|
padding-right: 120px;
|
|
|
|
|
margin-top: 80px;
|
2024-02-14 23:31:51 +00:00
|
|
|
margin-bottom: 80px;
|
2023-01-11 17:29:38 +00:00
|
|
|
scrollbar-width: none;
|
Website: browser compatibility updates (Edge v17, Chrome v55, Firefox v54, Opera v42, & Safari v10) (#10583)
Closes: #10496
Changes:
- Fixed alignment issues with the <scrollable-tweets> component's page
indicator (Edge v16 & Safari 10)
- Added a hard-coded height to embedded youtube videos in Markdown
content to fix it rendering with a height of 0 (Edge v17 & Firefox v54)
- Fixed table example syntax highlighting (Edge v17, Chrome v55, Firefox
v54, Opera v42, & Safari v10)
- Added a set width to the edit page button on tables pages (Safari v10,
Firefox v54)
- Fixed a bug with the sidebar height on tables pages (Edge v17)
- Fixed styling on the pricing calculator inputs (Safari v10 & Firefox
v54)
- Fixed a layout issue with the pricing calculator call-to-action
buttons (Safari v10)
- Hid browser-specific form input buttons (Firefox v54)
- Fixed the sidebar CTA image on documentation pages (Opera v42)
- Fixed a CSS issue with the user story banner on `/platform` (Safari
v10, Firefox v54, Chrome v55, Opera v42)
- Updated the documentation page script to only copy links to the user's
clipboard if the user's browser supports it.
- Updated minimum browser versions for Edge, Chrome, and Opera for async
functions support. (Edge v16 » Edge v17, Chrome v51 » Chrome v55, Opera
v38 » Opera v42)
2023-03-18 00:36:15 +00:00
|
|
|
-ms-overflow-style: none;
|
2024-02-14 23:31:51 +00:00
|
|
|
&:hover {
|
|
|
|
|
[purpose='previous-page-indicator'] {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: scale(1.0);
|
|
|
|
|
}
|
|
|
|
|
[purpose='next-page-indicator'] {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: scale(1.0);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
2023-12-18 21:09:58 +00:00
|
|
|
|
2023-01-11 17:29:38 +00:00
|
|
|
[purpose='tweet-card'] {
|
2024-02-14 23:31:51 +00:00
|
|
|
box-shadow: none;
|
|
|
|
|
background-color: #FFF;
|
2024-01-13 01:22:36 +00:00
|
|
|
[purpose='logo'] {
|
|
|
|
|
img {
|
2024-01-17 04:27:12 +00:00
|
|
|
max-height: 32px;
|
2024-01-13 01:22:36 +00:00
|
|
|
}
|
2024-01-17 04:27:12 +00:00
|
|
|
min-height: 0;
|
2024-01-13 01:22:36 +00:00
|
|
|
margin-bottom: 24px;
|
|
|
|
|
}
|
|
|
|
|
[purpose='quote'] {
|
|
|
|
|
margin-bottom: 24px;
|
2024-12-06 00:03:44 +00:00
|
|
|
color: #515774;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 150%;
|
2023-12-18 21:09:58 +00:00
|
|
|
}
|
2024-01-13 01:22:36 +00:00
|
|
|
[purpose='quote-author-info'] {
|
|
|
|
|
[purpose='job-title'] {
|
|
|
|
|
font-size: 12px !important;//lesshint-disable-line importantRule,duplicateProperty
|
|
|
|
|
line-height: 18px !important;//lesshint-disable-line importantRule,duplicateProperty
|
|
|
|
|
}
|
|
|
|
|
[purpose='name'] {
|
2024-11-20 23:55:47 +00:00
|
|
|
text-transform: capitalize;
|
2024-01-13 01:22:36 +00:00
|
|
|
color: @core-fleet-black !important;//lesshint-disable-line importantRule,duplicateProperty
|
|
|
|
|
}
|
|
|
|
|
[purpose='profile-picture'] {
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
img {
|
|
|
|
|
height: 48px;
|
|
|
|
|
width: 48px;
|
2024-07-18 19:41:54 +00:00
|
|
|
border-radius: 50%;
|
2024-01-13 01:22:36 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[purpose='video-link'] {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: @core-vibrant-blue;
|
|
|
|
|
}
|
|
|
|
|
height: fit-content;
|
|
|
|
|
max-width: 360px;
|
|
|
|
|
min-width: 360px;
|
2023-01-11 17:29:38 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
background: #FFFFFF;
|
2024-12-06 00:03:44 +00:00
|
|
|
padding: 24px;
|
2023-01-11 17:29:38 +00:00
|
|
|
border: 1px solid @core-vibrant-blue-15;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-radius: 16px;
|
2025-02-25 17:08:23 +00:00
|
|
|
text-decoration: none;
|
2024-01-13 01:22:36 +00:00
|
|
|
&:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
pointer: cursor;
|
|
|
|
|
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
2023-12-18 21:09:58 +00:00
|
|
|
[purpose='video-modal'] {
|
|
|
|
|
[purpose='modal-dialog'] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
[purpose='modal-content'] {
|
|
|
|
|
max-width: 1140px;
|
|
|
|
|
height: 641px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin-top: 150px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
[purpose='modal-close-button'] {
|
|
|
|
|
top: -40px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
padding: 0px 0px 4px 0px;
|
|
|
|
|
background-color: #192147;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
iframe {
|
|
|
|
|
width: 1140px;
|
|
|
|
|
height: 641px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-11 17:29:38 +00:00
|
|
|
|
|
|
|
|
|
2024-02-14 23:31:51 +00:00
|
|
|
@media(hover) {
|
|
|
|
|
[purpose='previous-page-indicator'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
[purpose='next-page-indicator'] {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-11 17:29:38 +00:00
|
|
|
@media (max-width: 991px) {
|
|
|
|
|
[purpose='tweets'] {
|
|
|
|
|
padding-left: 80px;
|
2023-02-09 02:04:56 +00:00
|
|
|
padding-right: 80px;
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
[purpose='tweets'] {
|
|
|
|
|
padding-left: 40px;
|
2023-02-09 02:04:56 +00:00
|
|
|
padding-right: 40px;
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
2023-12-18 21:09:58 +00:00
|
|
|
[purpose='video-modal'] {
|
|
|
|
|
[purpose='modal-dialog'] {
|
|
|
|
|
max-width: 97vw;
|
|
|
|
|
}
|
|
|
|
|
[purpose='modal-content'] {
|
|
|
|
|
max-width: 540px;
|
|
|
|
|
height: 304px;
|
|
|
|
|
}
|
|
|
|
|
iframe {
|
|
|
|
|
width: 540px;
|
|
|
|
|
height: 304px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 575px) {
|
|
|
|
|
[purpose='tweets'] {
|
|
|
|
|
padding-left: 20px;
|
2023-02-09 02:04:56 +00:00
|
|
|
padding-right: 20px;
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
[purpose='tweet-card'] {
|
|
|
|
|
min-width: 280px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
2023-12-18 21:09:58 +00:00
|
|
|
[purpose='video-modal'] {
|
|
|
|
|
[purpose='modal-content'] {
|
|
|
|
|
width: 95vw;
|
|
|
|
|
height: calc(~'9/16 * 95vw');
|
|
|
|
|
}
|
|
|
|
|
iframe {
|
|
|
|
|
width: 95vw;
|
|
|
|
|
height: calc(~'9/16 * 95vw');
|
2023-02-09 02:04:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
2023-01-11 17:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|