Mini Kabibi Habibi
/*************************************************************************
* ADOBE CONFIDENTIAL
* ___________________
*
* Copyright 2019 Adobe
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains
* the property of Adobe and its suppliers, if any. The intellectual
* and technical concepts contained herein are proprietary to Adobe
* and its suppliers and are protected by all applicable intellectual
* property laws, including trade secret and copyright laws.
* Dissemination of this information or reproduction of this material
* is strictly forbidden unless prior written permission is obtained
* from Adobe.
**************************************************************************/
/* I've added this so that we can get it out the door, I'll follow up with a spectrum-css PR asap */
.spectrum-CoachMarkPopover {
outline: none;
overflow: auto;
visibility: visible;
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
opacity: 0;
}
50% {
-webkit-transform: scale(1.5);
opacity: 1;
}
100% {
-webkit-transform: scale(2);
opacity: 0;
}
}
@keyframes pulse--quiet {
0% {
-webkit-transform: scale(0.8);
opacity: 0;
}
50% {
-webkit-transform: scale(1.5);
opacity: 1;
}
100% {
-webkit-transform: scale(2);
opacity: 0;
}
}
.spectrum-CoachMarkPopover {
position: relative;
min-width: 272px;
max-width: 400px;
border-radius: 4px;
border-width: 1px;
border-style: solid;
}
.spectrum-CoachMarkPopover-image {
border-radius: 4px 4px 0 0;
width: 100%;
}
.spectrum-CoachMarkPopover-header,
.spectrum-CoachMarkPopover-content,
.spectrum-CoachMarkPopover-footer {
padding: 0 24px;
}
.spectrum-CoachMarkPopover-header {
padding-top: 24px;
}
.spectrum-CoachMarkPopover-footer {
padding-bottom: 24px;
}
.spectrum-CoachMarkPopover-header {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-align: end;
align-items: flex-end;
margin-bottom: 16px;
}
.spectrum-CoachMarkPopover-title {
font-size: 16px;
font-weight: 700;
line-height: 1.3;
margin-bottom: 0;
}
.spectrum-CoachMarkPopover-step {
-ms-flex-item-align: start;
-ms-grid-row-align: start;
align-self: start;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
white-space: nowrap;
}
.spectrum-CoachMarkPopover-content {
margin-bottom: 16px;
}
.spectrum-CoachMarkPopover-footer {
margin-top: 0;
text-align: right;
}
.spectrum-CoachMarkIndicator {
position: relative;
margin: 6px;
}
.spectrum-CoachMarkIndicator-ring {
display: block;
position: absolute;
border-style: solid;
border-width: 2px;
border-radius: 50%;
}
.spectrum-CoachMarkIndicator-ring:nth-child(2) {
animation-delay: -1980ms;
}
.spectrum-CoachMarkIndicator-ring:nth-child(3) {
animation-delay: -3000ms
}
.spectrum-CoachMarkIndicator {
min-width: 48px;
min-height: 48px;
}
.spectrum-CoachMarkIndicator-ring {
top: 12px;
left: 12px;
width: 16px;
height: 16px;
animation: pulse 3000ms linear infinite;
}
.spectrum-CoachMarkIndicator-ring:nth-child(1) {
animation-delay: -1500ms;
}
.spectrum-CoachMarkIndicator--quiet {
min-width: 22px;
min-height: 22px;
}
.spectrum-CoachMarkIndicator--quiet .spectrum-CoachMarkIndicator-ring {
top: 6px;
left: 6px;
width: 8px;
height: 8px;
animation: pulse--quiet 3000ms linear infinite;
}
.spectrum-CoachMarkIndicator--quiet .spectrum-CoachMarkIndicator-ring:nth-child(1) {
animation-delay: -990ms;
}
.spectrum--light .spectrum-CoachMarkPopover {
background-color: rgb(255, 255, 255);
border-color: rgb(202, 202, 202);
box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.spectrum--light .spectrum-CoachMarkPopover-title {
color: rgb(44, 44, 44);
}
.spectrum--light .spectrum-CoachMarkPopover-step {
color: rgb(110, 110, 110);
}
.spectrum--light .spectrum-CoachMarkPopover-content {
color: rgb(75, 75, 75);
}
.spectrum--light .spectrum-CoachMarkIndicator-ring {
border-color: rgb(38, 128, 235);
}
.spectrum--light .spectrum-CoachMarkIndicator--light .spectrum-CoachMarkIndicator-ring {
border-color: rgb(255, 255, 255);
}
.spectrum--light .spectrum-CoachMarkIndicator--dark .spectrum-CoachMarkIndicator-ring {
border-color: rgb(44, 44, 44);
}
.spectrum--darkest .spectrum-CoachMarkPopover {
background-color: rgb(8, 8, 8);
border-color: rgb(73, 73, 73);
box-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.spectrum--darkest .spectrum-CoachMarkPopover-title {
color: rgb(239, 239, 239);
}
.spectrum--darkest .spectrum-CoachMarkPopover-step {
color: rgb(162, 162, 162);
}
.spectrum--darkest .spectrum-CoachMarkPopover-content {
color: rgb(200, 200, 200);
}
.spectrum--darkest .spectrum-CoachMarkIndicator-ring {
border-color: rgb(20, 115, 230);
}
.spectrum--darkest .spectrum-CoachMarkIndicator--light .spectrum-CoachMarkIndicator-ring {
border-color: rgb(8, 8, 8);
}
.spectrum--darkest .spectrum-CoachMarkIndicator--dark .spectrum-CoachMarkIndicator-ring {
border-color: rgb(239, 239, 239);
}