Added a feedback link to the welcome page
Also adjusted the logos. Design by Nigel. HTML/CSS done with Thomas.
@@ -3,10 +3,14 @@
|
||||
<file>html/images/bg_site_header_dark_grey.png</file>
|
||||
<file>html/images/body_bg_circles_bottom_right.png</file>
|
||||
<file>html/images/body_bg_gradient.png</file>
|
||||
<file>html/images/btn_feedback.png</file>
|
||||
<file>html/images/btn_feedback_hover.png</file>
|
||||
<file>html/images/btn_getting_started.png</file>
|
||||
<file>html/images/btn_getting_started_hover.png</file>
|
||||
<file>html/images/btn_restore_session.png</file>
|
||||
<file>html/images/btn_restore_session_hover.png</file>
|
||||
<file>html/images/feedback-bar-background.png</file>
|
||||
<file>html/images/feedback-text.png</file>
|
||||
<file>html/images/list_bullet_arrow.png</file>
|
||||
<file>html/images/mode_Project.png</file>
|
||||
<file>html/images/nokia_logo.png</file>
|
||||
|
||||
BIN
src/plugins/coreplugin/html/images/btn_feedback.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/plugins/coreplugin/html/images/btn_feedback_hover.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/plugins/coreplugin/html/images/feedback-bar-background.png
Normal file
|
After Width: | Height: | Size: 245 B |
BIN
src/plugins/coreplugin/html/images/feedback-text.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -139,8 +139,31 @@ html, body {
|
||||
margin:0;
|
||||
padding:0;
|
||||
width:100%;
|
||||
height:100px;
|
||||
margin-top:-100px;
|
||||
height:55px;
|
||||
margin-top:-86px;
|
||||
}
|
||||
|
||||
.feedback-bar {
|
||||
position:relative;
|
||||
list-style-type:none;
|
||||
margin:0;
|
||||
padding:0;
|
||||
height: 31px;
|
||||
width: 100%;
|
||||
margin-top: 0px;
|
||||
background-image: url(images/feedback-bar-background.png);
|
||||
}
|
||||
|
||||
a.btn_feedback {
|
||||
background-image:url(images/btn_feedback.png);
|
||||
width:102px;
|
||||
height:26px;
|
||||
display:block;
|
||||
float:left;
|
||||
}
|
||||
|
||||
a.btn_feedback:hover {
|
||||
background-image:url(images/btn_feedback_hover.png)
|
||||
}
|
||||
|
||||
.left-logo {
|
||||
@@ -148,13 +171,16 @@ html, body {
|
||||
background:none;
|
||||
margin:0;
|
||||
padding:0;
|
||||
padding-left: 15px;
|
||||
content:url(images/qt_logo.png);
|
||||
}
|
||||
|
||||
.right-logo {
|
||||
float:right;
|
||||
background:none;
|
||||
margin:0;
|
||||
margin: 0;
|
||||
margin-right: 15px;
|
||||
margin-top: 25px;
|
||||
padding:0;
|
||||
content:url(images/nokia_logo.png);
|
||||
}
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
preloadImg01.src = "images/btn_getting_started_hover.png";
|
||||
var preloadImg02 = new Image();
|
||||
preloadImg02.src = "images/btn_restore_session_hover.png";
|
||||
var preloadImg03 = new Image();
|
||||
preloadImg03.src = "images/btn_feedback_hover.png";
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
@@ -73,4 +75,8 @@
|
||||
<li class="right-logo"/>
|
||||
<li class="left-logo"/>
|
||||
</ul>
|
||||
<ul class="feedback-bar">
|
||||
<img src="images/feedback-text.png" alt="Help us make Qt Creator better" style="margin-left: 10px; margin-top: 3px; float: left;"/>
|
||||
<a class="btn_feedback img_link" href="http://www.qtsoftware.com/forms/feedback-forms/qt-creator-user-feedback/view" style="margin-top: 3px; margin-left: 4px;"> </a>
|
||||
</ul>
|
||||
</body>
|
||||
|
||||