PluginProbe
ElasticPress / 5.0.2
ElasticPress v5.0.2
5.3.5 5.3.4 3.6.5 3.6.6 4.0.0 4.0.1 4.1.0 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.6.0 4.6.1 4.7.0 4.7.1 4.7.2 5.0.0 5.0.1 5.0.2 All 108 releases
elasticpress / assets / js / features / style.css

style.css in ElasticPress 5.0.2, at assets/js/features/style.css

97 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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