neon: add disabled controls

This commit is contained in:
Andrew Dolgov 2010-01-14 19:35:17 +03:00
parent 4aeee290ce
commit f94ba97593
2 changed files with 36 additions and 6 deletions

View file

@ -49,9 +49,8 @@
print "<div align='center'>"; print "<div align='center'>";
print "<input class=\"button\" print "<button onclick=\"return opmlImportDone()\">".
type=\"submit\" onclick=\"return opmlImportDone()\" __('Close this window')."</button>";
value=\"".__('Close this window')."\">";
print "</div>"; print "</div>";

View file

@ -56,6 +56,11 @@ option {
color : #b077ec; color : #b077ec;
} }
button[disabled], input[disabled], select[disabled], textarea[disabled] {
background : #404040;
color : gray;
}
input, select, button { input, select, button {
background : #3c2c4c; background : #3c2c4c;
border : 1px solid black; border : 1px solid black;
@ -324,7 +329,7 @@ div.notice {
div.tagCloudContainer { div.tagCloudContainer {
border : 1px solid #404040; border : 1px solid #404040;
background : #202020; background : #303030;
} }
div.tagCloudContainer a:hover { div.tagCloudContainer a:hover {
@ -423,12 +428,12 @@ table.prefFilterList td.filterEditCat {
ul.browseFeedList, ul.userFeedList { ul.browseFeedList, ul.userFeedList {
border : 1px solid #404040; border : 1px solid #404040;
background : #202020; background : #303030;
} }
div.prefFeedCatHolder { div.prefFeedCatHolder {
border : 1px solid #404040; border : 1px solid #404040;
background-color : #202020; background-color : #303030;
} }
#debug_output { #debug_output {
@ -534,3 +539,29 @@ table.prefPrefsList tr:hover td.prefValue input {
color : #b077ec; color : #b077ec;
} }
span.groupPrompt {
color : #b077ec;
}
div.labelColorIndicator {
border-color : #202020;
}
div.colorPicker div.colorPickerEntry:hover {
border : 1px solid #b077ec;
}
div.colorPicker div.ccPrompt:hover {
color : #b077ec;
}
div.colorPicker div.colorPickerEntry {
border : 1px solid #202020;
}
div.colorPicker {
border : 1px solid #202020;
background : #404040;
color : gray;
}