Update of /cvsroot/php-blog/serendipity/templates/default/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13314/templates/default/admin
Modified Files:
style.css
Log Message:
- serendipityPrettyButton on a <input> and <a> now looks *exactly* the same
( Soon to replace the .button class )
Index: style.css
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/admin/style.css,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- style.css 24 Jan 2005 10:47:48 -0000 1.25
+++ style.css 1 Feb 2005 21:05:18 -0000 1.26
@@ -163,30 +163,6 @@
margin: auto;
}
-a.button {
- background-color: #F8F9FA;
- border: 1px solid #294366;
- color: #000000;
- font-family: verdana;
- font-size: 0.9em;
- padding-left: 0.3em;
- padding-right: 0.3em;
- padding-top: 0.1em;
- padding-bottom: 0.1em;
- text-decoration: none;
-}
-
-a.button_disabled {
- background-color: #F8F9FA;
- border: 1px solid #294366;
- color: #CCCCCC;
- font-family: verdana;
- font-size: 0.9em;
- padding-left: 0.3em;
- padding-right: 0.3em;
- text-decoration: none;
-}
-
ul.serendipitySideBarMenu {
padding: 0px;
margin: 0px;
@@ -251,15 +227,33 @@
border: 0;
}
+
+a:link.serendipityPrettyButton,
+a:visited.serendipityPrettyButton,
+a:hover.serendipityPrettyButton {
+ text-decoration: none;
+ color: #1D2E3F;
+}
+
.serendipityPrettyButton {
padding: 1px;
background: url({TEMPLATE_PATH}img/button_background.png) repeat-x top;
color: #1D2E3F;
font-weight: bold;
+ font-size: 0.9em;
border: 1px outset #000000;
margin: 2px;
}
+/* Special class if the button is a <a> tag */
+a.serendipityPrettyButton {
+ padding: 2px;
+ padding-left: 4px;
+ padding-right: 4px;
+ cursor: default;
+}
+
+
.direction_ltr {
direction: ltr;
}
|