PluginProbe
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More / 1.0.7
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More v1.0.7
trunk 1.0.0 1.0.1 1.0.10 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9
search-replace-wpcode / src / admin / tabs.css

tabs.css in Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More 1.0.7, at src/admin/tabs.css

52 lines 781 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wsrw-admin-tabs {
2 font-size: 14px;
3 list-style: none;
4 margin: 0;
5 overflow: auto;
6 padding: 0;
7
8 li {
9 float: left;
10 margin: 0 30px 0 0;
11 padding: 0;
12
13 button {
14 border: none;
15 background: transparent;
16 cursor: pointer;
17 }
18
19
20 button,
21 a {
22 border-bottom: 4px solid #fff;
23 box-shadow: none;
24 color: var(--wsrw-text-color-paragraph);
25 display: block;
26 font-weight: 600;
27 padding: 20px 0 18px 0;
28 text-decoration: none;
29 transition: border 300ms ease;
30
31 &.active {
32 border-color: var(--wsrw-color-primary);
33 color: var(--wsrw-text-color-heading);
34 }
35
36 &:focus,
37 &:hover {
38 border-color: var(--wsrw-text-color-paragraph);
39 }
40 }
41 }
42 }
43
44 .wsrw-admin-tab-content {
45 display: none;
46 position: relative;
47
48 &.active {
49 display: block;
50 }
51 }
52