Hid select option in search panel on main page .
This commit is contained in:
parent
eff334b957
commit
74e3796005
3 changed files with 24 additions and 27 deletions
|
@ -596,7 +596,7 @@ ul#header-nav a.log-out {
|
|||
|
||||
|
||||
.custom-search-input {
|
||||
width: 75%;
|
||||
width: 90%;
|
||||
border-radius: unset !important;
|
||||
-webkit-border-radius: unset !important;
|
||||
float: left;
|
||||
|
@ -981,11 +981,12 @@ body.login #login {
|
|||
margin-right: auto;
|
||||
}
|
||||
#login h2 {
|
||||
font-size: 22px;
|
||||
font-size: 1.4rem;
|
||||
color: #8B4513;
|
||||
padding-left: 38px;
|
||||
padding-top: 18px;
|
||||
border-bottom: none;
|
||||
font-family: "IPH Astra Serif";
|
||||
}
|
||||
h3.internal-auth:hover {
|
||||
color: #47B6D0;
|
||||
|
@ -1897,10 +1898,10 @@ li.individual {
|
|||
|
||||
/* ADMIN PANEL ------> */
|
||||
#admin {
|
||||
background-color: #f2f9fb;
|
||||
background-color: #efe9d9;
|
||||
}
|
||||
#admin h3 {
|
||||
background: #2485AE;
|
||||
background: #DD9F00;
|
||||
color: #fff;
|
||||
}
|
||||
#admin .uri-link,
|
||||
|
@ -1908,7 +1909,7 @@ li.individual {
|
|||
color: #888c8c;
|
||||
}
|
||||
#admin a {
|
||||
color: #2a98bc;
|
||||
color: #8B4513;
|
||||
}
|
||||
/* INDIVIDUAL INTRO FOR ANY CLASS ------> */
|
||||
.preferred {
|
||||
|
@ -2066,7 +2067,7 @@ section.property-group h2,
|
|||
font-weight: normal;
|
||||
}
|
||||
article.property {
|
||||
width: 852px;
|
||||
width: 95%;
|
||||
}
|
||||
article.property h3 {
|
||||
background: #fafaf9;
|
||||
|
@ -2121,7 +2122,7 @@ p.address-line {
|
|||
border-bottom: 1px dotted #AFB2B2;
|
||||
font-weight: bold;
|
||||
padding: .625em;
|
||||
color: #064D68;
|
||||
color: #8B4513;
|
||||
margin-bottom: .625em;
|
||||
}
|
||||
#adminDashboard .pageBodyGroup ul {
|
||||
|
@ -2139,7 +2140,13 @@ p.address-line {
|
|||
margin-left: 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.siteAdmin.loggedIn >div#articleWrapper >div#wrapper-content >div.tab >h2 {
|
||||
text-align: center;
|
||||
font-family: "IPH Astra Serif";
|
||||
font-size: 1.5rem;
|
||||
padding-bottom: 0px;
|
||||
border-bottom: 1px solid #8B4513;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -2543,12 +2550,6 @@ button.collapsible.active {
|
|||
#footerWrapper {
|
||||
width: 90%;
|
||||
}
|
||||
.elenph_articles > div#articleWrapper {
|
||||
width: 90%;
|
||||
}
|
||||
.rubrics > div#articleWrapper {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1300px) {
|
||||
|
@ -2579,12 +2580,6 @@ button.collapsible.active {
|
|||
ul#browse-classes li {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.elenph_articles > div#articleWrapper {
|
||||
width: 95%;
|
||||
}
|
||||
.rubrics > div#articleWrapper {
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1100px) {
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<div class="search-form-container">
|
||||
<form id="custom-search" action="${urls.customsearch}" name="custom-search" role="search" method="post" >
|
||||
<input type="text" name="querytext" class="custom-search-input" value="${querytext!?html}" autocapitalize="off" />
|
||||
<#if vClassGroups??>
|
||||
<!-- <#if vClassGroups??>
|
||||
<select form="custom-search" name="classgroup" class="custom-search-select">
|
||||
<option value="">${i18n().all_capitalized}</option>
|
||||
<@classGroupOptions vClassGroups! />
|
||||
</select>
|
||||
</#if>
|
||||
</#if> -->
|
||||
<input type="submit" value="${i18n().search_button}" class="search-submit-button" />
|
||||
<!--
|
||||
<a class="filter-search filter-default" href="#" title="${i18n().intro_filtersearch}">
|
||||
|
|
|
@ -13,20 +13,22 @@
|
|||
<#include "menu.ftl">
|
||||
|
||||
<div id="articleWrapper">
|
||||
<#if individual?? >
|
||||
<#if currentServlet = "individual" && currentServlet != "display"?? >
|
||||
<div id="searchRightpanel">
|
||||
<#include "customsearchpanel.ftl" >
|
||||
</div>
|
||||
</#if>
|
||||
<#include "contentWrapper.ftl">
|
||||
<#if currentServlet != "individual" && currentServlet != "login">
|
||||
<#if currentServlet != "individual" && currentServlet != "login" && currentServlet != "display">
|
||||
<section id="search-home" role="region">
|
||||
<h3><span class="search-filter-selected">filteredSearch</span></h3>
|
||||
|
||||
<fieldset>
|
||||
<legend>${i18n().search_form}</legend>
|
||||
</fieldset>
|
||||
<#include "searchSelector.ftl">
|
||||
|
||||
<#include "searchSelector.ftl">
|
||||
|
||||
</section>
|
||||
</#if>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue