Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
Merge commit 'c7acb1d'
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicode committed Aug 5, 2013
2 parents 11e8cea + c7acb1d commit 25af017
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions src/main/webapp/css/rhinoform.css
@@ -1,53 +1,53 @@
/** Layout **/
.field {
.rhinoforms .field {
margin: 15px 0;
}
button {
.rhinoforms button {
margin-top: 20px;
}
label {
.rhinoforms label {
width: 150px;
display: inline-block;
}
input[type='radio']+label {
.rhinoforms input[type='radio']+label {
width: auto;
}
.invalid {
.rhinoforms .invalid {
background-color: Salmon;
}
.invalid-message {
.rhinoforms .invalid-message {
margin: 0 5px;
}

.invalid-message-cleared {
.rhinoforms .invalid-message-cleared {
visibility: hidden;
}

.rf-included-false {
.rhinoforms .rf-included-false {
display: none;
}

/** Auto-complete **/
.rf-dropdown {
.rhinoforms .rf-dropdown {
position: absolute;
}
.rf-dropdown ul {
.rhinoforms .rf-dropdown ul {
margin: 0;
padding: 0;
height: 9em;
overflow-y: scroll;
border: 1px solid lightGrey;
}
.rf-dropdown li {
.rhinoforms .rf-dropdown li {
list-style-type: none;
background-color: white;
}
.rf-dropdown li.over {
.rhinoforms .rf-dropdown li.over {
background-color: lightblue;
}

/** DebugBar **/
.rf-debugbar {
.rhinoforms .rf-debugbar {
background-color: #45BCD2;
opacity: 0.7;
border-radius: 5px;
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/example.html
Expand Up @@ -22,7 +22,7 @@
<![endif]-->

<!-- Form Container -->
<div id="formContainer">
<div id="formContainer" class="rhinoforms">
Empty form container
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/index.html
Expand Up @@ -55,7 +55,7 @@ <h2>Other Stuff</h2>
</div>

<!-- Form Container -->
<div id="formContainer">
<div id="formContainer" class="rhinoforms">
Empty form container
</div>

Expand Down

0 comments on commit 25af017

Please sign in to comment.