summaryrefslogtreecommitdiff
path: root/tt-rss.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-12 15:27:04 +0300
committerAndrew Dolgov <[email protected]>2010-01-12 15:27:04 +0300
commitad491d75a67574c1b76bfe7b269e6c22511eaede (patch)
treead935d4b43da2e979659059368c9d9372c82970d /tt-rss.css
parentf88c78147edb6449f291f47273b2e78ed528a1ab (diff)
more button styles work
Diffstat (limited to 'tt-rss.css')
-rw-r--r--tt-rss.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/tt-rss.css b/tt-rss.css
index 0172d6c30..300ddcac5 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -2257,3 +2257,38 @@ div#auxDlg {
div#auxDlg a {
color : #4684ff;
}
+
+button, select {
+ background-color : transparent;
+ background-repeat : repeat-x;
+ background-position : top left;
+ background-image : url("images/button.png");
+ border : 1px solid #bebebe;
+/* border-top : 1px solid #f0f0f0;
+ border-left : 1px solid #f0f0f0; */
+ font-family : "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
+ font-size : 100%;
+/* line-height : 120%; */
+ text-decoration : none;
+ font-weight : bold;
+ color : #565656;
+ cursor : pointer;
+ padding : 1px 3px 1px 3px;
+}
+
+select {
+ background : #ffffff;
+ padding : 1px 0px 1px 3px;
+}
+
+button:hover {
+ background-color : #f9faff;
+ border : 1px solid #88b0f0;
+ color : #336699;
+}
+
+button[disabled] {
+ background : #f0f0f0;
+ color : #dedede;
+ border : 1px solid #dedede;
+}