-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNeatEditor.Paragraph.css
56 lines (43 loc) · 1.56 KB
/
NeatEditor.Paragraph.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.NarmandNeatEditor .Toolbar .MakeStrong {
background: url(Images/Paragraph.MakeStrong.png) no-repeat center center;
}
.NarmandNeatEditor .Toolbar .Emphasize {
background: url(Images/Paragraph.Emphasize.png) no-repeat center center;
}
.NarmandNeatEditor .Toolbar .Strikethrough {
background: url(Images/Paragraph.Strikethrough.png) no-repeat center center;
}
.NarmandNeatEditor .Toolbar .ClearFormatting {
background: url(Images/Paragraph.ClearFormatting.png) no-repeat center center;
}
.NarmandNeatEditor .Toolbar .ChanegeDirectionToLeftToRight {
background: url(Images/Paragraph.ChanegeDirectionToLeftToRight.png) no-repeat center center;
}
.NarmandNeatEditor .Toolbar .ChanegeDirectionToRightToLeft {
background: url(Images/Paragraph.ChanegeDirectionToRightToLeft.png) no-repeat center center;
}
.NarmandNeatEditor .Toolbar .CreateLink {
background: url(Images/Paragraph.CreateLink.png) no-repeat center center;
}
.NarmandNeatEditor .Sections .Paragraph div.Tag {
color:#fff;
background-color:#5b447a;
}
.NarmandNeatEditor .Sections .Paragraph .Content {
min-height:15px;
}
.NarmandNeatEditorRightToLeft .Sections .Paragraph .Content {
direction:rtl;
}
.NarmandNeatEditor .Sections .Paragraph .Content strong{
font-weight:bold;
}
.NarmandNeatEditor .Sections .Paragraph .Content em{
font-style:oblique;
}
.NarmandNeatEditor .Sections .Paragraph .Content del{
text-decoration:line-through;
}
.NarmandNeatEditor .Sections .Paragraph .Content a, .NarmandNeatEditor .Sections .Paragraph .Content a:hover{
color:#158cca;
}