Distinguish preview/save better in entry editor.

This commit is contained in:
Matthias Mees 2013-10-04 23:16:41 +02:00
parent b936b00df7
commit f88617ab05

View File

@ -671,6 +671,29 @@ input[type="submit"].state_cancel:active {
border-color: #582322 #893634 #b94a48;color: #fafafa;
}
input[type="submit"].entry_preview {
background: #ddd;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fff), color-stop(100%, #ddd));
background-image: -webkit-linear-gradient(#fff, #ddd);
background-image: -moz-linear-gradient(#fff, #ddd);
background-image: -o-linear-gradient(#fff, #ddd);
background-image: linear-gradient(#fff, #ddd);
border-color: #ddd #bbb #999;
color: #222;
text-shadow: #fff 0 1px 1px;
}
input[type="submit"].entry_preview:hover,
input[type="submit"].entry_preview:focus {
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fff), color-stop(1px, #eee), color-stop(100%, #ccc));
background-image: -webkit-linear-gradient(#fff, #eee 1px, #ccc);
background-image: -moz-linear-gradient(#fff, #eee 1px, #ccc);
background-image: -o-linear-gradient(#fff, #eee 1px, #ccc);
background-image: linear-gradient(#fff, #eee 1px, #ccc);
color: #222;
text-shadow: #fff 0 1px 1px;
}
a.button_link.state_submit,
a.button_link.state_submit:visited,
a.button_link.state_submit:hover,
@ -2533,6 +2556,10 @@ img.mfp-img {
margin: 1.71429em 0;
}
#edit_entry_submit .form_buttons {
text-align: right;
}
#main_menu li > ul > li {
width: 33%;
}