annotate demo/more/out/dragList.css @ 2142:3288e3c9948b

Fix XML indentation in Emacs mode The return value of MATCH-STRING is a string. At least on Emacs 25, the comparisons between string and character with EQUAL could never succeed, and so the cases for matching braces were never triggered. GET-TEXT-PROPERTY may return a list rather than an atom (for example, on long lines with whitespace-mode turned on), and this broke the heuristic of looking for the tag face in previous text.
author Julian Squires <julian@cipht.net>
date Mon, 04 May 2015 14:35:07 -0400
parents cc956020801b
children
rev   line source
adamc@917 1 ul {
adamc@917 2 width: 200px;
adamc@917 3 list-style-image: url(http://script.aculo.us/images/bullet.gif);
adamc@917 4 }
adamc@917 5
adamc@917 6 li {
adamc@917 7 color: #7E9E50;
adamc@917 8 font: 20px Georgia;
adamc@917 9 background-color: #ECF3E1;
adamc@919 10 border: 1px solid #C5DEA1;
adamc@917 11 cursor: move;
adamc@917 12 margin: 0px;
adamc@917 13 }
adamc@917 14
adamc@917 15 h2 {
adamc@917 16 font: 42px/30px Georgia, serif;
adamc@917 17 color: #7E9E50;
adamc@917 18 }