mirror of https://github.com/apache/lucene.git
SOLR-5044: Admin UI - Note on Core-Admin about directories while creating core
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1504026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
049cd38596
commit
fefa4517c9
|
@ -70,6 +70,12 @@ Bug Fixes
|
||||||
* SOLR-3633 - web UI reports an error if CoreAdminHandler says there are no
|
* SOLR-3633 - web UI reports an error if CoreAdminHandler says there are no
|
||||||
SolrCores (steffkes)
|
SolrCores (steffkes)
|
||||||
|
|
||||||
|
Optimizations
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
* SOLR-5044: Admin UI - Note on Core-Admin about directories while creating
|
||||||
|
core (seffkes)
|
||||||
|
|
||||||
Other Changes
|
Other Changes
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -71,9 +71,19 @@ limitations under the License.
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content #cores .actions form .directory-note
|
||||||
|
{
|
||||||
|
background-image: url( ../../img/ico/information-white.png );
|
||||||
|
background-position: 22% 1px;
|
||||||
|
color: #c0c0c0;
|
||||||
|
}
|
||||||
|
|
||||||
#content #cores .actions form .error
|
#content #cores .actions form .error
|
||||||
{
|
{
|
||||||
color: #800;
|
background-image: url( ../../img/ico/cross-button.png );
|
||||||
|
background-position: 22% 1px;
|
||||||
|
color: #c00;
|
||||||
|
font-weight: bold;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,10 +104,16 @@ limitations under the License.
|
||||||
#content #cores .actions form input,
|
#content #cores .actions form input,
|
||||||
#content #cores .actions form select,
|
#content #cores .actions form select,
|
||||||
#content #cores .actions form .buttons,
|
#content #cores .actions form .buttons,
|
||||||
#content #cores .actions form .error span
|
#content #cores .actions form .note span
|
||||||
{
|
{
|
||||||
float: right;
|
float: right;
|
||||||
width: 73%;
|
width: 71%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content #cores .actions form .note span
|
||||||
|
{
|
||||||
|
padding-left: 3px;
|
||||||
|
padding-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#content #cores .actions form .buttons
|
#content #cores .actions form .buttons
|
||||||
|
|
|
@ -60,7 +60,13 @@ limitations under the License.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="clearfix error">
|
<p class="clearfix note directory-note">
|
||||||
|
|
||||||
|
<span><code>instanceDir</code> and <code>dataDir</code> need to exist before you can create the core</span>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p class="clearfix note error">
|
||||||
|
|
||||||
<span></span>
|
<span></span>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue