PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / components / dropdown-picker / editor.scss

editor.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/components/dropdown-picker/editor.scss

47 lines 910 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "../../variables";
2
3 .ghostkit-component-dropdown-picker-toggle {
4 position: relative;
5 display: flex;
6 align-items: center;
7 justify-content: space-between;
8 width: 100%;
9 height: auto;
10 min-height: 40px;
11 padding: 10px 12px;
12 margin-bottom: 0;
13 border: 1px solid rgba(0, 0, 0, 15%);
14 border-radius: 0;
15
16 &.ghostkit-component-dropdown-picker-toggle-active {
17 color: var(--wp-admin-theme-color);
18 background-color: #f0f0f0;
19 }
20
21 .ghostkit-component-dropdown-picker-toggle-label {
22 overflow: hidden;
23 text-overflow: ellipsis;
24 white-space: nowrap;
25 }
26 }
27
28 // Dropdown.
29 .ghostkit-component-dropdown-picker__dropdown {
30 display: block;
31 width: 100%;
32 }
33
34 .ghostkit-component-dropdown-picker__dropdown-content {
35 .components-popover__content {
36 width: 260px;
37 padding: 16px;
38 }
39
40 .components-tab-panel__tabs {
41 margin-top: -16px;
42 margin-right: -16px;
43 margin-bottom: 16px;
44 margin-left: -16px;
45 }
46 }
47