mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-22 20:51:58 +00:00
added missing css
logo svg fill color changed to defaul, also added autofocus to search input. This closes #60
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
width: 18px;
|
width: 18px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
fill: red;
|
fill: #e4154b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****logo section******/
|
/*****logo section******/
|
||||||
|
|||||||
@@ -49,3 +49,11 @@ forcing the font changes
|
|||||||
body {
|
body {
|
||||||
font-family: "Source Sans Pro";
|
font-family: "Source Sans Pro";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***
|
||||||
|
search.button
|
||||||
|
**/
|
||||||
|
|
||||||
|
.ui.search.button{
|
||||||
|
background-color:#e4154b;
|
||||||
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
* under the terms of the MIT License; see LICENSE file for more details.
|
* under the terms of the MIT License; see LICENSE file for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@import "variables";
|
||||||
@import "header";
|
@import "header";
|
||||||
@import "footer";
|
@import "footer";
|
||||||
@import "overrides";
|
@import "overrides";
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<div class="eight wide column">
|
<div class="eight wide column">
|
||||||
<form action="/search" class="ui form">
|
<form action="/search" class="ui form">
|
||||||
<div class="ui fluid big action input">
|
<div class="ui fluid big action input">
|
||||||
<input type="text" name="q" class="form-control" placeholder="{{ _("Type and press enter to search") }}">
|
<input type="text" name="q" autofocus="autofocus" class="form-control" placeholder="{{ _("Type and press enter to search") }}">
|
||||||
<button type="submit" class="ui icon search button"><i class="search icon"></i></button>
|
<button type="submit" class="ui icon search button"><i class="search icon"></i></button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
Reference in New Issue
Block a user