aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/css/shaarli.css
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-06 16:08:19 +0100
committerArthurHoaro <arthur@hoa.ro>2017-01-07 11:15:30 +0100
commit066333c03ca6f484b8e1505e7626d2d01f252bf5 (patch)
tree00ba1beb914ab8fffc8a2e0b8dfcd5f6029e2ae5 /tpl/default/css/shaarli.css
parent7418f7cb60524c3bfc2f240386b5e3e7eb9b3257 (diff)
downloadShaarli-066333c03ca6f484b8e1505e7626d2d01f252bf5.tar.gz
Shaarli-066333c03ca6f484b8e1505e7626d2d01f252bf5.tar.zst
Shaarli-066333c03ca6f484b8e1505e7626d2d01f252bf5.zip
Fix delete button in editlink
This one was forgotten in #682
Diffstat (limited to 'tpl/default/css/shaarli.css')
-rw-r--r--tpl/default/css/shaarli.css12
1 files changed, 9 insertions, 3 deletions
diff --git a/tpl/default/css/shaarli.css b/tpl/default/css/shaarli.css
index 10709b6a..6d73af3e 100644
--- a/tpl/default/css/shaarli.css
+++ b/tpl/default/css/shaarli.css
@@ -42,7 +42,7 @@ strong {
42} 42}
43 43
44/* Buttons */ 44/* Buttons */
45.bigbutton { 45.bigbutton, #pageheader a.bigbutton {
46 background-color: #c0c0c0; 46 background-color: #c0c0c0;
47 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent; 47 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
48 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff)); 48 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
@@ -54,11 +54,17 @@ strong {
54 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); 54 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
55 cursor: pointer; 55 cursor: pointer;
56 height: 24px; 56 height: 24px;
57 margin-left: 5px;
58 padding: 0 5px; 57 padding: 0 5px;
58 margin: 5px 5px 0 0;
59 color: #606060; 59 color: #606060;
60 border-style: outset; 60 border-style: outset;
61 border-width: 1px; 61 border-width: 1px;
62 display: inline-block;
63}
64
65a.bigbutton, #pageheader a.bigbutton {
66 height: 22px;
67 line-height: 22px;
62} 68}
63 69
64.smallbutton { 70.smallbutton {
@@ -1009,7 +1015,7 @@ div.dailyNoEntry {
1009 display: inline !important; 1015 display: inline !important;
1010 } 1016 }
1011 1017
1012 .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton { 1018 .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton, a.bigbutton {
1013 width: 30%; 1019 width: 30%;
1014 font-size: smaller; 1020 font-size: smaller;
1015 } 1021 }