summaryrefslogtreecommitdiffstats
path: root/frontends/php/styles
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-04 12:55:26 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-06-04 12:55:26 +0000
commit9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0 (patch)
tree928b80f63c70a9b8addd26cf3d099140e5f0febd /frontends/php/styles
parent16bfe6f1840d96fda7902f78a781430aa21d1e7e (diff)
downloadzabbix-9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0.tar.gz
zabbix-9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0.tar.xz
zabbix-9c976c3c04e8a3f9bc9f9dbbdb429d82559f58b0.zip
- added history of last five visited pages (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4229 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/styles')
-rw-r--r--frontends/php/styles/link.css7
-rw-r--r--frontends/php/styles/table.css30
2 files changed, 35 insertions, 2 deletions
diff --git a/frontends/php/styles/link.css b/frontends/php/styles/link.css
index 41fb16db..34734f7b 100644
--- a/frontends/php/styles/link.css
+++ b/frontends/php/styles/link.css
@@ -53,4 +53,9 @@ A {font-family:Verdana, Arial, Helvetica, sans-serif;font-size:8pt;}
A:link {color:black; text-decoration: none; }
A:visited {color:black; text-decoration: none; }
A:hover {color:black; text-decoration: underline; }
-A:active {color:black; text-decoration: underline;} \ No newline at end of file
+A:active {color:black; text-decoration: underline;}
+
+A.history:link { color:#448; text-decoration: none; font-size:10px;}
+A.history:visited { color:#448; text-decoration: none; font-size:10px;}
+A.history:hover { color:#448; text-decoration: underline; font-size:10px;}
+A.history:active { color:#448; text-decoration: underline; font-size:10px;} \ No newline at end of file
diff --git a/frontends/php/styles/table.css b/frontends/php/styles/table.css
index 9ec37531..a74b6875 100644
--- a/frontends/php/styles/table.css
+++ b/frontends/php/styles/table.css
@@ -730,7 +730,7 @@ table.sub_menu
color: #000000;
border: 0px solid #000000;
width: 100%;
- margin-bottom: 15px;
+/* margin-bottom: 1px;*/
}
table.sub_menu tr
@@ -974,3 +974,31 @@ table.setup_wizard div.text
width: 100%;
overflow: hidden;
}
+
+/***************** <HISTORY> *****************/
+table.history{
+ width: 100%;
+ background-color:#DEDEDE;
+}
+
+table.history tr{
+ height: 16px;
+}
+
+table.history td{
+ color:#448;
+ font-family: Verdana, Helvetica, Geneva;
+ font-size:10px;
+ text-align:left;
+}
+
+table.history td.caption{
+ width: 48px;
+ color:#448;
+ font-weight:bold;
+ font-family: Verdana, Helvetica, Geneva;
+ font-size:10px;
+ text-align:left;
+}
+
+/**************** </HISTORY> *****************/ \ No newline at end of file