}
/* spacing ********************************************************************/
+input[type="button"] {
+ padding: 0px;
+}
+
.title {
padding: 5px 20px;
}
background-color: #fafafa;
}
+p {
+ text-indent: 1em;
+}
+
.title {
background-color: #fafafa;
}
input[type="button"] {
- background-color: #eeeeee;
+ background-color: #f5f5f5;
+ color: #000055;
- border-color: #fafafa #dddddd #dddddd #fafafa;
+ border-color: #dddddd;
border-width: 2px;
border-style: solid;
+
+ border-radius: 10px;
+ -moz-border-radius: 10px;
}
input[type="button"]:active {
- background-color: white;
- border-color: #dddddd #fafafa #fafafa #dddddd;
+ background-color: #999999;
}
.header, .footer, .sideBar {
color: #666666;
}
+.sideBar p {
+ text-indent: 0;
+}
+
.sideBar .recentUpdates p,
.sideBar .trackbacks p {
font-size: 90%;
.sideBar li {
padding: 3px 5px;
background-color: #f5f5f5;
+
+ border-radius: 10px;
+ -moz-border-radius: 10px;
}
.sideBar .recentUpdates li, .sideBar .trackbacks li {
}
.redirection input[type="button"] {
- background-color: inherit;
+ color: inherit;
+ background-color: #fcfcfc;
- color: #008800;
-
- border-width: 0;
+ border-width: 1px;
+
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+
+ margin-left: 0.8em;
}
-.redirection input[type="button"]:hover {
- color: #880000;
+.redirection input[type="button"]:active {
+ background-color: #eeeeee;
}
</textData>
</page>
var editButton
= $.INPUT({className: "editButton",
type: "button",
- value: from,
- title: "Edit the page"});
+ value: "Edit the page"});
$(editButton).click(function () {
Rakka.editPage(from);
});
var box
= $.P({className: "redirection"},
- "This page is redirected from", editButton);
+ "This page has been redirected from “" + from + "”.", editButton);
$("div.title").after(box);
}