summaryrefslogtreecommitdiff
path: root/tt-rss.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-12 12:27:53 +0400
committerAndrew Dolgov <[email protected]>2013-05-12 12:27:53 +0400
commitbb660dcab4bfd480e82f6abc5468c818881a61a2 (patch)
tree6717c328b30d9c42bc140df5d0a6b86919fbecd3 /tt-rss.css
parentd34a32a80ef70ac0c75f56158fa75360ddfcbbf8 (diff)
notice style updates
Diffstat (limited to 'tt-rss.css')
-rw-r--r--tt-rss.css15
1 files changed, 13 insertions, 2 deletions
diff --git a/tt-rss.css b/tt-rss.css
index 22970efbd..a2e067a98 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -144,7 +144,7 @@ a:hover {
min-width : 100px;
padding : 5px;
-width : 200px;
- box-shadow : 0px 0px 2px #ccc;
+ box-shadow : 0px 0px 2px rgba(0,0,0,0.2);
}
#notify img {
@@ -264,7 +264,11 @@ div.notice, div.warning, div.error {
display : inline-block;
margin : 2px 0px 4px 0px;
font-size : 12px;
- box-shadow : 0px 0px 2px #ccc;
+ border-style : solid;
+ border-color : #ccc;
+ border-radius : 4px;
+ border-width : 1px;
+ box-shadow : 0px 0px 2px rgba(0,0,0,0.1);
}
div.notice div.inner, div.warning div.inner, div.error div.inner {
@@ -273,14 +277,17 @@ div.notice div.inner, div.warning div.inner, div.error div.inner {
div.notice {
background : #ecf4ff;
+ border-color : #88b0f0;
}
div.warning {
background : #fff7d5;
+ border-color : #EFDC88;
}
div.error {
background : #ffcccc;
+ border-color : #ff0000;
}
div.warning img, div.notice img, div.error img {
@@ -1073,3 +1080,7 @@ div.hl.active {
text-overflow: ellipsis;
}
+body#ttrssPrefs hr {
+ border-color : #ecf4ff;
+ max-width : 100%;
+}