PluginProbe
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News / 4.0.4
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News v4.0.4
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 / responsive / editor.scss

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

92 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .sp-smart-post-responsive {
2 margin-left: 10px;
3 }
4
5 .sp-smart-post-units {
6 position: relative;
7 color: #8c8f94;
8 &-btn {
9 box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.15);
10 position: absolute;
11 z-index: 999;
12 margin-top: 2px;
13 opacity: 0;
14 visibility: hidden;
15 transition: 0.3s;
16 }
17 &:hover .sp-smart-post-units-btn {
18 opacity: 1;
19 visibility: visible;
20 }
21 &:hover {
22 span {
23 border-color: var(--sp-smart-primary-2-400);
24 color: var(--sp-smart-primary-2-400);
25 svg {
26 fill: var(--sp-smart-primary-2-400);
27 }
28 }
29 }
30 span {
31 display: inline-block;
32 font-size: 10px;
33 padding: 0px;
34 width: 24px;
35 height: 20px;
36 border: 1px solid #8c8f94;
37 display: flex;
38 justify-content: center;
39 align-items: center;
40 border-radius: 2px;
41 cursor: pointer;
42 text-transform: lowercase;
43 svg {
44 fill: #8c8f94;
45 }
46 }
47 span.box-unit {
48 width: 45px !important;
49 }
50 button {
51 padding: 0;
52 width: 24px;
53 height: 20px;
54 display: flex;
55 justify-content: center;
56 background-color: #fff;
57 font-size: 10px;
58 border: none;
59 color: #8c8f94;
60 border-radius: 0;
61 box-shadow: none;
62 &:focus:not(:disabled) {
63 outline: none;
64 box-shadow: none;
65 }
66 &.active {
67 background-color: var(--sp-smart-primary-2-50);
68 color: var(--sp-smart-primary-2-600);
69 svg {
70 fill: var(--sp-smart-primary-2-600);
71 }
72 }
73 }
74 }
75 .sp-smart-post-units.box {
76 .sp-smart-post-units-btn {
77 button {
78 width: 45px;
79 }
80 }
81 }
82
83 .sp-smart-post-units-btn {
84 button.components-button:hover {
85 color: var(--sp-smart-primary-2-600);
86 background-color: var(--sp-smart-primary-2-50);
87 }
88 button.components-button.active {
89 color: var(--sp-smart-primary-2-600);
90 }
91 }
92