Fixed several input fields in the content center which were very small

git-svn-id: https://svn.libreccm.org/ccm/trunk@3278 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2015-03-10 10:35:53 +00:00
parent 50cf3eb6ec
commit e34f2d3b65
4 changed files with 120 additions and 103 deletions

View File

@ -49,6 +49,7 @@
<span class="terms"> <span class="terms">
<input size="30" <input size="30"
type="text" type="text"
id="{@param}"
name="{@param}" name="{@param}"
value="{@value}" value="{@value}"
title="Enter one or more search terms"/> title="Enter one or more search terms"/>

View File

@ -398,9 +398,14 @@
</xsl:attribute> </xsl:attribute>
</xsl:if> </xsl:if>
</xsl:for-each> </xsl:for-each>
<xsl:if test="name() = 'bebop:formWidget' and (not(@id) and @name)"> <xsl:if test="name() = 'bebop:formWidget' and (not(./@id) and ./@name)">
<xsl:attribute name="id"> <xsl:attribute name="id">
<xsl:value-of select="@name"/> <xsl:value-of select="./@name"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="name() = 'bebop:form' and (not(./@id) and ./@name)">
<xsl:attribute name="id">
<xsl:value-of select="./@name"/>
</xsl:attribute> </xsl:attribute>
</xsl:if> </xsl:if>
</xsl:template> </xsl:template>

View File

@ -885,6 +885,10 @@ div#search{
position: relative; position: relative;
} }
div#search .terms input#terms {
width: 100%;
}
div .terms{ div .terms{
margin: 0; margin: 0;
margin-top: 10px; margin-top: 10px;
@ -1045,6 +1049,7 @@ div.bebop-left, form[name="category"] table {
-webkit-border-radius: 10px; -webkit-border-radius: 10px;
-moz-border-radius: 10px; -moz-border-radius: 10px;
-o-border-radius: 10px; -o-border-radius: 10px;
width: 94%;
} }
form[name="category"] table table{ form[name="category"] table table{
@ -1589,6 +1594,12 @@ input#draft_search:active {
font-weight: bold; font-weight: bold;
} }
#content form#pageCreate input[type='text'],
form#propertyedit input[type='text'] {
width: 35em;
max-width: 55%;
}
#content span.option-group input[value="externalLink"]:checked ~ fieldset[class="internalLink"]{ #content span.option-group input[value="externalLink"]:checked ~ fieldset[class="internalLink"]{
display:none; display:none;
} }