PluginProbe
WP Bottom Menu / 2.2.3
WP Bottom Menu v2.2.3
trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.1.1 1.1.2 1.2 1.3 1.3.2 1.4 1.4.2 1.4.3 2.0 2.0.1 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.2 2.2.1 2.2.2 All 27 releases
← All changes | assets/css/style.css +12 -2 2.12.2.3 View file →
@@ -95,8 +95,9 @@
95 95 background: var(--wpbottommenu-bgcolor);
96 96 padding: 10px;
97 97 transition: all 200ms;
98 98 transform: translateY(100%);
99 + box-sizing: border-box;
99 100 }
100 101
101 102 .wp-bottom-menu-search-form-wrapper form{
102 103 position: relative;
@@ -105,15 +106,23 @@
105 106 .wp-bottom-menu-search-form input[type="search"]{
106 107 border: 1px solid #eee;
107 108 border-radius: 8px;
108 109 width: 100%;
109 - font-size: 14px;
110 + font-size: 16px;
110 111 height: 40px;
111 112 padding-left: 50px;
112 113 padding-right: 30px;
113 114 }
114 115
115 -.wp-bottom-menu-search-form i{
116 +.wp-bottom-menu-search-form input[type="search"]::-webkit-search-decoration,
117 +.wp-bottom-menu-search-form input[type="search"]::-webkit-search-cancel-button,
118 +.wp-bottom-menu-search-form input[type="search"]::-webkit-search-results-button,
119 +.wp-bottom-menu-search-form input[type="search"]::-webkit-search-results-decoration {
120 + display: none;
121 +}
122 +
123 +.wp-bottom-menu-search-form i,
124 +.wp-bottom-menu-search-form svg{
116 125 position: absolute;
117 126 top: 50%;
118 127 left: 30px;
119 128 transform: translate(-50%,-50%);
@@ -176,5 +185,6 @@
176 185 right: 10%;
177 186 top: 10%;
178 187 font-size: var(--wpbottommenu-icon-size);
179 188 color: inherit;
189 + cursor: pointer;
180 190 }