링크에 색상을 넣을 경우 border-bottom이 아닌 기본 text-decoration:underline을 쓰도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2228 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-07 03:48:23 +00:00
parent 0c586cf87a
commit 3523cc0795

View file

@ -51,10 +51,14 @@ form { margin:0; padding:0; }
/* editor style */
a.bold { font-weight:bold; }
.editor_blue_text { color: #145ff9; text-decoration:none; border-bottom:2px solid #4a7fec; }
.editor_red_text { color: #f42126; text-decoration:none; border-bottom:2px solid #e54347; }
.editor_yellow_text { color: #c9bd00; text-decoration:none; border-bottom:2px solid #ece460; }
.editor_green_text { color: #08830B; text-decoration:none; border-bottom:2px solid #08830B; }
.editor_blue_text { color: #145ff9; text-decoration:underline; }
.editor_blue_text a { color: #145ff9; text-decoration:underline; }
.editor_red_text { color: #f42126; text-decoration:underline; }
.editor_red_text a { color: #f42126; text-decoration:underline; }
.editor_yellow_text { color: #c9bd00; text-decoration:underline; }
.editor_yellow_text a { color: #c9bd00; text-decoration:underline; }
.editor_green_text { color: #08830B; text-decoration:underline; }
.editor_green_text a { color: #08830B; text-decoration:underline; }
.folder_opener { display: block; }
.folder_closer { display: none; }