Skip to content

Commit

Permalink
Add placeholder styles
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Dec 16, 2014
1 parent 3e40d08 commit db1e61c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/html/ReqMgr/style/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ input[type=text], textarea {
margin: 5px 1px 3px 0px;
border: 1px solid #DDDDDD;
}

input[type=text]:focus, textarea:focus {
box-shadow: 0 0 5px #333333;
border: 1px solid #808080;
Expand Down Expand Up @@ -88,5 +88,21 @@ input[type=text]:focus, textarea:focus {
border-color: #000;
cursor: pointer;
}
::-webkit-input-placeholder {
color: red;
font-weight: bold;
}
:-moz-placeholder { /* Firefox 18- */
color: red;
font-weight: bold;
}
::-moz-placeholder { /* Firefox 19+ */
color: red;
font-weight: bold;
}
:-ms-input-placeholder {
color: red;
font-weight: bold;
}
tr:nth-child(even){ background:#F4F4F4; }
th { background: #B3B3B3; color: white; font-weight: bold; }

0 comments on commit db1e61c

Please sign in to comment.