Skip to content
Snippets Groups Projects

Editace příspěvků má tichý režim

Merged Kate Konczycki requested to merge silent-submit into master
7 files
+ 18
23
Compare changes
  • Side-by-side
  • Inline

Files

+ 10
15
@@ -298,32 +298,27 @@ h1 {
background: #ccccff;
}
input[type='submit'] {
button, input[type='submit'] {
background-color: white;
color: #1c561d;
border: 1px solid #0c560d;
color: #0000aa;
border: 1px solid blue;
border-radius: 4px;
padding: 0.2ex 0.8ex;
font: inherit;
cursor: pointer;
}
input[type='submit']:hover {
background-color: #dff0d8;
button:hover, input[type='submit']:hover {
background-color: #ccccff;
}
button {
background-color: white;
color: #0000aa;
border: 1px solid blue;
border-radius: 4px;
padding: 0.2ex 0.8ex;
font: inherit;
cursor: pointer;
.write, input[type='submit'].write {
color: #1c561d;
border-color: #0c560d;
}
button:hover {
background-color: #ccccff;
.write:hover, input[type='submit'].write:hover {
background-color: #dff0d8;
}
.danger, input[type='submit'].danger {
Loading