2793e651 by mpenner

Add the first option to the list of hidden elements for the "Enable Media Replac…

…e" plugin. refs #1552
1 parent 59e0fd80
......@@ -812,6 +812,9 @@ a.remove-option-group, a.remove-option {
.diff-reject { background-color: #ed1f24; }
td.diff-left:hover, td.diff-right:hover { cursor: pointer; }
/* Hide the second option for the "Enable Media Replace" plugin ("Replace the file,
use new file name and update all links"), since it mostly just breaks links */
label[for="replace_type_2"], label[for="replace_type_2"] ~ p.howto { display: none; }
\ No newline at end of file
/* Hide both options for the "Enable Media Replace" plugin, since the second option mostly
just breaks hard-coded links to files */
label[for="replace_type_1"],
label[for="replace_type_2"], label[for="replace_type_2"] ~ p.howto {
display: none;
}
......