| 1 |
.ep-dashboard-panel { |
| 2 |
margin-bottom: 16px; |
| 3 |
|
| 4 |
& .components-notice { |
| 5 |
margin: 0 0 16px 0; |
| 6 |
} |
| 7 |
|
| 8 |
& .components-notice__actions { |
| 9 |
display: inline-flex; |
| 10 |
} |
| 11 |
|
| 12 |
& .components-checkbox-control:has([disabled]) { |
| 13 |
|
| 14 |
& input[disabled], |
| 15 |
& .components-checkbox-control__label { |
| 16 |
opacity: 0.5; |
| 17 |
} |
| 18 |
} |
| 19 |
} |
| 20 |
|
| 21 |
.ep-dashboard-tabs { |
| 22 |
display: grid; |
| 23 |
grid-gap: 40px; |
| 24 |
grid-template-columns: max-content auto; |
| 25 |
|
| 26 |
& .components-tab-panel__tab-content { |
| 27 |
padding-top: 14px; |
| 28 |
|
| 29 |
& .components-notice { |
| 30 |
margin: 16px 0; |
| 31 |
} |
| 32 |
} |
| 33 |
|
| 34 |
& .components-tab-panel__tabs-item { |
| 35 |
flex-wrap: wrap; |
| 36 |
font-weight: 400; |
| 37 |
text-align: left; |
| 38 |
|
| 39 |
&.is-active { |
| 40 |
background: #f0f0f0; |
| 41 |
font-weight: 500; |
| 42 |
|
| 43 |
&::after { |
| 44 |
content: none; |
| 45 |
} |
| 46 |
} |
| 47 |
|
| 48 |
&:focus:not(:disabled) { |
| 49 |
box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color); |
| 50 |
outline: var(--wp-admin-border-width-focus) solid transparent; |
| 51 |
} |
| 52 |
} |
| 53 |
|
| 54 |
@media (max-width: 782px) { |
| 55 |
gap: 0; |
| 56 |
grid-template-columns: 1fr; |
| 57 |
|
| 58 |
& .components-tab-panel__tabs { |
| 59 |
margin-left: -16px; |
| 60 |
margin-right: -16px; |
| 61 |
} |
| 62 |
} |
| 63 |
} |
| 64 |
|
| 65 |
.ep-feature-tab { |
| 66 |
align-items: start; |
| 67 |
display: flex; |
| 68 |
flex-direction: column; |
| 69 |
gap: 4px; |
| 70 |
} |
| 71 |
|
| 72 |
.ep-feature-tab__status { |
| 73 |
color: rgb(117, 117, 117); |
| 74 |
display: block; |
| 75 |
font-size: 12px; |
| 76 |
font-weight: 400; |
| 77 |
width: 100%; |
| 78 |
} |
| 79 |
|
| 80 |
.ep-dashboard-control { |
| 81 |
margin-bottom: 24px; |
| 82 |
margin-top: 24px; |
| 83 |
|
| 84 |
& .components-base-control__help code { |
| 85 |
font-size: inherit; |
| 86 |
} |
| 87 |
} |
| 88 |
|
| 89 |
.ep-dashboard-heading { |
| 90 |
align-items: center; |
| 91 |
display: flex; |
| 92 |
flex-wrap: wrap; |
| 93 |
gap: 8px; |
| 94 |
justify-content: space-between; |
| 95 |
min-height: 20px; |
| 96 |
} |
| 97 |
|