aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
diff options
context:
space:
mode:
authorSébastien SAUVAGE <sebsauvage@sebsauvage.net>2013-02-27 17:46:45 +0100
committerSébastien SAUVAGE <sebsauvage@sebsauvage.net>2013-02-27 17:46:45 +0100
commitb2877611c329725a961b24fa18114f2fd41873b6 (patch)
tree4a8211ca103d867ded5c84e119f6e957ba2a9d2f /inc
parent9e975d86e4d1b915b2bc87251a13f3467508ac9a (diff)
downloadShaarli-b2877611c329725a961b24fa18114f2fd41873b6.tar.gz
Shaarli-b2877611c329725a961b24fa18114f2fd41873b6.tar.zst
Shaarli-b2877611c329725a961b24fa18114f2fd41873b6.zip
Edit/delete button on the left-side of links.
https://github.com/sebsauvage/Shaarli/issues/5
Diffstat (limited to 'inc')
-rw-r--r--inc/shaarli.css23
1 files changed, 20 insertions, 3 deletions
diff --git a/inc/shaarli.css b/inc/shaarli.css
index b4d0414c..695c2a8d 100644
--- a/inc/shaarli.css
+++ b/inc/shaarli.css
@@ -67,10 +67,26 @@ h1 { font-size:20pt; font-weight:bold; font-style:italic; margin-bottom:20px; }
67 67
68 } 68 }
69 69
70/* Edit/Delete buttons on links */ 70/* Small tab on the left of each link with edit/delete buttons. */
71.button_edit, .button_delete { border-radius:0; box-shadow:none; border-style:none; border-width:0; padding:0; background:none; } 71.button_edit, .button_delete { border-radius:0; box-shadow:none; border-style:none; border-width:0; padding:0; background:none; }
72.button_edit { margin-left:10px; } 72.linkeditbuttons {
73 73 position:absolute;
74 left:-1px;
75 padding:4px 2px 2px 2px;
76 background-color:#f0f0f0;
77
78 -webkit-border-radius:0px 6px 6px 0px;
79 -moz-border-radius:0px 6px 6px 0px;
80 -o-border-radius:0px 6px 6px 0px;
81 -ms-border-radius:0px 6px 6px 0px;
82 border-radius:0px 6px 6px 0px;
83
84 -webkit-box-shadow:0px 0px 3px 0px #333333;
85 -moz-box-shadow:0px 0px 3px 0px #333333;
86 -o-box-shadow:0px 0px 3px 0px #333333;
87 -ms-box-shadow:0px 0px 3px 0px #333333;
88 box-shadow:0px 0px 3px 0px #333333;
89}
74 90
75#pageheader #logo{ 91#pageheader #logo{
76background-image: url('../images/logo.png'); 92background-image: url('../images/logo.png');
@@ -211,6 +227,7 @@ cursor:pointer;
211} 227}
212*/ 228*/
213#linklist li.private { background: url('../images/private.png') no-repeat 10px center; padding-left:60px; } 229#linklist li.private { background: url('../images/private.png') no-repeat 10px center; padding-left:60px; }
230#linklist li { padding-left:26px; }
214.private .linktitle a {color:#969696;} 231.private .linktitle a {color:#969696;}
215.linktitle { font-size:14pt; font-weight:bold; } 232.linktitle { font-size:14pt; font-weight:bold; }
216.linktitle a { text-decoration: none; color:#80AD48; } 233.linktitle a { text-decoration: none; color:#80AD48; }