PluginProbe
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News / 4.0.8
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News v4.0.8
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 2.3.5 2.3.6 2.4.0 2.4.1 2.4.10 2.4.11 2.4.12 2.4.13 2.4.14 2.4.15 2.4.16 2.4.17 2.4.18 2.4.19 2.4.2 2.4.20 2.4.21 All 88 releases
post-carousel / src / components / selectDropdown / editor.scss

editor.scss in Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News 4.0.8, at src/components/selectDropdown/editor.scss

83 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .sp-smart-post-select-dropdown:not(.sp-smart-section-heading-dropdown) {
2 max-height: 300px;
3
4 .sp-smart-post-select-dropdown-option svg {
5 fill: #3c434a;
6 }
7 }
8 .sp-smart-post-select-dropdown {
9 width: 360px !important;
10 /* Set a fixed width */
11 display: flex;
12 flex-direction: column;
13 overflow-x: hidden;
14 overflow-y: auto;
15 max-height: 400px;
16 box-sizing: border-box;
17 margin: 0;
18 padding: 0;
19
20 .disabled {
21 opacity: 1;
22 color: #707070bd;
23 }
24
25 .sp-smart-post-select-dropdown-option {
26 display: flex;
27 justify-content: space-between;
28 align-items: center;
29 cursor: pointer;
30 padding: 0px 13px;
31 margin: 0px;
32 height: 42px;
33 border-bottom: 1px solid rgba(240, 93, 49, 0.1);
34 flex-shrink: 0;
35
36 >span {
37 margin: 0px;
38 font-size: 13px;
39 display: flex;
40 align-items: center;
41 }
42
43 &.active {
44 background-color: var( --sp-smart-primary-2-400 );
45 color: #fff;
46
47 svg {
48 fill: #fff;
49 }
50
51 path[fill="#2f2f2f"]="#2f2f2f""] {
52 fill: #fff;
53 }
54 i{
55 color: #fff;
56 }
57 }
58
59 &.active:hover {
60 background-color: var( --sp-smart-primary-2-400 );
61 color: #fff;
62 }
63 }
64
65 .sp-smart-post-select-dropdown-option:hover {
66 background-color: var(--sp-smart-primary-2-50);
67 }
68 }
69
70 .sp-smart-section-heading-dropdown .sp-smart-post-select-dropdown-option:hover.active,
71 .sp-smart-section-heading-dropdown .sp-smart-post-select-dropdown-option.active path[fill="#2f2f2f"]="#2f2f2f""],
72 .sp-smart-section-heading-dropdown .sp-smart-post-select-dropdown-option.active {
73 background-color: var(--sp-smart-primary-2-50);
74 color: #222222;
75 fill: #222222;
76 }
77
78 /* Metadata dropdown component user icon size */
79 .sp-smart-post-popup-content .sp-smart-post-select-dropdown .sp-smart-post-select-dropdown-option svg {
80 min-width: 20px;
81 min-height: 20px;
82 }
83