File size: 1,978 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
// Main
.action-panel {
padding-bottom: 16px;
}
// Title
.action-panel__title {
margin-bottom: 16px;
font-size: $font-title-small;
line-height: 24px;
color: var(--color-neutral-70);
clear: none;
}
// Body
.action-panel__body {
font-size: $font-body-small;
line-height: 20px;
color: var(--color-text-subtle);
overflow: hidden;
p {
margin-bottom: 20px;
}
}
a.action-panel__body-text-link {
color: var(--color-accent);
text-decoration: underline;
&:hover {
text-decoration: none;
}
}
// Figure
.action-panel__figure {
width: 100%;
margin: 24px 0;
text-align: center;
@include breakpoint-deprecated( ">480px" ) {
float: right;
max-width: 208px;
margin: 0 0 20px 24px;
&.is-inline-body-text {
margin-top: 40px;
}
&.align-left {
float: left;
margin-left: 0;
margin-right: 24px;
}
}
}
.action-panel__figure-header {
margin-bottom: 8px;
font-size: $font-body-extra-small;
line-height: 16px;
text-transform: uppercase;
text-align: left;
color: var(--color-text-subtle);
}
.action-panel__figure-list {
margin: 0 0 20px;
border: solid 1px var(--color-neutral-10);
border-radius: 2px;
list-style: none;
text-align: left;
}
.action-panel__figure-list-item {
box-sizing: border-box;
width: 100%;
padding: 12px 16px;
border-top: solid 1px var(--color-neutral-10);
font-size: $font-body-small;
line-height: 18px;
color: var(--color-neutral-70);
&:first-child {
border-top: none;
}
}
// Footer
.action-panel__cta {
padding-top: 17px;
}
.action-panel__footer {
position: relative;
&::before {
content: "";
position: absolute;
top: 0;
left: -16px;
right: -16px;
height: 1px;
background-color: var(--color-neutral-0);
@include breakpoint-deprecated( ">480px" ) {
left: -24px;
right: -24px;
}
}
}
.action-panel__export-button .gridicon,
.action-panel__support-button .gridicon {
margin-left: 8px;
}
.action-panel__support-button {
&.is-external {
margin-right: 8px;
}
}
|