interface tweaks, smaller logo
This commit is contained in:
parent
51c04420a0
commit
8b184d7582
Binary file not shown.
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 5.7 KiB |
|
@ -14,11 +14,11 @@
|
||||||
id="svg2"
|
id="svg2"
|
||||||
sodipodi:version="0.32"
|
sodipodi:version="0.32"
|
||||||
inkscape:version="0.43"
|
inkscape:version="0.43"
|
||||||
sodipodi:docbase="/home/fox/public_html/testbox/tt-rss-blue/images"
|
sodipodi:docbase="/home/fox/public_html/testbox/tt-rss/images"
|
||||||
sodipodi:docname="ttrss_logo.svg"
|
sodipodi:docname="ttrss_logo.svg"
|
||||||
inkscape:export-filename="/home/fox/public_html/testbox/tt-rss-blue/images/ttrss_logo.png"
|
inkscape:export-filename="/home/fox/public_html/testbox/tt-rss/images/ttrss_logo.png"
|
||||||
inkscape:export-xdpi="140"
|
inkscape:export-xdpi="101.71"
|
||||||
inkscape:export-ydpi="140">
|
inkscape:export-ydpi="101.71">
|
||||||
<defs
|
<defs
|
||||||
id="defs4">
|
id="defs4">
|
||||||
<linearGradient
|
<linearGradient
|
||||||
|
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
@ -94,10 +94,10 @@ window.onload = init;
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
||||||
<td rowspan="2" class="header" valign="middle">
|
<td rowspan="2" class="header" valign="middle">
|
||||||
<img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="logo">
|
<img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">
|
||||||
</td>
|
</td>
|
||||||
<td valign="top" class="notifyBox">
|
<td valign="top" class="notifyBox">
|
||||||
<div id="notify"><span id="notify_body"> </span></div>
|
<div id="notify" class="notify"><span id="notify_body"> </span></div>
|
||||||
</td>
|
</td>
|
||||||
</tr><tr><td class="welcomePrompt">
|
</tr><tr><td class="welcomePrompt">
|
||||||
<? if (!SINGLE_USER_MODE) { ?>
|
<? if (!SINGLE_USER_MODE) { ?>
|
||||||
|
@ -111,7 +111,7 @@ window.onload = init;
|
||||||
<? } else { ?>
|
<? } else { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="small">
|
<td class="small">
|
||||||
<div id="notify"><span id="notify_body"> </span></div>
|
<div id="notify" class="notify_sm"><span id="notify_body"> </span></div>
|
||||||
<div id="userDlgShadow"><div id="userDlg"> </div></div>
|
<div id="userDlgShadow"><div id="userDlg"> </div></div>
|
||||||
</td><td class="welcomePrompt">
|
</td><td class="welcomePrompt">
|
||||||
<? if (!SINGLE_USER_MODE) { ?>
|
<? if (!SINGLE_USER_MODE) { ?>
|
||||||
|
|
30
tt-rss.css
30
tt-rss.css
|
@ -17,7 +17,7 @@ table.main td.headerBox {
|
||||||
|
|
||||||
table.main td.header {
|
table.main td.header {
|
||||||
padding : 10px 10px 10px 10px;
|
padding : 10px 10px 10px 10px;
|
||||||
height : 70px;
|
height : 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.main td.mainToolbar {
|
table.main td.mainToolbar {
|
||||||
|
@ -306,13 +306,31 @@ td.notifyBox {
|
||||||
text-align : right;
|
text-align : right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#notify {
|
.notify_sm {
|
||||||
background : #fff7d5;
|
background : #fff7d5;
|
||||||
border : 1px solid #d7c47a;
|
border : 1px solid #d7c47a;
|
||||||
padding : 3px;
|
padding : 3px;
|
||||||
top : 25px;
|
-moz-border-radius : 3px;
|
||||||
right : 150px;
|
font-size : x-small;
|
||||||
min-width : 300px;
|
font-weight : bold;
|
||||||
|
text-align : left;
|
||||||
|
padding : 3px 20px 3px 20px;
|
||||||
|
text-align : center;
|
||||||
|
float : left;
|
||||||
|
min-width : 20%;
|
||||||
|
position : absolute;
|
||||||
|
left : 2px;
|
||||||
|
top : 2px;
|
||||||
|
display : none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notify {
|
||||||
|
background : #fff7d5;
|
||||||
|
border : 1px solid #d7c47a;
|
||||||
|
padding : 3px;
|
||||||
|
top : 10px;
|
||||||
|
right : 35%;
|
||||||
|
min-width : 30%;
|
||||||
position : absolute;
|
position : absolute;
|
||||||
-moz-border-radius : 3px;
|
-moz-border-radius : 3px;
|
||||||
font-size : x-small;
|
font-size : x-small;
|
||||||
|
@ -685,7 +703,7 @@ td.welcomePrompt {
|
||||||
color : #4684ff;
|
color : #4684ff;
|
||||||
text-align : right;
|
text-align : right;
|
||||||
padding-right : 10px;
|
padding-right : 10px;
|
||||||
|
padding-top : 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.httpWelcomePrompt {
|
td.httpWelcomePrompt {
|
||||||
|
|
|
@ -99,10 +99,10 @@ window.onload = init;
|
||||||
<td colspan="2" class="headerBox" id="mainHeader">
|
<td colspan="2" class="headerBox" id="mainHeader">
|
||||||
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
<table cellspacing="0" cellpadding="0" width="100%"><tr>
|
||||||
<td rowspan="2" class="header" valign="middle">
|
<td rowspan="2" class="header" valign="middle">
|
||||||
<img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="logo">
|
<img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">
|
||||||
</td>
|
</td>
|
||||||
<td valign="top" class="notifyBox">
|
<td valign="top" class="notifyBox">
|
||||||
<div id="notify"><span id="notify_body"> </span></div>
|
<div id="notify" class="notify"><span id="notify_body"> </span></div>
|
||||||
</td>
|
</td>
|
||||||
</tr><tr><td class="welcomePrompt">
|
</tr><tr><td class="welcomePrompt">
|
||||||
<? if (!SINGLE_USER_MODE) { ?>
|
<? if (!SINGLE_USER_MODE) { ?>
|
||||||
|
@ -116,7 +116,7 @@ window.onload = init;
|
||||||
<? } else { ?>
|
<? } else { ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="small" id="mainHeader">
|
<td class="small" id="mainHeader">
|
||||||
<div id="notify"><span id="notify_body"> </span></div>
|
<div id="notify" class="notify_sm"><span id="notify_body"> </span></div>
|
||||||
<div id="userDlgShadow"><div id="userDlg"> </div></div>
|
<div id="userDlgShadow"><div id="userDlg"> </div></div>
|
||||||
</td><td class="welcomePrompt">
|
</td><td class="welcomePrompt">
|
||||||
<? if (!SINGLE_USER_MODE) { ?>
|
<? if (!SINGLE_USER_MODE) { ?>
|
||||||
|
|
Loading…
Reference in New Issue