summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2013-09-18 11:21:59 +0300
committerKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2013-09-18 12:24:20 +0300
commitac5ff735de95948a2d523bdbf3f12402a1efc2ba (patch)
treeefae731d462af342c624ca2cdda55d176da9a33c /web
parentceefe41ed10f7895b464bb2a2bc0219913fd8fa2 (diff)
downloadaconf-ac5ff735de95948a2d523bdbf3f12402a1efc2ba.tar.bz2
aconf-ac5ff735de95948a2d523bdbf3f12402a1efc2ba.tar.xz
web client: highlight transaction control buttons
Diffstat (limited to 'web')
-rw-r--r--web/client.css28
1 files changed, 18 insertions, 10 deletions
diff --git a/web/client.css b/web/client.css
index be8cf52..597a13c 100644
--- a/web/client.css
+++ b/web/client.css
@@ -11,6 +11,9 @@ body {
}
#status {
+ border-style: solid;
+ border-width: 3px;
+ border-color: #cde;
background-color: #cde;
height: 2em;
padding: 10px;
@@ -20,14 +23,23 @@ body {
#status p {
position: absolute;
- top: 0;
+ top: 3px;
left: 15px;
}
-#logout, #status div {
+#logout {
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin: 13px;
+}
+
+#status div {
position: absolute;
- top: 0.5em;
- right: 15px;
+ top: 0;
+ right: 0;
+ height: 2em;
+ padding: 13px;
}
#status input {
@@ -35,24 +47,20 @@ body {
}
#status.changed {
- border-style: none none none solid;
- border-width: 3px;
border-color: #7f7;
}
#status.invalid {
- border-style: none none none solid;
- border-width: 3px;
border-color: #f77;
}
.hidden { display: none; }
-.invalid {
+.invalid, #status.invalid div {
background-color: #f77;
}
-.changed {
+.changed, #status.changed div {
background-color: #7f7;
}