mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Changing colors all over the place. Adding esc keyboard shortcut to return to dashboard.
This commit is contained in:
parent
12ec0d1f05
commit
e453ec5c17
3 changed files with 22 additions and 38 deletions
|
@ -84,21 +84,13 @@
|
|||
.NB-module h5 {
|
||||
margin: 0;
|
||||
padding: 8px 12px 6px;
|
||||
background-color: #D1E1FA;
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.16, #C5D7FB),
|
||||
color-stop(0.84, #D8E1FF)
|
||||
);
|
||||
background-image: -moz-linear-gradient(
|
||||
center bottom,
|
||||
#C5D7FB 16%,
|
||||
#D8E1FF 84%
|
||||
);
|
||||
|
||||
text-shadow: 1px 1px 0 #E9E9E9;
|
||||
background-color: #E3ECF8;
|
||||
background-image: -moz-linear-gradient(top, #E3ECF8, #CBDBF5); /* FF3.6 */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#E3ECF8), to(#CBDBF5)); /* Saf4+, Chrome */
|
||||
background-image: linear-gradient(top, #E3ECF8, #CBDBF5);
|
||||
|
||||
text-shadow: 0 1px 0 #F2F6FE;
|
||||
border-top: 1px solid #D1DAF7;
|
||||
border-bottom: 1px solid #A1A9CF;
|
||||
color:#505050;
|
||||
|
|
|
@ -8346,8 +8346,8 @@ form.opml_import_form input {
|
|||
.NB-interaction {
|
||||
list-style: none;
|
||||
position: relative;
|
||||
margin: 0 8px 0 8px;
|
||||
padding: 6px 4px 6px 28px;
|
||||
margin: 0 0 0 0;
|
||||
padding: 6px 12px 6px 40px;
|
||||
border-top: 1px solid transparent;
|
||||
border-left: 1px solid transparent;
|
||||
border-right: 1px solid transparent;
|
||||
|
@ -8360,32 +8360,17 @@ form.opml_import_form input {
|
|||
background-color: #FFFFF6;
|
||||
border-bottom: 1px solid #F0F0E6;
|
||||
}
|
||||
.NB-interaction:first-child {
|
||||
-webkit-border-top-left-radius: 6px;
|
||||
-webkit-border-top-right-radius: 6px;
|
||||
-moz-border-radius-topleft: 6px;
|
||||
-moz-border-radius-topright: 6px;
|
||||
border-top-left-radius: 6px;
|
||||
border-top-right-radius: 6px;
|
||||
}
|
||||
.NB-interaction:last-child {
|
||||
border-bottom: 1px solid transparent;
|
||||
margin-bottom: 0;
|
||||
-webkit-border-bottom-left-radius: 6px;
|
||||
-webkit-border-bottom-right-radius: 6px;
|
||||
-moz-border-radius-bottomleft: 6px;
|
||||
-moz-border-radius-bottomright: 6px;
|
||||
border-bottom-left-radius: 6px;
|
||||
border-bottom-right-radius: 6px;
|
||||
}
|
||||
.NB-interaction:hover {
|
||||
background-color: #FFFFF6;
|
||||
border-bottom: 1px solid #F0F0E6;
|
||||
background-color: #d2e6fd;
|
||||
background-image: -moz-linear-gradient(top, #d2e6fd, #b0d1f9); /* FF3.6 */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#d2e6fd), to(#b0d1f9)); /* Saf4+, Chrome */
|
||||
background-image: linear-gradient(top, #d2e6fd, #b0d1f9);
|
||||
border: 1px solid #9EBAE2;
|
||||
background-color: #EFF4FE;
|
||||
background-image: -moz-linear-gradient(top, #EFF4FE, #D3E2FE); /* FF3.6 */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#EFF4FE), to(#D3E2FE)); /* Saf4+, Chrome */
|
||||
background-image: linear-gradient(top, #EFF4FE, #D3E2FE);
|
||||
border: 1px solid #C3CFE2;
|
||||
border-bottom: 1px solid #B9C5DC;
|
||||
}
|
||||
.NB-interaction:active {
|
||||
background-color: #FBE5C7;
|
||||
|
@ -8405,7 +8390,7 @@ form.opml_import_form input {
|
|||
width: 16px;
|
||||
height: 16px;
|
||||
border-radius: 3px;
|
||||
left: 4px;
|
||||
left: 12px;
|
||||
top: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -8416,6 +8401,9 @@ form.opml_import_form input {
|
|||
text-transform: uppercase;
|
||||
padding: 5px 0 3px 4px;
|
||||
}
|
||||
.NB-interaction:hover .NB-interaction-date {
|
||||
color: #808080;
|
||||
}
|
||||
.NB-interaction-title {
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
|
|
|
@ -5145,6 +5145,10 @@
|
|||
e.preventDefault();
|
||||
self.show_splash_page();
|
||||
});
|
||||
$document.bind('keydown', 'esc', function(e) {
|
||||
e.preventDefault();
|
||||
self.show_splash_page();
|
||||
});
|
||||
$document.bind('keypress', 't', function(e) {
|
||||
e.preventDefault();
|
||||
self.open_story_trainer();
|
||||
|
|
Loading…
Add table
Reference in a new issue