1/* Disabling tools that are incompatible with the markdown editor */
2.markdownextra_disabledtools {
3	position: relative;
4	opacity: .5;
5}
6.markdownextra_disabledtools:hover {
7	opacity: 1;
8}
9.markdownextra_disabledtools .markdownextra_disabledtools_overlay {
10	position: absolute;
11	top: 0;
12	right: 0;
13	bottom: 0;
14	left: 0;
15	background: rgba(64,64,64,.6);
16	text-align: center;
17	color: white;
18	cursor: pointer;
19}
20
21/* For CSS3 browsers: allow user to resize the preview: */
22.meltdown_preview { resize: vertical; }
23/* Cosmetic fixes due to editor and preview being reversed: */
24.meltdown_wrap textarea { margin-bottom: 5px !important; }
25