summaryrefslogtreecommitdiff
path: root/public/css
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-01-05 19:30:06 +0100
committerPhilip Häusler <msquare@notrademark.de>2014-01-05 19:30:06 +0100
commit5e8453992810181facf168d6aaede9d2dcd61dba (patch)
treec6aad1564d86ed5789c25b7bab0b36047f0fbaac /public/css
parentd921cf903eedd98fce74114d43f7c98ed8baabdc (diff)
rewritten angeltypes and user angeltypes
Diffstat (limited to 'public/css')
-rw-r--r--public/css/base.css35
1 files changed, 25 insertions, 10 deletions
diff --git a/public/css/base.css b/public/css/base.css
index 2f5aa18c..89fa62a5 100644
--- a/public/css/base.css
+++ b/public/css/base.css
@@ -357,8 +357,13 @@ tr:hover .hidden {
margin: 0 0 10px 0;
}
+.actions a {
+ background: 2px 1px no-repeat;
+ padding-right: 5px;
+}
+
a.button {
- background: #f0f0f0;
+ background: #f0f0f0 2px 2px no-repeat;
border: 1px solid #888;
border-radius: 4px;
line-height: 25px;
@@ -374,26 +379,36 @@ a.button {
.button:hover, .toolbar .button:hover {
color: #000;
- background: #fff;
+ background-color: #fff;
}
-.button.add {
- background: url('../pic/icons/add.png') 2px 2px no-repeat;
+.button.add, .actions .add {
+ background-image: url('../pic/icons/add.png');
padding-left: 20px;
}
-.button.edit {
- background: url('../pic/icons/pencil.png') 2px 2px no-repeat;
+.button.edit, .actions .edit {
+ background-image: url('../pic/icons/pencil.png');
padding-left: 20px;
}
-.button.ok {
- background: url('../pic/icons/tick.png') 2px 2px no-repeat;
+.button.ok, .actions .ok {
+ background-image: url('../pic/icons/tick.png');
+ padding-left: 20px;
+}
+
+.button.cancel, .actions .cancel {
+ background-image: url('../pic/icons/cross.png');
+ padding-left: 20px;
+}
+
+.button.delete, .actions .delete {
+ background-image: url('../pic/icons/bin.png');
padding-left: 20px;
}
-.button.cancel {
- background: url('../pic/icons/cross.png') 2px 2px no-repeat;
+.button.back, .actions .back {
+ background-image: url('../pic/icons/arrow_left.png');
padding-left: 20px;
}