Blame view

mobile/source/ext/ckeditor/_source/skins/v2/reset.css 1.49 KB
a1684257   Administrator   first commit
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  /*
  Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
  For licensing, see LICENSE.html or http://ckeditor.com/license
  */
  
  /**
   * Reset and Default Values
   */
  .cke_skin_v2 *,
  .cke_skin_v2 a:hover,
  .cke_skin_v2 a:link,
  .cke_skin_v2 a:visited,
  .cke_skin_v2 a:active
  {
  	margin: 0;
  	padding: 0;
  	border: 0;
  	background: transparent;
  	text-decoration: none;
  	font: normal normal normal 100% Sans-Serif;
  	width: auto;
  	height: auto;
  	border-collapse: collapse;
  	text-align: left;
  	vertical-align: baseline;
  	white-space: nowrap;
  	cursor: auto;
  	color: #000;
  
      font-size: 11px;
      font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
  }
  
  .cke_skin_v2 .cke_rtl *,
  .cke_skin_v2 .cke_rtl a:hover,
  .cke_skin_v2 .cke_rtl a:link,
  .cke_skin_v2 .cke_rtl a:visited,
  .cke_skin_v2 .cke_rtl a:active,
  .cke_rtl .cke_skin_v2 *,
  .cke_rtl .cke_skin_v2 a:hover,
  .cke_rtl .cke_skin_v2 a:link,
  .cke_rtl .cke_skin_v2 a:visited,
  .cke_rtl .cke_skin_v2 a:active
  {
  	text-align: right;
  }
  
  .cke_skin_v2 iframe
  {
  	vertical-align: inherit;	/** For IE */
  }
  
  .cke_skin_v2 textarea
  {
  	white-space: pre;
  }
  
  .cke_skin_v2 .cke_browser_gecko textarea
  {
  	cursor: text;
  }
  
  .cke_skin_v2 .cke_browser_gecko textarea[disabled]
  {
  	cursor: default;
  }
  
  .cke_skin_v2 input[type="text"],
  .cke_skin_v2 input[type="password"]
  {
  	cursor: text;
  }
  
  .cke_skin_v2 input[type="text"][disabled],
  .cke_skin_v2 input[type="password"][disabled]
  {
  	cursor: default;
  }
  
  .cke_skin_v2 fieldset
  {
  	padding: 10px;
  	border: 2px groove #E0DFE3;
  }