Fix cache searchbar

This commit is contained in:
extensionsapp 2017-09-24 17:51:33 +03:00
parent bebedb3bb3
commit 72a04cbf8b
2 changed files with 4 additions and 3 deletions

View file

@ -58,7 +58,7 @@ ul{float:left}#contenedor .contenido .header
li{float:left;padding:11px 5px;padding-right:4px;border-right:1px solid rgba(0,0,0,0.4)}#contenedor .contenido .header li
a{float:left;font-size:14px;padding:7px 15px;color:rgba(255,255,255,0.5);font-weight:300}#contenedor .contenido .header li a:hover{color:#8EB7E5}#contenedor .contenido .header
.buscador{float:right;padding:1px 10px;margin-left:7px;border-left:1px solid rgba(0,0,0,0.4)}#contenedor .contenido .header .buscador
.imputo{width:100%;float:left;margin:7px 0}#contenedor .contenido .header .buscador input[type="text"].buscar{background-color:transparent;color:#FFF;width:75px;height:16px;line-height:20px;padding:9px 10px;border:0;font-size:15px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}#contenedor .contenido .header .buscador input[type="text"].buscar ::-webkit-input-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input[type="text"].buscar :-moz-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input[type="text"].buscar ::-moz-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input[type="text"].buscar :-ms-input-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input[type="text"].buscar:focus{width:145px}#contenedor .contenido .header .buscador .imputo:before{content:"\f002";font-family:'icomoon';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;padding:9px 0;font-size:15px;color:rgba(255,255,255,0.29)}#contenedor .contenido .header .buscador .imputo:hover:before{color:#fff}#contenedor .contenido
.imputo{width:100%;float:left;margin:7px 0}#contenedor .contenido .header .buscador input.buscar{background-color:transparent;color:#FFF;width:75px;height:16px;line-height:20px;padding:9px 10px;border:0;font-size:15px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}#contenedor .contenido .header .buscador input.buscar ::-webkit-input-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input.buscar :-moz-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input.buscar ::-moz-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input.buscar :-ms-input-placeholder{color:rgba(255,255,255,0.51)}#contenedor .contenido .header .buscador input.buscar:focus{width:145px}#contenedor .contenido .header .buscador .imputo:before{content:"\f002";font-family:'icomoon';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;padding:9px 0;font-size:15px;color:rgba(255,255,255,0.29)}#contenedor .contenido .header .buscador .imputo:hover:before{color:#fff}#contenedor .contenido
.box_item{float:left;width:980px;margin:10px;margin-top:0}#contenedor .contenido .box_item
.peliculas{width:770px;float:left;padding:15px 0;border-right:1px solid rgba(0,0,0,0.4);margin-right:9px}.items
.item{width:18%;margin-left:1.5%;margin-bottom:1.5%;float:left;overflow:hidden;position:relative}.items .item

View file

@ -18,10 +18,11 @@
</li>
</ul>
</div>
<div class="buscador">
<div class="buscador" style="padding: 1px 19px 1px 10px;">
<form method="get" action="/<%- page.urls.search %>/title">
<div class="imputo">
<input class="buscar" type="text" placeholder="Поиск ..." name="q">
<input class="buscar" placeholder="Поиск ..." name="q" type="text">
<input value="Найти" style="background: none; border: 0; color:#999;cursor: pointer;" type="submit">
</div>
</form>
</div>