margin-top: 30px;
}
-.overlay .mainHeading:not(:first-of-type) {
+.ui-dialog .mainHeading {
margin-top: 0;
}
}
div#packageInstallationInnerContentContainer fieldset {
- border-color: #000;
+ border-color: #666;
+ background-color: rgba(0, 0, 0, .1);
}
div#packageInstallationInnerContent p.error {
}
+/* Dialog Titlebar */
+
.ui-dialog-titlebar {
border-top-left-radius: 7px;
border-top-right-radius: 7px;
width: 0;
}
+/* Dialog Content */
+
.ui-dialog-content {
- border-bottom-left-radius: 7px;
- border-bottom-right-radius: 7px;
background-color: #333;
padding-top: 7px;
}
+.ui-dialog-titlebar ~ .ui-dialog-content {
+ border-bottom-left-radius: 7px;
+ border-bottom-right-radius: 7px;
+}
+
+.ui-dialog > .ui-dialog-content {
+ border-radius: 7px;
+}
+
div.ui-widget-overlay {
*/
public function getHTML($formName) {
return <<<HTML
-<div class="formElement">
- <div class="formFieldLabel">
- <label>{$this->getLabel()}</label>
- </div>
- <div class="formField">
+<dl>
+ <dt><label>{$this->getLabel()}</label></dt>
+ <dd>
{$this->getText()}
- </div>
- <div class="formFieldDesc">
- <p>{$this->getDescription()}</p>
- </div>
-</div>
+ <small>{$this->getDescription()}</small>
+ </dd>
+</dl>
HTML;
}
}
*/
public function getHTML($formName) {
return <<<HTML
-<div class="formElement">
- <div class="formFieldLabel">
- <label for="{$this->getName()}">{$this->getLabel()}</label>
- </div>
- <div class="formField">
- <input type="password" name="{$formName}{$this->getName()}" id="{$this->getName()}" value="{$this->getValue()}" />
- </div>
- <div class="formFieldDesc">
- <p>{$this->getDescription()}</p>
- </div>
-</div>
+<dl>
+ <dt><label for="{$this->getName()}">{$this->getLabel()}</label></dt>
+ <dd>
+ <input type="password" id="{$this->getName()}" name="{$formName}{$this->getName()}" value="{$this->getValue()}" class="medium" />
+ <small>{$this->getDescription()}</small>
+ </dd>
+</dl>
HTML;
}
}
*/
public function getHTML($formName) {
return <<<HTML
-<div class="formElement">
- <div class="formFieldLabel">
- <label for="{$this->getName()}">{$this->getLabel()}</label>
- </div>
- <div class="formField">
- <input type="text" name="{$formName}{$this->getName()}" id="{$this->getName()}" value="{$this->getValue()}" />
- </div>
- <div class="formFieldDesc">
- <p>{$this->getDescription()}</p>
- </div>
-</div>
+<dl>
+ <dt><label for="{$this->getName()}">{$this->getLabel()}</label></dt>
+ <dd>
+ <input type="text" id="{$this->getName()}" name="{$formName}{$this->getName()}" value="{$this->getValue()}" class="long" />
+ <small>{$this->getDescription()}</small>
+ </dd>
+</dl>
HTML;
}
}